aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/internals.texi7
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index f1f2ea215a5..72066d34f44 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -2662,13 +2662,10 @@ signed, unless this assumption is known to be safe. For example,
2662although @code{off_t} is always signed, @code{time_t} need not be. 2662although @code{off_t} is always signed, @code{time_t} need not be.
2663 2663
2664@item 2664@item
2665Prefer the Emacs-defined type @code{printmax_t} for representing
2666values that might be any signed integer that can be printed,
2667using a @code{printf}-family function.
2668
2669@item
2670Prefer @code{intmax_t} for representing values that might be any 2665Prefer @code{intmax_t} for representing values that might be any
2671signed integer value. 2666signed integer value.
2667A @code{printf}-family function can print such a value
2668via a format like @code{"%"PRIdMAX}.
2672 2669
2673@item 2670@item
2674Prefer @code{bool}, @code{false} and @code{true} for booleans. 2671Prefer @code{bool}, @code{false} and @code{true} for booleans.