aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2007-07-02 05:55:28 +0000
committerMartin Rudalics2007-07-02 05:55:28 +0000
commite8749da6d06c054c256cb2840ca93f0f79eb0520 (patch)
treed42e9879968f4dbd233df040b77585c134dffeb3
parent0fdc185e75d902a2fa368450359eef173ea5c3d4 (diff)
downloademacs-e8749da6d06c054c256cb2840ca93f0f79eb0520.tar.gz
emacs-e8749da6d06c054c256cb2840ca93f0f79eb0520.zip
(help-make-xrefs): Skip spaces too when skipping tabs.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/help-mode.el2
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7b6c57bdf40..12bd4f42e24 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
12007-07-02 Martin Rudalics <rudalics@gmx.at>
2
3 * help-mode.el (help-make-xrefs): Skip spaces too when
4 skipping tabs.
5
6 * ffap.el (dired-at-point-prompter): Improve prompt in
7 list-directory case.
8
12007-07-01 Richard Stallman <rms@gnu.org> 92007-07-01 Richard Stallman <rms@gnu.org>
2 10
3 * cus-start.el (max-mini-window-height): Added. 11 * cus-start.el (max-mini-window-height): Added.
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."
487 ;; Skip a single blank line. 487 ;; Skip a single blank line.
488 (and (eolp) (forward-line)) 488 (and (eolp) (forward-line))
489 (end-of-line) 489 (end-of-line)
490 (skip-chars-backward "^\t\n") 490 (skip-chars-backward "^ \t\n")
491 (if (and (>= (current-column) col) 491 (if (and (>= (current-column) col)
492 (looking-at "\\(\\sw\\|-\\)+$")) 492 (looking-at "\\(\\sw\\|-\\)+$"))
493 (let ((sym (intern-soft (match-string 0)))) 493 (let ((sym (intern-soft (match-string 0))))