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/textprop.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/textprop.c')
| -rw-r--r-- | src/textprop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textprop.c b/src/textprop.c index 566b2962a63..350892cdad6 100644 --- a/src/textprop.c +++ b/src/textprop.c | |||
| @@ -248,7 +248,7 @@ interval_has_all_properties (Lisp_Object plist, INTERVAL i) | |||
| 248 | /* Return nonzero if the plist of interval I has any of the | 248 | /* Return nonzero if the plist of interval I has any of the |
| 249 | properties of PLIST, regardless of their values. */ | 249 | properties of PLIST, regardless of their values. */ |
| 250 | 250 | ||
| 251 | static INLINE int | 251 | static inline int |
| 252 | interval_has_some_properties (Lisp_Object plist, INTERVAL i) | 252 | interval_has_some_properties (Lisp_Object plist, INTERVAL i) |
| 253 | { | 253 | { |
| 254 | register Lisp_Object tail1, tail2, sym; | 254 | register Lisp_Object tail1, tail2, sym; |
| @@ -270,7 +270,7 @@ interval_has_some_properties (Lisp_Object plist, INTERVAL i) | |||
| 270 | /* Return nonzero if the plist of interval I has any of the | 270 | /* Return nonzero if the plist of interval I has any of the |
| 271 | property names in LIST, regardless of their values. */ | 271 | property names in LIST, regardless of their values. */ |
| 272 | 272 | ||
| 273 | static INLINE int | 273 | static inline int |
| 274 | interval_has_some_properties_list (Lisp_Object list, INTERVAL i) | 274 | interval_has_some_properties_list (Lisp_Object list, INTERVAL i) |
| 275 | { | 275 | { |
| 276 | register Lisp_Object tail1, tail2, sym; | 276 | register Lisp_Object tail1, tail2, sym; |
| @@ -499,7 +499,7 @@ remove_properties (Lisp_Object plist, Lisp_Object list, INTERVAL i, Lisp_Object | |||
| 499 | /* Remove all properties from interval I. Return non-zero | 499 | /* Remove all properties from interval I. Return non-zero |
| 500 | if this changes the interval. */ | 500 | if this changes the interval. */ |
| 501 | 501 | ||
| 502 | static INLINE int | 502 | static inline int |
| 503 | erase_properties (INTERVAL i) | 503 | erase_properties (INTERVAL i) |
| 504 | { | 504 | { |
| 505 | if (NILP (i->plist)) | 505 | if (NILP (i->plist)) |