diff options
author | Glenn Morris <rgm@gnu.org> | 2012-11-10 16:20:51 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-11-10 16:20:51 -0800 |
commit | 6efddf785187007804e677c3834b9d6ab18ffc86 (patch) | |
tree | b6800291f298f058daef9886ff6ef0a5cfd0edca /doc/lispref/variables.texi | |
parent | 418b1830241ccc5ce4e3574c80d714ec0427fa4c (diff) | |
download | emacs-6efddf785187007804e677c3834b9d6ab18ffc86.tar.gz |
Formatting tweak for variables.texi
* doc/lispref/variables.texi (Adding Generalized Variables):
Use standard formatting for common lisp note about setf functions.
Diffstat (limited to 'doc/lispref/variables.texi')
-rw-r--r-- | doc/lispref/variables.texi | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi index c8451527d4f..814c5e2dd1c 100644 --- a/doc/lispref/variables.texi +++ b/doc/lispref/variables.texi @@ -2141,12 +2141,14 @@ This is the most general way to define a new @code{setf} expansion. @end ignore @cindex CL note---no @code{setf} functions -Common Lisp defines another way to specify the @code{setf} behavior of -a function, namely ``@code{setf} functions'', whose names are lists -@code{(setf @var{name})} rather than symbols. For example, -@code{(defun (setf foo) @dots{})} defines the function that is used -when @code{setf} is applied to @code{foo}. Emacs does not support -this. It is a compile-time error to use @code{setf} on a form that -has not already had an appropriate expansion defined. In Common Lisp, -this is not an error since the function @code{(setf @var{func})} might -be defined later. +@quotation +@b{Common Lisp note:} Common Lisp defines another way to specify the +@code{setf} behavior of a function, namely ``@code{setf} functions'', +whose names are lists @code{(setf @var{name})} rather than symbols. +For example, @code{(defun (setf foo) @dots{})} defines the function +that is used when @code{setf} is applied to @code{foo}. Emacs does +not support this. It is a compile-time error to use @code{setf} on a +form that has not already had an appropriate expansion defined. In +Common Lisp, this is not an error since the function @code{(setf +@var{func})} might be defined later. +@end quotation |