aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2012-10-31 16:56:55 -0400
committerGlenn Morris2012-10-31 16:56:55 -0400
commit5241598ae5c3b83529f6967f143b8c08055b663f (patch)
tree4f9d42afa0c627f6b2cad79d4b10eb48cc73b741 /doc
parent89b2c8a133b379520d25a7bfa132178f8226d226 (diff)
downloademacs-5241598ae5c3b83529f6967f143b8c08055b663f.tar.gz
emacs-5241598ae5c3b83529f6967f143b8c08055b663f.zip
lispref xref update
* doc/lispref/modes.texi (Defining Minor Modes): "Generalized Variables" section is now in this manual rather than cl.texi.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog3
-rw-r--r--doc/lispref/modes.texi2
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 31da666eea6..b7885e6b0a9 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,5 +1,8 @@
12012-10-31 Glenn Morris <rgm@gnu.org> 12012-10-31 Glenn Morris <rgm@gnu.org>
2 2
3 * modes.texi (Defining Minor Modes): "Generalized Variables"
4 section is now in this manual rather than cl.texi.
5
3 * eval.texi (Special Forms): No longer special forms: defmacro, 6 * eval.texi (Special Forms): No longer special forms: defmacro,
4 defun, save-window-excursion, with-output-to-temp-buffer. 7 defun, save-window-excursion, with-output-to-temp-buffer.
5 * functions.texi (Defining Functions): Defun is now a macro. 8 * functions.texi (Defining Functions): Defun is now a macro.
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi
index 4e4d700aade..0634cddff84 100644
--- a/doc/lispref/modes.texi
+++ b/doc/lispref/modes.texi
@@ -1595,7 +1595,7 @@ of the mode. If you specify this, the @var{mode} variable is not
1595defined, and any @var{init-value} argument is unused. @var{place} 1595defined, and any @var{init-value} argument is unused. @var{place}
1596can be a different named variable (which you must define yourself), or 1596can be a different named variable (which you must define yourself), or
1597anything that can be used with the @code{setf} function 1597anything that can be used with the @code{setf} function
1598(@pxref{Generalized Variables,,, cl, Common Lisp Extensions}). 1598(@pxref{Generalized Variables}).
1599@var{place} can also be a cons @code{(@var{get} . @var{set})}, 1599@var{place} can also be a cons @code{(@var{get} . @var{set})},
1600where @var{get} is an expression that returns the current state, 1600where @var{get} is an expression that returns the current state,
1601and @var{set} is a function of one argument (a state) that sets it. 1601and @var{set} is a function of one argument (a state) that sets it.