From: John Paul Wallington Date: Thu, 24 Apr 2003 08:37:02 +0000 (+0000) Subject: (help-make-xrefs): Remove extra paren. X-Git-Tag: ttn-vms-21-2-B4~10428 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=043dcdee035bc9a3c2f4d47b5487dd30b0297408;p=emacs.git (help-make-xrefs): Remove extra paren. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f360d750c21..db9f7ba5aa5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2003-04-24 John Paul Wallington + + * help-mode.el (help-make-xrefs): Remove extra paren. + 2003-04-23 Richard M. Stallman * mail/sendmail.el (mail-send-and-exit): Make arg optional. 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))