emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r113383: lisp/emacs-lisp/cl-macs.el: Fix typos in do


From: Juanma Barranquero
Subject: [Emacs-diffs] trunk r113383: lisp/emacs-lisp/cl-macs.el: Fix typos in docstrings.
Date: Fri, 12 Jul 2013 01:11:33 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113383
revision-id: address@hidden
parent: address@hidden
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Fri 2013-07-12 03:11:22 +0200
message:
  lisp/emacs-lisp/cl-macs.el: Fix typos in docstrings.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/cl-macs.el     clmacs.el-20091113204419-o5vbwnq5f7feedwu-612
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-07-12 01:01:53 +0000
+++ b/lisp/ChangeLog    2013-07-12 01:11:22 +0000
@@ -1,3 +1,8 @@
+2013-07-12  Juanma Barranquero  <address@hidden>
+
+       * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
+       (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
+
 2013-07-12  Leo Liu  <address@hidden>
 
        * ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)

=== modified file 'lisp/emacs-lisp/cl-macs.el'
--- a/lisp/emacs-lisp/cl-macs.el        2013-06-25 16:13:49 +0000
+++ b/lisp/emacs-lisp/cl-macs.el        2013-07-12 01:11:22 +0000
@@ -1957,7 +1957,7 @@
   "Collect multiple return values.
 FORM must return a list; the BODY is then executed with the first N elements
 of this list bound (`let'-style) to each of the symbols SYM in turn.  This
-is analogous to the Common Lisp `cl-multiple-value-bind' macro, using lists to
+is analogous to the Common Lisp `multiple-value-bind' macro, using lists to
 simulate true multiple return values.  For compatibility, (cl-values A B C) is
 a synonym for (list A B C).
 
@@ -1975,7 +1975,7 @@
   "Collect multiple return values.
 FORM must return a list; the first N elements of this list are stored in
 each of the symbols SYM in turn.  This is analogous to the Common Lisp
-`cl-multiple-value-setq' macro, using lists to simulate true multiple return
+`multiple-value-setq' macro, using lists to simulate true multiple return
 values.  For compatibility, (cl-values A B C) is a synonym for (list A B C).
 
 \(fn (SYM...) FORM)"
@@ -2002,7 +2002,7 @@
   (cons 'progn body))
 ;;;###autoload
 (defmacro cl-the (_type form)
-  "At present this ignores _TYPE and is simply equivalent to FORM."
+  "At present this ignores TYPE and is simply equivalent to FORM."
   (declare (indent 1) (debug (cl-type-spec form)))
   form)
 
@@ -2059,7 +2059,7 @@
   "Declare SPECS about the current function while compiling.
 For instance
 
-  \(cl-declare (warn 0))
+  (cl-declare (warn 0))
 
 will turn off byte-compile warnings in the function.
 See Info node `(cl)Declarations' for details."
@@ -2279,8 +2279,8 @@
 Each SLOT may instead take the form (SNAME SDEFAULT SOPTIONS...), where
 SDEFAULT is the default value of that slot and SOPTIONS are keyword-value
 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'.
+Currently, only one keyword is supported, `:read-only'.  If this has a
+non-nil value, that slot cannot be set via `setf'.
 
 \(fn NAME SLOTS...)"
   (declare (doc-string 2) (indent 1)


reply via email to

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