diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-05-28 15:39:39 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-05-28 15:39:39 -0700 |
commit | 55d4c1b248e84d347ae73278faff623741f52691 (patch) | |
tree | abc6d768607b08bbf51eeb7a12cb693c4660db13 /src/intervals.c | |
parent | 4ac619f07bc6d7560a04f5aa505c6ef084975d93 (diff) | |
download | emacs-55d4c1b248e84d347ae73278faff623741f52691.tar.gz |
[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/intervals.c')
-rw-r--r-- | src/intervals.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/intervals.c b/src/intervals.c index e72bc146d16..f9e9c864e13 100644 --- a/src/intervals.c +++ b/src/intervals.c @@ -313,7 +313,7 @@ root_interval (interval) c c */ -static INLINE INTERVAL +static inline INTERVAL rotate_right (INTERVAL interval) { INTERVAL i; @@ -360,7 +360,7 @@ rotate_right (INTERVAL interval) c c */ -static INLINE INTERVAL +static inline INTERVAL rotate_left (INTERVAL interval) { INTERVAL i; @@ -438,7 +438,7 @@ balance_an_interval (INTERVAL i) /* Balance INTERVAL, potentially stuffing it back into its parent Lisp Object. */ -static INLINE INTERVAL +static inline INTERVAL balance_possible_root_interval (register INTERVAL interval) { Lisp_Object parent; @@ -1427,7 +1427,7 @@ adjust_intervals_for_deletion (struct buffer *buffer, at position START. Addition or deletion is indicated by the sign of LENGTH. */ -INLINE void +inline void offset_intervals (struct buffer *buffer, EMACS_INT start, EMACS_INT length) { if (NULL_INTERVAL_P (BUF_INTERVALS (buffer)) || length == 0) @@ -1883,7 +1883,7 @@ lookup_char_property (Lisp_Object plist, register Lisp_Object prop, int textprop /* Set point in BUFFER "temporarily" to CHARPOS, which corresponds to byte position BYTEPOS. */ -INLINE void +inline void temp_set_point_both (struct buffer *buffer, EMACS_INT charpos, EMACS_INT bytepos) { @@ -1903,7 +1903,7 @@ temp_set_point_both (struct buffer *buffer, /* Set point "temporarily", without checking any text properties. */ -INLINE void +inline void temp_set_point (struct buffer *buffer, EMACS_INT charpos) { temp_set_point_both (buffer, charpos, @@ -2392,7 +2392,7 @@ copy_intervals (INTERVAL tree, EMACS_INT start, EMACS_INT length) /* Give STRING the properties of BUFFER from POSITION to LENGTH. */ -INLINE void +inline void copy_intervals_to_string (Lisp_Object string, struct buffer *buffer, EMACS_INT position, EMACS_INT length) { |