From: Dmitry Antipov Date: Fri, 10 Aug 2012 13:24:20 +0000 (+0400) Subject: Fix last change to allow compilation with low optimization levels. X-Git-Tag: emacs-24.2.90~738 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7961135cf7f9747dc89605abb81006c7c3dbb2c4;p=emacs.git Fix last change to allow compilation with low optimization levels. * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE. Reported by Jan Djärv . --- diff --git a/src/ChangeLog b/src/ChangeLog index f6874ff9c19..82b761a29c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2012-08-10 Dmitry Antipov + + Fix last change to allow compilation with low optimization levels. + * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE. + Reported by Jan Djärv . + 2012-08-10 Dmitry Antipov Use common inline syntax in intervals.h. diff --git a/src/intervals.c b/src/intervals.c index 15dd67d06cb..c3bcdb1ae62 100644 --- a/src/intervals.c +++ b/src/intervals.c @@ -38,6 +38,9 @@ along with GNU Emacs. If not, see . */ #include + +#define INTERVALS_INLINE EXTERN_INLINE + #include #include #include "lisp.h"