diff options
author | Martin Rudalics <rudalics@gmx.at> | 2007-07-02 05:55:28 +0000 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2007-07-02 05:55:28 +0000 |
commit | e8749da6d06c054c256cb2840ca93f0f79eb0520 (patch) | |
tree | d42e9879968f4dbd233df040b77585c134dffeb3 /lisp/help-mode.el | |
parent | 0fdc185e75d902a2fa368450359eef173ea5c3d4 (diff) | |
download | emacs-e8749da6d06c054c256cb2840ca93f0f79eb0520.tar.gz |
(help-make-xrefs): Skip spaces too when skipping tabs.
Diffstat (limited to 'lisp/help-mode.el')
-rw-r--r-- | lisp/help-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index 98b27623ce0..075b893ad6f 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -487,7 +487,7 @@ that." ;; 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)))) |