]> code.delx.au - gnu-emacs/commitdiff
Remove obsolete references to pre-C99 builds
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 22 Dec 2014 04:03:09 +0000 (20:03 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 22 Dec 2014 04:04:01 +0000 (20:04 -0800)
* doc/lispref/internals.texi (C Integer Types):
Don't mention pre-C99 compilers.

doc/lispref/ChangeLog
doc/lispref/internals.texi
src/conf_post.h

index 5b3750697c824411bdc8543b07c1792013c24ccf..3621c563d79bb5b7441814070d1dd37f75c0ec43 100644 (file)
@@ -1,3 +1,8 @@
+2014-12-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Remove obsolete references to pre-C99 builds
+       * internals.texi (C Integer Types): Don't mention pre-C99 compilers.
+
 2014-12-19  Martin Rudalics  <rudalics@gmx.at>
 
        * windows.texi (Resizing Windows): Describe new argument of
index db6ed41268c071397d806895f8f0fcd4e66436c5..092ec003fb513a0e25ea457df1e8587b19004163 100644 (file)
@@ -1684,8 +1684,7 @@ using @code{int}.  Although it is also OK to use @code{int}, @code{0}
 and @code{1}, this older style is gradually being phased out.  When
 using @code{bool}, respect the limitations of the replacement
 implementation of @code{bool}, as documented in the source file
-@file{lib/stdbool.in.h}, so that Emacs remains portable to pre-C99
-platforms.  In particular, boolean bitfields should be of type
+@file{lib/stdbool.in.h}.  In particular, boolean bitfields should be of type
 @code{bool_bf}, not @code{bool}, so that they work correctly even when
 compiling Objective C with standard GCC.
 
index 8667e2554cdb9f2c470335af3b7450e926c15a29..90f4c6e83822233f1c13db17c2df9cf0f114e9c4 100644 (file)
@@ -309,8 +309,8 @@ extern void _DebPrint (const char *fmt, ...);
    Other .c files should not define INLINE.
 
    C99 compilers compile functions like 'incr' as C99-style extern
-   inline functions.  Pre-C99 GCCs do something similar with
-   GNU-specific keywords.  Pre-C99 non-GCC compilers use static
+   inline functions.  Buggy GCC implementations do something similar with
+   GNU-specific keywords.  Buggy non-GCC compilers use static
    functions, which bloats the code but is good enough.  */
 
 #ifndef INLINE