diff options
| -rw-r--r-- | lisp/help.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el index 89ed440ff20..f7cdbf35414 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -304,8 +304,8 @@ C-w print information on absence of warranty for GNU Emacs." | |||
| 304 | ((eq (car-safe def) 'mocklisp) | 304 | ((eq (car-safe def) 'mocklisp) |
| 305 | "a mocklisp function.") | 305 | "a mocklisp function.") |
| 306 | ((eq (car-safe def) 'autoload) | 306 | ((eq (car-safe def) 'autoload) |
| 307 | (format "%sautoloaded Lisp %s." | 307 | (format "%s autoloaded Lisp %s." |
| 308 | beg | 308 | (if (commandp def) "an interactive" "an") |
| 309 | (if (nth 4 def) "macro" "function") | 309 | (if (nth 4 def) "macro" "function") |
| 310 | ;;; Including the file name made this line too long. | 310 | ;;; Including the file name made this line too long. |
| 311 | ;;; (nth 1 def) | 311 | ;;; (nth 1 def) |