Mercurial > emacs
changeset 81681:b835ab39fb31
(help-make-xrefs): Skip spaces too when skipping tabs.
author | Martin Rudalics <rudalics@gmx.at> |
---|---|
date | Mon, 02 Jul 2007 05:55:01 +0000 |
parents | f4adce2647d3 |
children | b903c6ff0a3c |
files | lisp/help-mode.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help-mode.el Mon Jul 02 05:52:28 2007 +0000 +++ b/lisp/help-mode.el Mon Jul 02 05:55:01 2007 +0000 @@ -487,7 +487,7 @@ ;; Skip a single blank line. (and (eolp) (forward-line)) (end-of-line) - (skip-chars-backward "^\t\n") + (skip-chars-backward "^ \t\n") (if (and (>= (current-column) col) (looking-at "\\(\\sw\\|-\\)+$")) (let ((sym (intern-soft (match-string 0))))