summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1992-10-23 09:19:12 +0000
committerRichard M. Stallman <rms@gnu.org>1992-10-23 09:19:12 +0000
commit762435dda43cab221e50c22dca06e68ff0dcfa24 (patch)
tree45ab471bf77e42de4c72847146458f16768cddbe
parent912c672856da0a90312da4bbb500bf3c6758a166 (diff)
downloademacs-762435dda43cab221e50c22dca06e68ff0dcfa24.tar.gz
(describe-function): Print `an autoloaded', not `a ...'.
-rw-r--r--lisp/help.el4
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."
((eq (car-safe def) 'mocklisp)
"a mocklisp function.")
((eq (car-safe def) 'autoload)
- (format "%sautoloaded Lisp %s."
- beg
+ (format "%s autoloaded Lisp %s."
+ (if (commandp def) "an interactive" "an")
(if (nth 4 def) "macro" "function")
;;; Including the file name made this line too long.
;;; (nth 1 def)