diff options
Diffstat (limited to 'lisp/help.el')
| -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 |
