Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
aed2b2cd
Commit
aed2b2cd
authored
Dec 21, 1998
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(describe-function-1): Say "keymap", not "Lisp macro",
if this is an autoloaded keymap.
parent
a3cec380
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lisp/help.el
lisp/help.el
+3
-2
No files found.
lisp/help.el
View file @
aed2b2cd
...
...
@@ -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
""
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment