diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-06-28 15:09:39 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-06-28 15:09:39 +0000 |
commit | d0aa054221430f2bb7d1d98f0409bb6455519763 (patch) | |
tree | 1fbf0377343ea65edcd2add971e60b9438cdcfff /lisp/emacs-lisp | |
parent | b68f6e48fa149d7b4e2dabbcb135a5994f492f6f (diff) | |
download | emacs-d0aa054221430f2bb7d1d98f0409bb6455519763.tar.gz emacs-d0aa054221430f2bb7d1d98f0409bb6455519763.tar.bz2 emacs-d0aa054221430f2bb7d1d98f0409bb6455519763.zip |
Docstring and comment fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-macs.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 10228c151c1..832bc8e2d02 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -58,8 +58,8 @@ (defvar cl-optimize-speed) -;;; This kludge allows macros which use cl-transform-function-property -;;; to be called at compile-time. +;; This kludge allows macros which use cl-transform-function-property +;; to be called at compile-time. (require (progn @@ -1600,7 +1600,7 @@ form. See `defsetf' for a simpler way to define most setf-methods. ;;;###autoload (defmacro defsetf (func arg1 &rest args) - "(defsetf NAME FUNC): define a `setf' method. + "Define a `setf' method. This macro is an easy-to-use substitute for `define-setf-method' that works well for simple place forms. In the simple `defsetf' form, `setf's of the form (setf (NAME ARGS...) VAL) are transformed to function or macro |