]> code.delx.au - gnu-emacs/commitdiff
(rmail-summary-goto-msg): When highlighting,
authorRichard M. Stallman <rms@gnu.org>
Sun, 11 Dec 1994 09:16:23 +0000 (09:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 11 Dec 1994 09:16:23 +0000 (09:16 +0000)
don't skip 1st char on line if it isn't a space.

lisp/mail/rmailsum.el

index e2c684d85bd0a154f9270ad24dd70c45f31ed117..784d08c34b2b1ff02f6b8aac6e1ac25ba216f26c 100644 (file)
@@ -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)