diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2019-07-13 13:30:35 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2019-07-13 13:30:35 +0200 |
commit | 9939e04404b3d7621a9fd260c977ff5c7a0fb0d0 (patch) | |
tree | 2d71fd879ba3f56ac0277f817c098fb22d2a32c9 /lisp/emacs-lisp | |
parent | 40743cbb73f60c104dd745afc94c93200da0a529 (diff) | |
download | emacs-9939e04404b3d7621a9fd260c977ff5c7a0fb0d0.tar.gz emacs-9939e04404b3d7621a9fd260c977ff5c7a0fb0d0.tar.bz2 emacs-9939e04404b3d7621a9fd260c977ff5c7a0fb0d0.zip |
* lisp/emacs-lisp/cl-macs.el (cl-defstruct): Adapt docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index ba3f26e43a0..ef78cfa62ef 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -2711,8 +2711,10 @@ 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) where -KEYWORD can be one of :conc-name, :constructor, :copier, :predicate, -:type, :named, :initial-offset, :print-function, :noinline, or :include. +KEYWORD can be one of `:conc-name', `:constructor', `:copier', +`:predicate', `:type', `:named', `:initial-offset', +`:print-function', `:noinline', or `:include'. See Info +node `(cl)Structures' for the description of the options. Each SLOT may instead take the form (SNAME SDEFAULT SOPTIONS...), where SDEFAULT is the default value of that slot and SOPTIONS are keyword-value @@ -2720,7 +2722,7 @@ pairs for that slot. Currently, only one keyword is supported, `:read-only'. If this has a non-nil value, that slot cannot be set via `setf'. -It's optional DOC-STRING is optional. +It's DOC-STRING is optional. \(fn NAME &optional DOCSTRING &rest SLOTS)" (declare (doc-string 2) (indent 1) |