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 /src/gmalloc.c | |
| 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 'src/gmalloc.c')
| -rw-r--r-- | src/gmalloc.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/gmalloc.c b/src/gmalloc.c index 5237432872d..a023d2d78e5 100644 --- a/src/gmalloc.c +++ b/src/gmalloc.c | |||
| @@ -552,12 +552,8 @@ get_contiguous_space (size, position) | |||
| 552 | /* This is called when `_heapinfo' and `heapsize' have just | 552 | /* This is called when `_heapinfo' and `heapsize' have just |
| 553 | been set to describe a new info table. Set up the table | 553 | been set to describe a new info table. Set up the table |
| 554 | to describe itself and account for it in the statistics. */ | 554 | to describe itself and account for it in the statistics. */ |
| 555 | static void register_heapinfo PP ((void)); | 555 | static inline void |
| 556 | #ifdef __GNUC__ | 556 | register_heapinfo (void) |
| 557 | __inline__ | ||
| 558 | #endif | ||
| 559 | static void | ||
| 560 | register_heapinfo () | ||
| 561 | { | 557 | { |
| 562 | __malloc_size_t block, blocks; | 558 | __malloc_size_t block, blocks; |
| 563 | 559 | ||
| @@ -2170,4 +2166,3 @@ mprobe (__ptr_t ptr) | |||
| 2170 | } | 2166 | } |
| 2171 | 2167 | ||
| 2172 | #endif /* GC_MCHECK */ | 2168 | #endif /* GC_MCHECK */ |
| 2173 | |||