projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
37526b4
)
(rmail-message-regexp-p): Don't match before
author
Gerd Moellmann
<gerd@gnu.org>
Fri, 27 Apr 2001 13:00:42 +0000
(13:00 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Fri, 27 Apr 2001 13:00:42 +0000
(13:00 +0000)
headers.
lisp/mail/rmail.el
patch
|
blob
|
history
diff --git
a/lisp/mail/rmail.el
b/lisp/mail/rmail.el
index 8ff2800cda602d5be430cd6777b9a40f83316967..5d5a1c494f280636bcf8479ef183b58e38284642 100644
(file)
--- a/
lisp/mail/rmail.el
+++ b/
lisp/mail/rmail.el
@@
-2509,11
+2509,12
@@
or forward if N is negative."
;; header, we didn't yet get past the EOOH line.
(if (looking-at "^\\*\\*\\* EOOH \\*\\*\\*\n")
(forward-line 1))
+ (setq beg (point))
(narrow-to-region (point) end))
(rfc822-goto-eoh)
+ (setq beg (point))
(search-forward "\n*** EOOH ***\n" end t))
- (narrow-to-region beg (point))
- (goto-char (point-min))
+ (goto-char beg)
(re-search-forward regexp end t)))))
(defvar rmail-search-last-regexp nil)