1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-17 11:20:39 -08:00

* lisp/emacs-lisp/cl-generic.el (cl--generic-member-method): Fix paren typo.

This commit is contained in:
Stefan Monnier 2015-02-04 14:45:07 -05:00
parent df179332d4
commit 8e010cf6e7
2 changed files with 4 additions and 2 deletions

View file

@ -355,8 +355,8 @@ which case this method will be invoked when the argument is `eql' to VAL.
(let ((m (car methods)))
(not (and (equal (cl--generic-method-specializers m) specializers)
(equal (cl--generic-method-qualifiers m) qualifiers)))))
(setq methods (cdr methods))
methods))
(setq methods (cdr methods)))
methods)
;;;###autoload
(defun cl-generic-define-method (name qualifiers args uses-cnm function)