aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2003-04-24 08:37:02 +0000
committerJohn Paul Wallington2003-04-24 08:37:02 +0000
commit043dcdee035bc9a3c2f4d47b5487dd30b0297408 (patch)
tree72d8236cd3d9f50e20012707661b130cfea9e20d
parent236a1914276f86ae4f613ffe0293ab26dcf11497 (diff)
downloademacs-043dcdee035bc9a3c2f4d47b5487dd30b0297408.tar.gz
emacs-043dcdee035bc9a3c2f4d47b5487dd30b0297408.zip
(help-make-xrefs): Remove extra paren.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/help-mode.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f360d750c21..db9f7ba5aa5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12003-04-24 John Paul Wallington <jpw@gnu.org>
2
3 * help-mode.el (help-make-xrefs): Remove extra paren.
4
12003-04-23 Richard M. Stallman <rms@gnu.org> 52003-04-23 Richard M. Stallman <rms@gnu.org>
2 6
3 * mail/sendmail.el (mail-send-and-exit): Make arg optional. 7 * 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."
406 (let ((sym (intern-soft (match-string 0)))) 406 (let ((sym (intern-soft (match-string 0))))
407 (if (fboundp sym) 407 (if (fboundp sym)
408 (help-xref-button 0 'help-function sym)))) 408 (help-xref-button 0 'help-function sym))))
409 (forward-line))))))) 409 (forward-line))))))
410 (set-syntax-table stab)) 410 (set-syntax-table stab))
411 ;; Delete extraneous newlines at the end of the docstring 411 ;; Delete extraneous newlines at the end of the docstring
412 (goto-char (point-max)) 412 (goto-char (point-max))
413 (while (and (not (bobp)) (bolp)) 413 (while (and (not (bobp)) (bolp))