summaryrefslogtreecommitdiff
path: root/lispref/numbers.texi
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>2000-01-05 15:18:01 +0000
committerGerd Moellmann <gerd@gnu.org>2000-01-05 15:18:01 +0000
commit95d555b1857b5c6a3b0cf6806dfdbeaa483e4f3c (patch)
tree83d844e11ab5f27b5ae54e7dfc8b240aab08b524 /lispref/numbers.texi
parent3f876f207160b80150a10d98b9f50b8a08c44d98 (diff)
downloademacs-95d555b1857b5c6a3b0cf6806dfdbeaa483e4f3c.tar.gz
@ifinto -> @ifnottex.
Diffstat (limited to 'lispref/numbers.texi')
-rw-r--r--lispref/numbers.texi40
1 files changed, 20 insertions, 20 deletions
diff --git a/lispref/numbers.texi b/lispref/numbers.texi
index a3a57671739..eaa2250a3fd 100644
--- a/lispref/numbers.texi
+++ b/lispref/numbers.texi
@@ -37,16 +37,16 @@ exact; they have a fixed, limited amount of precision.
The range of values for an integer depends on the machine. The
minimum range is @minus{}134217728 to 134217727 (28 bits; i.e.,
-@ifinfo
+@ifnottex
-2**27
-@end ifinfo
+@end ifnottex
@tex
@math{-2^{27}}
@end tex
to
-@ifinfo
+@ifnottex
2**27 - 1),
-@end ifinfo
+@end ifnottex
@tex
@math{2^{27}-1}),
@end tex
@@ -959,16 +959,16 @@ in radians.
@defun asin arg
The value of @code{(asin @var{arg})} is a number between
-@ifinfo
+@ifnottex
@minus{}pi/2
-@end ifinfo
+@end ifnottex
@tex
@math{-\pi/2}
@end tex
and
-@ifinfo
+@ifnottex
pi/2
-@end ifinfo
+@end ifnottex
@tex
@math{\pi/2}
@end tex
@@ -978,9 +978,9 @@ is out of range (outside [-1, 1]), then the result is a NaN.
@defun acos arg
The value of @code{(acos @var{arg})} is a number between 0 and
-@ifinfo
+@ifnottex
pi
-@end ifinfo
+@end ifnottex
@tex
@math{\pi}
@end tex
@@ -990,16 +990,16 @@ is out of range (outside [-1, 1]), then the result is a NaN.
@defun atan arg
The value of @code{(atan @var{arg})} is a number between
-@ifinfo
+@ifnottex
@minus{}pi/2
-@end ifinfo
+@end ifnottex
@tex
@math{-\pi/2}
@end tex
and
-@ifinfo
+@ifnottex
pi/2
-@end ifinfo
+@end ifnottex
@tex
@math{\pi/2}
@end tex
@@ -1011,16 +1011,16 @@ This is the exponential function; it returns
@tex
@math{e}
@end tex
-@ifinfo
+@ifnottex
@i{e}
-@end ifinfo
+@end ifnottex
to the power @var{arg}.
@tex
@math{e}
@end tex
-@ifinfo
+@ifnottex
@i{e}
-@end ifinfo
+@end ifnottex
is a fundamental mathematical constant also called the base of natural
logarithms.
@end defun
@@ -1031,9 +1031,9 @@ If you don't specify @var{base}, the base
@tex
@math{e}
@end tex
-@ifinfo
+@ifnottex
@i{e}
-@end ifinfo
+@end ifnottex
is used. If @var{arg}
is negative, the result is a NaN.
@end defun