aboutsummaryrefslogtreecommitdiffstats
path: root/src/image.c
diff options
context:
space:
mode:
authorPaul Eggert2011-05-30 22:34:40 -0700
committerPaul Eggert2011-05-30 22:34:40 -0700
commiteefc9486e823512a4c1928b6264c5a1ce9142624 (patch)
tree9a461071564c5a60a2531fc056bda525101bd2e0 /src/image.c
parent738db17859465a4adaaf1d43bbb1d1eed307e712 (diff)
parentaa1a7eb834c4671e3c49a97d72ca7e03f2a840a2 (diff)
downloademacs-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/image.c')
-rw-r--r--src/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c
index 3e15ee95758..0f269f46492 100644
--- a/src/image.c
+++ b/src/image.c
@@ -623,7 +623,7 @@ define_image_type (struct image_type *type, int loaded)
623/* Look up image type SYMBOL, and return a pointer to its image_type 623/* Look up image type SYMBOL, and return a pointer to its image_type
624 structure. Value is null if SYMBOL is not a known image type. */ 624 structure. Value is null if SYMBOL is not a known image type. */
625 625
626static INLINE struct image_type * 626static inline struct image_type *
627lookup_image_type (Lisp_Object symbol) 627lookup_image_type (Lisp_Object symbol)
628{ 628{
629 struct image_type *type; 629 struct image_type *type;