aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-12-11 09:16:23 +0000
committerRichard M. Stallman <[email protected]>1994-12-11 09:16:23 +0000
commit07f9b3e6a59d108927e50180ce48f8562fa0abe4 (patch)
treee36bfcaa212407164647335864996c01354813b3
parent6639708c3dc9af310053ef9f587b963de9ec30dc (diff)
(rmail-summary-goto-msg): When highlighting,
don't skip 1st char on line if it isn't a space.
-rw-r--r--lisp/mail/rmailsum.el4
1 files changed, 3 insertions, 1 deletions
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)