changeset 78068:5af810b51863

(help-make-xrefs): Skip spaces too when skipping tabs.
author Martin Rudalics <rudalics@gmx.at>
date Mon, 02 Jul 2007 05:43:45 +0000
parents b24147eb76bb
children 83437a5611b9
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:40:12 2007 +0000
+++ b/lisp/help-mode.el	Mon Jul 02 05:43:45 2007 +0000
@@ -462,7 +462,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))))