]> git.eshelyaron.com Git - emacs.git/commitdiff
Formatting tweak for variables.texi
authorGlenn Morris <rgm@gnu.org>
Sun, 11 Nov 2012 00:20:51 +0000 (16:20 -0800)
committerGlenn Morris <rgm@gnu.org>
Sun, 11 Nov 2012 00:20:51 +0000 (16:20 -0800)
* doc/lispref/variables.texi (Adding Generalized Variables):
Use standard formatting for common lisp note about setf functions.

doc/lispref/ChangeLog
doc/lispref/variables.texi

index eba44b5743d92cde6a48380641878771e821ad4d..9dd833a43289e9bd00de132b586978e1946464f6 100644 (file)
@@ -1,3 +1,8 @@
+2012-11-11  Glenn Morris  <rgm@gnu.org>
+
+       * variables.texi (Adding Generalized Variables):
+       Use standard formatting for common lisp note about setf functions.
+
 2012-11-07  Martin Rudalics  <rudalics@gmx.at>
 
        * elisp.texi (Top): Add Recombining Windows to menu.
index c8451527d4fb04b036cbb02d3d1d34feab03ac94..814c5e2dd1cc89c0daaa6373182eabaafc6d4e55 100644 (file)
@@ -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