diff options
| author | Stefan Monnier | 2007-06-28 15:09:39 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-06-28 15:09:39 +0000 |
| commit | d0aa054221430f2bb7d1d98f0409bb6455519763 (patch) | |
| tree | 1fbf0377343ea65edcd2add971e60b9438cdcfff | |
| parent | b68f6e48fa149d7b4e2dabbcb135a5994f492f6f (diff) | |
| download | emacs-d0aa054221430f2bb7d1d98f0409bb6455519763.tar.gz emacs-d0aa054221430f2bb7d1d98f0409bb6455519763.zip | |
Docstring and comment fix.
| -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 @@ | |||
| 58 | (defvar cl-optimize-speed) | 58 | (defvar cl-optimize-speed) |
| 59 | 59 | ||
| 60 | 60 | ||
| 61 | ;;; This kludge allows macros which use cl-transform-function-property | 61 | ;; This kludge allows macros which use cl-transform-function-property |
| 62 | ;;; to be called at compile-time. | 62 | ;; to be called at compile-time. |
| 63 | 63 | ||
| 64 | (require | 64 | (require |
| 65 | (progn | 65 | (progn |
| @@ -1600,7 +1600,7 @@ form. See `defsetf' for a simpler way to define most setf-methods. | |||
| 1600 | 1600 | ||
| 1601 | ;;;###autoload | 1601 | ;;;###autoload |
| 1602 | (defmacro defsetf (func arg1 &rest args) | 1602 | (defmacro defsetf (func arg1 &rest args) |
| 1603 | "(defsetf NAME FUNC): define a `setf' method. | 1603 | "Define a `setf' method. |
| 1604 | This macro is an easy-to-use substitute for `define-setf-method' that works | 1604 | This macro is an easy-to-use substitute for `define-setf-method' that works |
| 1605 | well for simple place forms. In the simple `defsetf' form, `setf's of | 1605 | well for simple place forms. In the simple `defsetf' form, `setf's of |
| 1606 | the form (setf (NAME ARGS...) VAL) are transformed to function or macro | 1606 | the form (setf (NAME ARGS...) VAL) are transformed to function or macro |