diff options
| -rw-r--r-- | lisp/help.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el index 0bb57ab61d3..c7bcf665215 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -444,8 +444,9 @@ C-w print information on absence of warranty for GNU Emacs." | |||
| 444 | (if file | 444 | (if file |
| 445 | (progn | 445 | (progn |
| 446 | (princ " in `") | 446 | (princ " in `") |
| 447 | (princ file) | 447 | ;; We used to add .el to the file name, |
| 448 | (princ ".el'")))) | 448 | ;; but that's completely wrong when the user used load-file. |
| 449 | (princ file)))) | ||
| 449 | (princ ".") | 450 | (princ ".") |
| 450 | (terpri) | 451 | (terpri) |
| 451 | (let ((arglist (cond ((byte-code-function-p def) | 452 | (let ((arglist (cond ((byte-code-function-p def) |