diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-12-21 20:03:09 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-12-21 20:04:01 -0800 |
commit | 4dc78f64787d159667e81b29543445bc8ca40bbc (patch) | |
tree | cc2325a29e50c674a277c75331f011c6bb6d52aa /src | |
parent | 455e54691f2e95ff1ec1e3e81f3e271775269af2 (diff) | |
download | emacs-4dc78f64787d159667e81b29543445bc8ca40bbc.tar.gz |
Remove obsolete references to pre-C99 builds
* doc/lispref/internals.texi (C Integer Types):
Don't mention pre-C99 compilers.
Diffstat (limited to 'src')
-rw-r--r-- | src/conf_post.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_post.h b/src/conf_post.h index 8667e2554cd..90f4c6e8382 100644 --- a/src/conf_post.h +++ b/src/conf_post.h @@ -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 |