Fix wholenump/natnump description in Lisp manual.
* doc/lispref/numbers.texi (Predicates on Numbers): Fix wholenump/natnump description. Fixes: debbugs:10189
This commit is contained in:
parent
6b25e4e27d
commit
0f29fa41ac
3 changed files with 13 additions and 8 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Add table
Reference in a new issue