summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-generic.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-generic.el b/lisp/emacs-lisp/cl-generic.el
index 107d520b1e9..068f4fb0c84 100644
--- a/lisp/emacs-lisp/cl-generic.el
+++ b/lisp/emacs-lisp/cl-generic.el
@@ -415,8 +415,9 @@ The set of acceptable TYPEs (also called \"specializers\") is defined
(&define ; this means we are defining something
[&or symbolp ("setf" symbolp)]
;; ^^ This is the methods symbol
- [ &optional keywordp ; this is key :before etc
- &optional stringp ] ; :extra can be followed by a string
+ [ &rest atom ] ; Multiple qualifiers are allowed.
+ ; Like in CLOS spec, we support
+ ; any non-list values.
listp ; arguments
[ &optional stringp ] ; documentation string
def-body))) ; part to be debugged