summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-05-31 17:04:52 +0000
committerRichard M. Stallman <rms@gnu.org>1993-05-31 17:04:52 +0000
commite90b6d9296d32c9647268134088c0b913f8886ee (patch)
tree0940b691a97a8303d8fa9d7cf51cf80a748097a2
parentcf2d699cf70d3eaf396cb6029e90e2bcb26a7222 (diff)
downloademacs-e90b6d9296d32c9647268134088c0b913f8886ee.tar.gz
emacs-e90b6d9296d32c9647268134088c0b913f8886ee.tar.bz2
emacs-e90b6d9296d32c9647268134088c0b913f8886ee.zip
(rmail-message-subject-p): Fix typo in string constant.
-rw-r--r--lisp/mail/rmailsum.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el
index 7159af4e252..2ee96247aa0 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -105,7 +105,7 @@ SUBJECT is a string of regexps separated by commas."
(search-forward "\n*** EOOH ***\n")
(narrow-to-region
(point)
- (progn (search-forward (if whole-message "" "\n\n")) (point)))
+ (progn (search-forward (if whole-message "\^_" "\n\n")) (point)))
(goto-char (point-min))
(if whole-message (re-search-forward subject nil t)
(string-match subject (or (mail-fetch-field "Subject") "")) )))