# HG changeset patch # User Richard M. Stallman # Date 787137383 0 # Node ID 7151108ed6a0ba653753e78391e2ff2676200f18 # Parent afe81fd385ebeddc25c6bb533c3f85cab2f24954 (rmail-summary-goto-msg): When highlighting, don't skip 1st char on line if it isn't a space. diff -r afe81fd385eb -r 7151108ed6a0 lisp/mail/rmailsum.el --- a/lisp/mail/rmailsum.el Sun Dec 11 08:26:27 1994 +0000 +++ b/lisp/mail/rmailsum.el Sun Dec 11 09:16:23 1994 +0000 @@ -849,7 +849,9 @@ (if message-not-found (overlay-put rmail-summary-overlay 'face nil) (move-overlay rmail-summary-overlay - (save-excursion (beginning-of-line) (1+ (point))) + (save-excursion (beginning-of-line) + (skip-chars-forward " ") + (point)) (save-excursion (end-of-line) (point))) (overlay-put rmail-summary-overlay 'face 'highlight)) (beginning-of-line)