diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-03-25 03:40:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-03-25 03:40:35 +0000 |
| commit | cdd672cc5a5a902592922f6eb735b0b378d0d9d6 (patch) | |
| tree | 1d779bc6d0b9da85df5cb93c83126282e4001592 | |
| parent | d460af17a8a1a8ff264b22c91a9652d8c45df435 (diff) | |
| download | emacs-cdd672cc5a5a902592922f6eb735b0b378d0d9d6.tar.gz | |
(describe-function): Add blank line above doc string.
| -rw-r--r-- | lisp/help.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 5cf31dfeb78..a067e23e0f6 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -304,7 +304,8 @@ C-w print information on absence of warranty for GNU Emacs." (t ""))) (terpri) (if (documentation function) - (princ (documentation function)) + (progn (terpri) + (princ (documentation function))) (princ "not documented")) (cond ((byte-code-function-p def) (save-excursion |
