]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix wholenump/natnump description in Lisp manual.
authorChong Yidong <cyd@gnu.org>
Sun, 29 Jan 2012 07:25:22 +0000 (15:25 +0800)
committerChong Yidong <cyd@gnu.org>
Sun, 29 Jan 2012 07:25:22 +0000 (15:25 +0800)
* doc/lispref/numbers.texi (Predicates on Numbers): Fix
wholenump/natnump description.

Fixes: debbugs:10189
doc/lispref/ChangeLog
doc/lispref/numbers.texi
lisp/ChangeLog

index e34625e5b198933cbdfeaa87176a98f8c61566e9..207c0797f69357ad06526b71003431e1264e87ea 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-29  Chong Yidong  <cyd@gnu.org>
+
+       * numbers.texi (Predicates on Numbers): Fix wholenump/natnump
+       description (Bug#10189).
+
 2012-01-29  Glenn Morris  <rgm@gnu.org>
 
        * files.texi (Changing Files): Document SELinux support.
index 77db0f86c26bd28803f782cc7cd94e26a6218cb9..bec9f295227662b2208043f74ff661c7ec30a266 100644 (file)
@@ -282,15 +282,15 @@ This predicate tests whether its argument is a number (either integer or
 floating point), and returns @code{t} if so, @code{nil} otherwise.
 @end defun
 
-@defun wholenump object
+@defun natnump object
 @cindex natural numbers
-The @code{wholenump} predicate (whose name comes from the phrase
-``whole-number-p'') tests to see whether its argument is a nonnegative
-integer, and returns @code{t} if so, @code{nil} otherwise.  0 is
-considered non-negative.
+This predicate (whose name comes from the phrase ``natual number'')
+tests to see whether its argument is a nonnegative integer, and
+returns @code{t} if so, @code{nil} otherwise.  0 is considered
+non-negative.
 
-@findex natnump
-@code{natnump} is an obsolete synonym for @code{wholenump}.
+@findex wholenump number
+This is a synonym for @code{natnump}.
 @end defun
 
 @defun zerop number
index 6e3ec3a340d387d3ad4d7af117e9be618cd1c88f..8a6b3649e25adb2a3ba8e30cc1e8ecfc27c9e23d 100644 (file)
@@ -1,4 +1,4 @@
-2012-01-29  Syver Enstad  <syver.enstad@cisco.com>
+2012-01-29  Syver Enstad  <syver.enstad@cisco.com>  (tiny change)
 
        * progmodes/gud.el (pdb): Give pdb full paths, to allow setting
        breakpoints in files outside current directory (Bug#6098).