Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
32d9a725
Commit
32d9a725
authored
Jul 31, 2002
by
Markus Rost
Browse files
(describe-function-1): Test function for obsolescence only if it is a
symbol.
parent
c43008c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/help-fns.el
lisp/help-fns.el
+4
-1
No files found.
lisp/help-fns.el
View file @
32d9a725
...
...
@@ -307,7 +307,10 @@ Return (USAGE . DOC) or nil if there's no usage info."
(
setq
doc
(
cdr
usage
))
(
car
usage
))
(
t
"[Missing arglist. Please make a bug report.]"
)))
(
terpri
)
(
let
((
obsolete
(
get
function
'byte-obsolete-info
)))
(
let
((
obsolete
(
and
;; function might be a lambda construct.
(
symbolp
function
)
(
get
function
'byte-obsolete-info
))))
(
when
obsolete
(
terpri
)
(
princ
"This function is obsolete"
)
...
...
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