diff options
| author | Richard M. Stallman | 1993-03-25 03:40:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-03-25 03:40:35 +0000 |
| commit | cdd672cc5a5a902592922f6eb735b0b378d0d9d6 (patch) | |
| tree | 1d779bc6d0b9da85df5cb93c83126282e4001592 | |
| parent | d460af17a8a1a8ff264b22c91a9652d8c45df435 (diff) | |
| download | emacs-cdd672cc5a5a902592922f6eb735b0b378d0d9d6.tar.gz emacs-cdd672cc5a5a902592922f6eb735b0b378d0d9d6.zip | |
(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." | |||
| 304 | (t ""))) | 304 | (t ""))) |
| 305 | (terpri) | 305 | (terpri) |
| 306 | (if (documentation function) | 306 | (if (documentation function) |
| 307 | (princ (documentation function)) | 307 | (progn (terpri) |
| 308 | (princ (documentation function))) | ||
| 308 | (princ "not documented")) | 309 | (princ "not documented")) |
| 309 | (cond ((byte-code-function-p def) | 310 | (cond ((byte-code-function-p def) |
| 310 | (save-excursion | 311 | (save-excursion |