1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(help-make-xrefs): Skip spaces too when skipping tabs.

This commit is contained in:
Martin Rudalics 2007-07-02 05:46:19 +00:00
parent 20a65989fe
commit f204ca2feb
2 changed files with 10 additions and 1 deletions

View file

@ -462,7 +462,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))))