diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/help-mode.el | 4 |
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 @@ | |||
| 1 | 2003-04-24 John Paul Wallington <jpw@gnu.org> | ||
| 2 | |||
| 3 | * help-mode.el (help-make-xrefs): Remove extra paren. | ||
| 4 | |||
| 1 | 2003-04-23 Richard M. Stallman <rms@gnu.org> | 5 | 2003-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)) |