* 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.
(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)))