diff options
author | John Paul Wallington <jpw@pobox.com> | 2003-04-24 08:37:02 +0000 |
---|---|---|
committer | John Paul Wallington <jpw@pobox.com> | 2003-04-24 08:37:02 +0000 |
commit | 043dcdee035bc9a3c2f4d47b5487dd30b0297408 (patch) | |
tree | 72d8236cd3d9f50e20012707661b130cfea9e20d /lisp/help-mode.el | |
parent | 236a1914276f86ae4f613ffe0293ab26dcf11497 (diff) | |
download | emacs-043dcdee035bc9a3c2f4d47b5487dd30b0297408.tar.gz |
(help-make-xrefs): Remove extra paren.
Diffstat (limited to 'lisp/help-mode.el')
-rw-r--r-- | lisp/help-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el index 6e8ab0e34a2..368aa370983 100644 --- a/lisp/help-mode.el +++ b/lisp/help-mode.el @@ -406,8 +406,8 @@ that." (let ((sym (intern-soft (match-string 0)))) (if (fboundp sym) (help-xref-button 0 'help-function sym)))) - (forward-line))))))) - (set-syntax-table stab)) + (forward-line)))))) + (set-syntax-table stab)) ;; Delete extraneous newlines at the end of the docstring (goto-char (point-max)) (while (and (not (bobp)) (bolp)) |