]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bug#10354.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 23 Dec 2011 13:14:12 +0000 (14:14 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 23 Dec 2011 13:14:12 +0000 (14:14 +0100)
* doc/lispref/variables.texi (Variables with Restricted Values):
  Change reference to variable.

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

index a03521d449b62eac08e4fcb00cdbcfc4af58d2d4..5b90c2a1f9fd5da15a3b5bd9967129cd7e702a2b 100644 (file)
@@ -1,3 +1,8 @@
+2011-12-23  Juanma Barranquero  <lekktu@gmail.com>
+
+       * variables.texi (Variables with Restricted Values):
+       Change reference to variable (bug#10354).
+
 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
 
        * windows.texi (Splitting Windows): Use t instead of non-nil
index 091765043e394deb930dd6e79d8400ba8c20286b..62f5092497a45bd26d051cfb4988a114362968aa 100644 (file)
@@ -1998,6 +1998,6 @@ This variable holds a list of all variables of type @code{DEFVAR_BOOL}.
 Attempting to assign them any other value will result in an error:
 
 @example
-(setq window-min-height 5.0)
-@error{} Wrong type argument: integerp, 5.0
+(setq undo-limit 1000.0)
+@error{} Wrong type argument: integerp, 1000.0
 @end example