# HG changeset patch # User Richard M. Stallman # Date 771945993 0 # Node ID a03d7bdee306b04fa02f801fb243174c9d91db8c # Parent 621c28be27a093432180e7ff54188f17749533d6 (rmail-highlight-headers): Don't skip newlines, just tab and space. diff -r 621c28be27a0 -r a03d7bdee306 lisp/mail/rmail.el --- a/lisp/mail/rmail.el Sat Jun 18 13:23:57 1994 +0000 +++ b/lisp/mail/rmail.el Sat Jun 18 13:26:33 1994 +0000 @@ -1419,7 +1419,7 @@ (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)