aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJuanma Barranquero2011-12-23 14:14:12 +0100
committerJuanma Barranquero2011-12-23 14:14:12 +0100
commit9022ae07ee78e37adae69b7b55cabc926a7459f7 (patch)
tree76a455f386fb967f9b41bb2156fec5b38600e38c /doc
parentcb5e207c74eb289482bdab37d9c298ec88987062 (diff)
downloademacs-9022ae07ee78e37adae69b7b55cabc926a7459f7.tar.gz
emacs-9022ae07ee78e37adae69b7b55cabc926a7459f7.zip
Fix bug#10354.
* doc/lispref/variables.texi (Variables with Restricted Values): Change reference to variable.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/variables.texi4
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index a03521d449b..5b90c2a1f9f 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12011-12-23 Juanma Barranquero <lekktu@gmail.com>
2
3 * variables.texi (Variables with Restricted Values):
4 Change reference to variable (bug#10354).
5
12011-12-13 Martin Rudalics <rudalics@gmx.at> 62011-12-13 Martin Rudalics <rudalics@gmx.at>
2 7
3 * windows.texi (Splitting Windows): Use t instead of non-nil 8 * windows.texi (Splitting Windows): Use t instead of non-nil
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi
index 091765043e3..62f5092497a 100644
--- a/doc/lispref/variables.texi
+++ b/doc/lispref/variables.texi
@@ -1998,6 +1998,6 @@ This variable holds a list of all variables of type @code{DEFVAR_BOOL}.
1998Attempting to assign them any other value will result in an error: 1998Attempting to assign them any other value will result in an error:
1999 1999
2000@example 2000@example
2001(setq window-min-height 5.0) 2001(setq undo-limit 1000.0)
2002@error{} Wrong type argument: integerp, 5.0 2002@error{} Wrong type argument: integerp, 1000.0
2003@end example 2003@end example