From 07f9b3e6a59d108927e50180ce48f8562fa0abe4 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 11 Dec 1994 09:16:23 +0000 Subject: [PATCH] (rmail-summary-goto-msg): When highlighting, don't skip 1st char on line if it isn't a space. --- lisp/mail/rmailsum.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index e2c684d85b..784d08c34b 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -849,7 +849,9 @@ Commands for sorting the summary: (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) -- 2.39.2