diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/help-fns.el | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d8a47842999..3c6eb496366 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2002-07-17 Juanma Barranquero <lektu@terra.es> | 1 | 2002-07-17 Juanma Barranquero <lektu@terra.es> |
| 2 | 2 | ||
| 3 | * help-fns.el (describe-function-1): Put empty line before "Not | ||
| 4 | documented" text. | ||
| 5 | |||
| 3 | * timer.el (timer-set-time-with-usecs): Mark obsolete. | 6 | * timer.el (timer-set-time-with-usecs): Mark obsolete. |
| 4 | 7 | ||
| 5 | 2002-07-16 Stefan Monnier <monnier@cs.yale.edu> | 8 | 2002-07-16 Stefan Monnier <monnier@cs.yale.edu> |
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index c79aa356b78..7fe85001c3e 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -316,9 +316,8 @@ Return (USAGE . DOC) or nil if there's no usage info." | |||
| 316 | (princ (if (stringp (car obsolete)) (car obsolete) | 316 | (princ (if (stringp (car obsolete)) (car obsolete) |
| 317 | (format "use `%s' instead." (car obsolete)))) | 317 | (format "use `%s' instead." (car obsolete)))) |
| 318 | (terpri))) | 318 | (terpri))) |
| 319 | (if doc | 319 | (terpri) |
| 320 | (progn (terpri) (princ doc)) | 320 | (princ (or doc "Not documented."))))) |
| 321 | (princ "Not documented."))))) | ||
| 322 | 321 | ||
| 323 | 322 | ||
| 324 | ;; Variables | 323 | ;; Variables |