From: Juanma Barranquero Date: Fri, 23 Dec 2011 13:14:12 +0000 (+0100) Subject: Fix bug#10354. X-Git-Tag: emacs-pretest-24.0.93~121 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9022ae07ee78e37adae69b7b55cabc926a7459f7;p=emacs.git Fix bug#10354. * doc/lispref/variables.texi (Variables with Restricted Values): Change reference to variable. --- 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 @@ +2011-12-23 Juanma Barranquero + + * variables.texi (Variables with Restricted Values): + Change reference to variable (bug#10354). + 2011-12-13 Martin Rudalics * 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}. 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