From 92e068832cd8a3384b7c4b193bcc06618f1140e7 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 18 Jun 1994 13:26:33 +0000 Subject: [PATCH] (rmail-highlight-headers): Don't skip newlines, just tab and space. --- lisp/mail/rmail.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 5b100dadeb8..df4e7d36a24 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -1419,7 +1419,7 @@ If summary buffer is currently displayed, update current message there also." (overlays rmail-overlay-list)) (goto-char (point-min)) (while (re-search-forward rmail-highlighted-headers nil t) - (skip-syntax-forward " ") + (skip-chars-forward " \t") (let ((beg (point)) overlay) (while (progn (forward-line 1) -- 2.39.5