[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: address@hidden: lisp/mail/supercite.el: sc-select-attribution logic
From: |
Glenn Morris |
Subject: |
Re: address@hidden: lisp/mail/supercite.el: sc-select-attribution logic is broken (patch included)] |
Date: |
Thu, 26 May 2005 18:32:35 +0100 |
User-agent: |
Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) |
Actually, the following patch is better than the first one I sent.
*** supercite.el 14 May 2005 11:27:40 -0000 1.44
--- supercite.el 26 May 2005 17:29:26 -0000
***************
*** 1182,1189 ****
(setq attribution attrib
attriblist nil))
((listp attrib)
! (setq attribution (eval attrib)
! attriblist nil))
(t (error "%s did not evaluate to a string or list!"
"sc-attrib-selection-list"))
)))
--- 1182,1192 ----
(setq attribution attrib
attriblist nil))
((listp attrib)
! (setq attribution (eval attrib))
! (if (stringp attribution)
! (setq attriblist nil)
! (setq attribution nil
! attriblist (cdr attriblist))))
(t (error "%s did not evaluate to a string or list!"
"sc-attrib-selection-list"))
)))