emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110389: * lisp/emacs-lisp/cl-macs.el


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110389: * lisp/emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
Date: Sat, 06 Oct 2012 13:34:57 -0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110389
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Sat 2012-10-06 13:34:57 -0400
message:
  * lisp/emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/cl-loaddefs.el
  lisp/emacs-lisp/cl-macs.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-10-06 17:29:15 +0000
+++ b/lisp/ChangeLog    2012-10-06 17:34:57 +0000
@@ -1,5 +1,7 @@
 2012-10-06  Stefan Monnier  <address@hidden>
 
+       * emacs-lisp/cl-macs.el (cl-defstruct): Improve docstring.
+
        * subr.el (read-passwd-map): New var.
        (read-passwd): Use `read-string' again.
        * minibuffer.el (delete-minibuffer-contents): Make it interactive.

=== modified file 'lisp/emacs-lisp/cl-loaddefs.el'
--- a/lisp/emacs-lisp/cl-loaddefs.el    2012-09-29 02:02:34 +0000
+++ b/lisp/emacs-lisp/cl-loaddefs.el    2012-10-06 17:34:57 +0000
@@ -260,7 +260,7 @@
 ;;;;;;  cl-typecase cl-ecase cl-case cl-load-time-value cl-eval-when
 ;;;;;;  cl-destructuring-bind cl-function cl-defmacro cl-defun cl-gentemp
 ;;;;;;  cl-gensym cl--compiler-macro-cXXr cl--compiler-macro-list*)
-;;;;;;  "cl-macs" "cl-macs.el" "da92f58f688ff6fb4d0098eb0f3acf0b")
+;;;;;;  "cl-macs" "cl-macs.el" "6951d080daefb5194b1d21fe9b2deae4")
 ;;; Generated autoloads from cl-macs.el
 
 (autoload 'cl--compiler-macro-list* "cl-macs" "\
@@ -657,8 +657,9 @@
 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

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2012-09-28 23:30:52 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2012-10-06 17:34:57 +0000
@@ -2154,8 +2154,9 @@
 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]