diff lisp/help-mode.el @ 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 802dc93432c1
children b98604865ea0 988f1edc9674
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))))