(describe-function-1): Say "keymap", not "Lisp macro",

if this is an autoloaded keymap.
This commit is contained in:
Andreas Schwab 1998-12-21 10:03:01 +00:00
parent a3cec380f5
commit aed2b2cd47

View file

@ -620,9 +620,10 @@ It can also be nil, if the definition is not associated with any file."
"a mocklisp function")
((eq (car-safe def) 'autoload)
(setq file-name (nth 1 def))
(format "%s autoloaded Lisp %s"
(format "%s autoloaded %s"
(if (commandp def) "an interactive" "an")
(if (nth 4 def) "macro" "function")
(if (eq (nth 4 def) 'keymap) "keymap"
(if (nth 4 def) "Lisp macro" "Lisp function"))
))
(t "")))
(when (and parens (not (equal string "")))