diff options
author | Glenn Morris <rgm@gnu.org> | 2011-02-05 14:03:44 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-02-05 14:03:44 -0800 |
commit | a60287ff994ec4d07779128f0df5500bed1b3cf9 (patch) | |
tree | 2893b34b10790302d594ab7a583e6aa3d226dced /lisp/emacs-lisp | |
parent | a41c866068bc9428c5ba354d53d0dd4abd829d6f (diff) | |
download | emacs-a60287ff994ec4d07779128f0df5500bed1b3cf9.tar.gz emacs-a60287ff994ec4d07779128f0df5500bed1b3cf9.tar.bz2 emacs-a60287ff994ec4d07779128f0df5500bed1b3cf9.zip |
* lisp/emacs-lisp/cl-macs.el (return-from): Fix doc typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 94c2312541c..4061e570cef 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -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." |