mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-22 07:09:54 +00:00
Don't describe lexbound uncompiled function as 'closures'
* lisp/help-fns.el (help-fns-function-description-header): Describe lexbound uncompiled functions as functions. Whether they technically close over any lexical variables isn't of interest here.
This commit is contained in:
parent
fb5e1b21fb
commit
f4fe820707
@ -1084,10 +1084,8 @@ Returns a list of the form (REAL-FUNCTION DEF ALIASED REAL-DEF)."
|
||||
(concat beg "byte-compiled Lisp function"))
|
||||
((module-function-p def)
|
||||
(concat beg "module function"))
|
||||
((eq (car-safe def) 'lambda)
|
||||
((memq (car-safe def) '(lambda closure))
|
||||
(concat beg "Lisp function"))
|
||||
((eq (car-safe def) 'closure)
|
||||
(concat beg "Lisp closure"))
|
||||
((keymapp def)
|
||||
(let ((is-full nil)
|
||||
(elts (cdr-safe def)))
|
||||
|
Loading…
Reference in New Issue
Block a user