aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-12-11 09:16:23 +0000
committerRichard M. Stallman1994-12-11 09:16:23 +0000
commit07f9b3e6a59d108927e50180ce48f8562fa0abe4 (patch)
treee36bfcaa212407164647335864996c01354813b3
parent6639708c3dc9af310053ef9f587b963de9ec30dc (diff)
downloademacs-07f9b3e6a59d108927e50180ce48f8562fa0abe4.tar.gz
emacs-07f9b3e6a59d108927e50180ce48f8562fa0abe4.zip
(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 e2c684d85bd..784d08c34b2 100644
--- a/lisp/mail/rmailsum.el
+++ b/lisp/mail/rmailsum.el
@@ -849,7 +849,9 @@ Commands for sorting the summary:
849 (if message-not-found 849 (if message-not-found
850 (overlay-put rmail-summary-overlay 'face nil) 850 (overlay-put rmail-summary-overlay 'face nil)
851 (move-overlay rmail-summary-overlay 851 (move-overlay rmail-summary-overlay
852 (save-excursion (beginning-of-line) (1+ (point))) 852 (save-excursion (beginning-of-line)
853 (skip-chars-forward " ")
854 (point))
853 (save-excursion (end-of-line) (point))) 855 (save-excursion (end-of-line) (point)))
854 (overlay-put rmail-summary-overlay 'face 'highlight)) 856 (overlay-put rmail-summary-overlay 'face 'highlight))
855 (beginning-of-line) 857 (beginning-of-line)