aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorGlenn Morris2018-02-20 07:50:29 -0800
committerGlenn Morris2018-02-20 07:50:29 -0800
commit650febcd3ec1cfe0c686414c9c8f1a7caaeefe71 (patch)
tree534fc96cc86b769db3e2124b347b7be5e155d94d /doc/misc
parent3d42272754db914d4f2dbbcfba5ce6776a7b232b (diff)
parent226aca32a784c4edebdec6a16eb90930aae64c06 (diff)
downloademacs-650febcd3ec1cfe0c686414c9c8f1a7caaeefe71.tar.gz
emacs-650febcd3ec1cfe0c686414c9c8f1a7caaeefe71.zip
Merge from origin/emacs-26
226aca3 (origin/emacs-26) Fix documentation of 'flyspell-auto-correct... a8c8434 * doc/emacs/misc.texi (Saving Emacs Sessions): Fix markup. 275e735 More changes in the Emacs manuals d962be5 More fixes in the Emacs manual 6dc2846 * src/data.c (Faref): Fix a typo in the doc string. (Bug#30510) 36e729f Minor edit in tramp.texi 6537f99 ; Fix oversight from last commit eb94588 ; * doc/emacs/maintaining.texi: Fix two typos. 258135f More improvements in the Emacs manual f138bca Improve documentation of 'electric-pair-mode' f74ab96 ; Spelling and grammar fixes. 42f9dc4 ; * lisp/textmodes/flyspell.el (flyspell-auto-correct-word): ...
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/cl.texi7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi
index 709e9836c90..bf85b00e937 100644
--- a/doc/misc/cl.texi
+++ b/doc/misc/cl.texi
@@ -3124,12 +3124,11 @@ machines, but will fail if the machine's arithmetic is extremely
3124unusual, e.g., decimal. 3124unusual, e.g., decimal.
3125@end defun 3125@end defun
3126 3126
3127Since true Common Lisp supports up to four different floating-point 3127Since true Common Lisp supports up to four different kinds of floating-point
3128precisions, it has families of constants like 3128numbers, it has families of constants like
3129@code{most-positive-single-float}, @code{most-positive-double-float}, 3129@code{most-positive-single-float}, @code{most-positive-double-float},
3130@code{most-positive-long-float}, and so on. Emacs has only one 3130@code{most-positive-long-float}, and so on. Emacs has only one
3131floating-point precision, so this package omits the precision word 3131kind of floating-point number, so this package just uses single constants.
3132from the constants' names.
3133 3132
3134@defvar cl-most-positive-float 3133@defvar cl-most-positive-float
3135This constant equals the largest value a Lisp float can hold. 3134This constant equals the largest value a Lisp float can hold.