]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/cl-macs.el (return-from): Fix doc typo.
authorGlenn Morris <rgm@gnu.org>
Sat, 5 Feb 2011 22:03:44 +0000 (14:03 -0800)
committerGlenn Morris <rgm@gnu.org>
Sat, 5 Feb 2011 22:03:44 +0000 (14:03 -0800)
lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el

index 93eaffde2cf0c81968a3a285b2b04b19922a5cde..6fcef76911cdf292d4e641dc4a9a31e19a5c1e40 100644 (file)
@@ -1,3 +1,7 @@
+2011-02-05  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/cl-macs.el (return-from): Fix doc typo.
+
 2011-02-04  Glenn Morris  <rgm@gnu.org>
 
        * calendar/diary-lib.el (diary-font-lock-keywords):
index 94c2312541c66c6d0f73f478d18a4cd3d930b122..4061e570cef07a0d8006b52025b07c167b7bb86a 100644 (file)
@@ -622,7 +622,7 @@ This is equivalent to `(return-from nil RESULT)'."
 ;;;###autoload
 (defmacro return-from (name &optional result)
   "Return from the block named NAME.
-This jump out to the innermost enclosing `(block NAME ...)' form,
+This jumps out to the innermost enclosing `(block NAME ...)' form,
 returning RESULT from that form (or nil if RESULT is omitted).
 This is compatible with Common Lisp, but note that `defun' and
 `defmacro' do not create implicit blocks as they do in Common Lisp."