diff options
| author | Richard M. Stallman | 1992-10-23 09:19:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-10-23 09:19:12 +0000 |
| commit | 762435dda43cab221e50c22dca06e68ff0dcfa24 (patch) | |
| tree | 45ab471bf77e42de4c72847146458f16768cddbe | |
| parent | 912c672856da0a90312da4bbb500bf3c6758a166 (diff) | |
| download | emacs-762435dda43cab221e50c22dca06e68ff0dcfa24.tar.gz emacs-762435dda43cab221e50c22dca06e68ff0dcfa24.zip | |
(describe-function): Print `an autoloaded', not `a ...'.
| -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) |