From 7961135cf7f9747dc89605abb81006c7c3dbb2c4 Mon Sep 17 00:00:00 2001 From: Dmitry Antipov Date: Fri, 10 Aug 2012 17:24:20 +0400 Subject: [PATCH] =?utf8?q?Fix=20last=20change=20to=20allow=20compilation?= =?utf8?q?=20with=20low=20optimization=20levels.=20*=20intervals.c=20(INTE?= =?utf8?q?RVALS=5FINLINE):=20Define=20to=20EXTERN=5FINLINE.=20Reported=20b?= =?utf8?q?y=20Jan=20Dj=C3=A4rv=20.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/ChangeLog | 6 ++++++ src/intervals.c | 3 +++ 2 files changed, 9 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index f6874ff9c19..82b761a29c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,11 @@ 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. * intervals.h (INTERVALS_INLINE): New macro. Change all users from LISP_INLINE. 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" -- 2.11.4.GIT