comparison lisp/mail/supercite.el @ 102175:47faa6398829

Use /= in previous change.
author Glenn Morris <rgm@gnu.org>
date Sat, 21 Feb 2009 19:32:05 +0000
parents 3da2fdefd254
children 316f8efbaeae
comparison
equal deleted inserted replaced
102174:9c1773a3c7a6 102175:47faa6398829
719 ;; line can be included. 719 ;; line can be included.
720 (defun sc-mail-check-from () 720 (defun sc-mail-check-from ()
721 "Deal with a \"From \" line in the header. 721 "Deal with a \"From \" line in the header.
722 Such a line should only occur at the very start of the headers." 722 Such a line should only occur at the very start of the headers."
723 (and sc-mail-warn-if-non-rfc822-p 723 (and sc-mail-warn-if-non-rfc822-p
724 (not (= (point) sc-mail-headers-start)) 724 (/= (point) sc-mail-headers-start)
725 (sc-mail-error-in-mail-field))) 725 (sc-mail-error-in-mail-field)))
726 726
727 (defun sc-mail-fetch-field (&optional attribs-p) 727 (defun sc-mail-fetch-field (&optional attribs-p)
728 "Insert a key and value into `sc-mail-info' alist. 728 "Insert a key and value into `sc-mail-info' alist.
729 If optional ATTRIBS-P is non-nil, the key/value pair is placed in 729 If optional ATTRIBS-P is non-nil, the key/value pair is placed in