comparison lisp/gnus/message.el @ 66808:a93385a3e7a2

Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-646 Merge from gnus--rel--5.10 Patches applied: * gnus--rel--5.10 (patch 152-156) - Update from CVS: lisp/mml.el (mml-preview): Doc fix. - Update from CVS 2005-11-09 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/message.el (message-generate-headers): Downcase the argument given to message-check-element. 2005-11-01 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/gnus.el (gnus-parameters-case-fold-search): New variable. (gnus-parameters-get-parameter): Use it. * lisp/gnus/gnus-score.el (gnus-home-score-file): Doc fix. 2005-11-01 Xavier Maillard <zedek@gnu-rox.org> (tiny change) * lisp/gnus/gnus-score.el (gnus-update-score-entry-dates): Doc fix. 2005-10-31 Katsumi Yamaoka <yamaoka@jpl.org> * lisp/gnus/mml.el (mml-preview): Doc fix. 2005-11-10 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (XVarious): Fix description of gnus-use-toolbar; add new variable gnus-toolbar-thickness. 2005-11-08 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (XVarious): Revert description of gnus-use-toolbar. 2005-11-07 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (X-Face): Fix description. (XVarious): Remove gnus-xmas-logo-color-alist and gnus-xmas-logo-color-style; fix description of gnus-use-toolbar. 2005-11-01 Katsumi Yamaoka <yamaoka@jpl.org> * man/gnus.texi (Group Parameters): Mention new varable gnus-parameters-case-fold-search. (Home Score File): Addition.
author Miles Bader <miles@gnu.org>
date Fri, 11 Nov 2005 05:14:27 +0000
parents e65b759c6906
children 477d7ac04b7b
comparison
equal deleted inserted replaced
66807:2fc24a2b40a5 66808:a93385a3e7a2
5075 ((and (boundp header) 5075 ((and (boundp header)
5076 (symbol-value header)) 5076 (symbol-value header))
5077 ;; The element is a symbol. We insert the value 5077 ;; The element is a symbol. We insert the value
5078 ;; of this symbol, if any. 5078 ;; of this symbol, if any.
5079 (symbol-value header)) 5079 (symbol-value header))
5080 ((not (message-check-element header)) 5080 ((not (message-check-element
5081 (intern (downcase (symbol-name header)))))
5081 ;; We couldn't generate a value for this header, 5082 ;; We couldn't generate a value for this header,
5082 ;; so we just ask the user. 5083 ;; so we just ask the user.
5083 (read-from-minibuffer 5084 (read-from-minibuffer
5084 (format "Empty header for %s; enter value: " header))))) 5085 (format "Empty header for %s; enter value: " header)))))
5085 ;; Finally insert the header. 5086 ;; Finally insert the header.