+2004-02-04 Jesper Harder <harder@ifa.au.dk>
+
+ * message.el (message-fetch-field): Remove redundant
+ case-fold-search binding.
+ (message-narrow-to-field): Simplify.
+
2004-02-03 Reiner Steib <Reiner.Steib@gmx.de>
* spam.el (spam-directory): Derive from `gnus-directory'.
The buffer is expected to be narrowed to just the header of the message;
see `message-narrow-to-headers-or-head'."
(let* ((inhibit-point-motion-hooks t)
- (case-fold-search t)
(value (mail-fetch-field header nil (not not-all))))
(when value
(while (string-match "\n[\t ]+" value)
(progn
(forward-line 1)
(if (re-search-forward "^[^ \n\t]" nil t)
- (progn
- (beginning-of-line)
- (point))
+ (point-at-bol)
(point-max))))
(goto-char (point-min)))