diff options
| author | Paul Eggert | 2011-05-28 15:39:39 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-05-28 15:39:39 -0700 |
| commit | 55d4c1b248e84d347ae73278faff623741f52691 (patch) | |
| tree | abc6d768607b08bbf51eeb7a12cb693c4660db13 /nt | |
| parent | 4ac619f07bc6d7560a04f5aa505c6ef084975d93 (diff) | |
| download | emacs-55d4c1b248e84d347ae73278faff623741f52691.tar.gz emacs-55d4c1b248e84d347ae73278faff623741f52691.zip | |
[ChangeLog]
Use 'inline', not 'INLINE'.
* configure.in, autogen/config.in (INLINE): Remove.
[lib-src/ChangeLog]
Use 'inline', not 'INLINE'.
* etags.c (hash): Now inline unconditionally.
* make-docfile.c (put_char): inline, not INLINE.
[nt/ChangeLog]
Use 'inline', not 'INLINE'.
* config.nt (INLINE): Remove.
[src/ChangeLog]
Use 'inline', not 'INLINE'.
* alloc.c, fontset.c (INLINE): Remove.
* alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
* intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
* xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
* gmalloc.c (register_heapinfo): Use inline unconditionally.
* lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
Diffstat (limited to 'nt')
| -rw-r--r-- | nt/ChangeLog | 5 | ||||
| -rw-r--r-- | nt/config.nt | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 7198ba767cb..1503f6d1097 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-05-28 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Use 'inline', not 'INLINE'. | ||
| 4 | * config.nt (INLINE): Remove. | ||
| 5 | |||
| 1 | 2011-05-17 Eli Zaretskii <eliz@gnu.org> | 6 | 2011-05-17 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * README.W32: Add information about GnuTLS libraries. | 8 | * README.W32: Add information about GnuTLS libraries. |
diff --git a/nt/config.nt b/nt/config.nt index c071bafc7dc..2ba76df4446 100644 --- a/nt/config.nt +++ b/nt/config.nt | |||
| @@ -362,14 +362,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 362 | 362 | ||
| 363 | /* End of gnulib-related stuff. */ | 363 | /* End of gnulib-related stuff. */ |
| 364 | 364 | ||
| 365 | /* If using GNU, then support inline function declarations. */ | ||
| 366 | #ifdef __GNUC__ | ||
| 367 | #define INLINE __inline__ | ||
| 368 | #define inline __inline__ | ||
| 369 | #else | ||
| 370 | #define INLINE | ||
| 371 | #endif | ||
| 372 | |||
| 373 | #if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */ | 365 | #if __GNUC__ >= 3 /* On GCC 3.0 we might get a warning. */ |
| 374 | #define NO_INLINE __attribute__((noinline)) | 366 | #define NO_INLINE __attribute__((noinline)) |
| 375 | #else | 367 | #else |