aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorPaul Eggert2014-12-21 20:03:09 -0800
committerPaul Eggert2014-12-21 20:04:01 -0800
commit4dc78f64787d159667e81b29543445bc8ca40bbc (patch)
treecc2325a29e50c674a277c75331f011c6bb6d52aa /doc
parent455e54691f2e95ff1ec1e3e81f3e271775269af2 (diff)
downloademacs-4dc78f64787d159667e81b29543445bc8ca40bbc.tar.gz
emacs-4dc78f64787d159667e81b29543445bc8ca40bbc.zip
Remove obsolete references to pre-C99 builds
* doc/lispref/internals.texi (C Integer Types): Don't mention pre-C99 compilers.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/internals.texi3
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 5b3750697c8..3621c563d79 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
12014-12-22 Paul Eggert <eggert@cs.ucla.edu>
2
3 Remove obsolete references to pre-C99 builds
4 * internals.texi (C Integer Types): Don't mention pre-C99 compilers.
5
12014-12-19 Martin Rudalics <rudalics@gmx.at> 62014-12-19 Martin Rudalics <rudalics@gmx.at>
2 7
3 * windows.texi (Resizing Windows): Describe new argument of 8 * windows.texi (Resizing Windows): Describe new argument of
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi
index db6ed41268c..092ec003fb5 100644
--- a/doc/lispref/internals.texi
+++ b/doc/lispref/internals.texi
@@ -1684,8 +1684,7 @@ using @code{int}. Although it is also OK to use @code{int}, @code{0}
1684and @code{1}, this older style is gradually being phased out. When 1684and @code{1}, this older style is gradually being phased out. When
1685using @code{bool}, respect the limitations of the replacement 1685using @code{bool}, respect the limitations of the replacement
1686implementation of @code{bool}, as documented in the source file 1686implementation of @code{bool}, as documented in the source file
1687@file{lib/stdbool.in.h}, so that Emacs remains portable to pre-C99 1687@file{lib/stdbool.in.h}. In particular, boolean bitfields should be of type
1688platforms. In particular, boolean bitfields should be of type
1689@code{bool_bf}, not @code{bool}, so that they work correctly even when 1688@code{bool_bf}, not @code{bool}, so that they work correctly even when
1690compiling Objective C with standard GCC. 1689compiling Objective C with standard GCC.
1691 1690