# HG changeset patch # User Martin Rudalics # Date 1183355025 0 # Node ID 5af810b5186383965b4b631c520d8bb6df81a845 # Parent b24147eb76bbbeda08b38af6966083b339811285 (help-make-xrefs): Skip spaces too when skipping tabs. diff -r b24147eb76bb -r 5af810b51863 lisp/help-mode.el --- 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))))