diff options
| author | Paul Eggert | 2011-05-30 22:34:40 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-05-30 22:34:40 -0700 |
| commit | eefc9486e823512a4c1928b6264c5a1ce9142624 (patch) | |
| tree | 9a461071564c5a60a2531fc056bda525101bd2e0 /src/process.c | |
| parent | 738db17859465a4adaaf1d43bbb1d1eed307e712 (diff) | |
| parent | aa1a7eb834c4671e3c49a97d72ca7e03f2a840a2 (diff) | |
| download | emacs-eefc9486e823512a4c1928b6264c5a1ce9142624.tar.gz emacs-eefc9486e823512a4c1928b6264c5a1ce9142624.zip | |
Use 'inline', not 'INLINE'.
[ChangeLog]
* configure.in (INLINE): Remove.
[lib-src/ChangeLog]
* etags.c (hash): Now inline unconditionally.
* make-docfile.c (put_char): inline, not INLINE.
[nt/ChangeLog]
* config.nt (INLINE): Remove.
[src/ChangeLog]
<http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
* 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/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 8a94b3e6047..51deb1c933f 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4162,7 +4162,7 @@ wait_reading_process_output_1 (void) | |||
| 4162 | impossible to step through wait_reading_process_output. */ | 4162 | impossible to step through wait_reading_process_output. */ |
| 4163 | 4163 | ||
| 4164 | #ifndef select | 4164 | #ifndef select |
| 4165 | static INLINE int | 4165 | static inline int |
| 4166 | select_wrapper (int n, fd_set *rfd, fd_set *wfd, fd_set *xfd, struct timeval *tmo) | 4166 | select_wrapper (int n, fd_set *rfd, fd_set *wfd, fd_set *xfd, struct timeval *tmo) |
| 4167 | { | 4167 | { |
| 4168 | return select (n, rfd, wfd, xfd, tmo); | 4168 | return select (n, rfd, wfd, xfd, tmo); |