diff options
author | Dave Love <fx@gnu.org> | 1999-05-10 15:08:22 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-05-10 15:08:22 +0000 |
commit | 377d15d97fa2b68601bf1aaeca18ec87b74d7b13 (patch) | |
tree | 9997ab227feedc6cd1e582b6553a891f477a2a60 | |
parent | f20f3ac73b7bf7ff55a4ee36e571226c806c5e8e (diff) | |
download | emacs-377d15d97fa2b68601bf1aaeca18ec87b74d7b13.tar.gz emacs-377d15d97fa2b68601bf1aaeca18ec87b74d7b13.tar.bz2 emacs-377d15d97fa2b68601bf1aaeca18ec87b74d7b13.zip |
(help-make-xrefs): Fix typpo.
-rw-r--r-- | lisp/help.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el index 1d6a3426b88..5166c8bc164 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -1040,8 +1040,7 @@ that." (end-of-line) (skip-chars-backward "^\t\n") (if (and (>= (current-column) col) - +(looking-at "\\(\\sw\\|-\\)+$")) - ;; + (looking-at "\\(\\sw\\|-\\)+$")) (let ((sym (intern-soft (match-string 0)))) (if (fboundp sym) (help-xref-button |