mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
apropos-library: Don't list generic functions as features
* lisp/apropos.el (apropos-library): Remove the separate 'cl-defmethod' case (bug#74727).
This commit is contained in:
parent
b25fba0ef8
commit
4eea545bbc
1 changed files with 2 additions and 3 deletions
|
|
@ -731,9 +731,8 @@ the output includes key-bindings of commands."
|
|||
('require (push (cdr x) requires))
|
||||
('provide (push (cdr x) provides))
|
||||
('t nil) ; Skip "was an autoload" entries.
|
||||
;; FIXME: Print information about each individual method: both
|
||||
;; its docstring and specializers (bug#21422).
|
||||
('cl-defmethod (push (cadr x) provides))
|
||||
;; FIXME: Print information about each method on generic
|
||||
;; functions: both the docstring and specializers (bug#21422).
|
||||
;; FIXME: Add extension point (bug#72616).
|
||||
(_ (let ((sym (or (cdr-safe x) x)))
|
||||
(and sym (symbolp sym)
|
||||
|
|
|
|||
Loading…
Reference in a new issue