diff options
| -rw-r--r-- | lisp/help-fns.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 1de255d1e63..cb99d188ffa 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el | |||
| @@ -625,7 +625,8 @@ it is displayed along with the global value." | |||
| 625 | "which is byte-compiled expression.\n" | 625 | "which is byte-compiled expression.\n" |
| 626 | (format "`%s'.\n" safe-var)))) | 626 | (format "`%s'.\n" safe-var)))) |
| 627 | (princ "\nDocumentation:\n") | 627 | (princ "\nDocumentation:\n") |
| 628 | (princ (or doc "Not documented as a variable."))) | 628 | (with-current-buffer standard-output |
| 629 | (insert (or doc "Not documented as a variable.")))) | ||
| 629 | ;; Make a link to customize if this variable can be customized. | 630 | ;; Make a link to customize if this variable can be customized. |
| 630 | (if (custom-variable-p variable) | 631 | (if (custom-variable-p variable) |
| 631 | (let ((customize-label "customize")) | 632 | (let ((customize-label "customize")) |