diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-10-06 13:34:57 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2012-10-06 13:34:57 -0400 |
commit | 685f87b00f477c8072bcd15818d9564e7b7d8808 (patch) | |
tree | 6f15e26dca0bb41ba2b8f31d545e7273cfef22b3 /lisp/emacs-lisp/cl-macs.el | |
parent | 04fafa467506fe9ca9b77d9cdc3f8e25cb8fd5d3 (diff) | |
download | emacs-685f87b00f477c8072bcd15818d9564e7b7d8808.tar.gz emacs-685f87b00f477c8072bcd15818d9564e7b7d8808.tar.bz2 emacs-685f87b00f477c8072bcd15818d9564e7b7d8808.zip |
* lisp/emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
Diffstat (limited to 'lisp/emacs-lisp/cl-macs.el')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 56e698bec0a..99bae1944e8 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -2154,8 +2154,9 @@ copier, a `NAME-p' predicate, and slot accessors named `NAME-SLOT'. You can use the accessors to set the corresponding slots, via `setf'. NAME may instead take the form (NAME OPTIONS...), where each -OPTION is either a single keyword or (KEYWORD VALUE). -See Info node `(cl)Structures' for a list of valid keywords. +OPTION is either a single keyword or (KEYWORD VALUE) where +KEYWORD can be one of :conc-name, :constructor, :copier, :predicate, +:type, :named, :initial-offset, :print-function, or :include. Each SLOT may instead take the form (SLOT SLOT-OPTS...), where SLOT-OPTS are keyword-value pairs for that slot. Currently, only |