aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Antipov2012-08-10 17:24:20 +0400
committerDmitry Antipov2012-08-10 17:24:20 +0400
commit7961135cf7f9747dc89605abb81006c7c3dbb2c4 (patch)
tree50c5f323a0ca44720eae14e9a25f5da0617846f8
parentc69f56a207451f7f874877d02a44d4e4e6353b03 (diff)
downloademacs-7961135cf7f9747dc89605abb81006c7c3dbb2c4.tar.gz
emacs-7961135cf7f9747dc89605abb81006c7c3dbb2c4.zip
Fix last change to allow compilation with low optimization levels.
* intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE. Reported by Jan Djärv <jan.h.d@swipnet.se>.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/intervals.c3
2 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f6874ff9c19..82b761a29c0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12012-08-10 Dmitry Antipov <dmantipov@yandex.ru> 12012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2 2
3 Fix last change to allow compilation with low optimization levels.
4 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
5 Reported by Jan Djärv <jan.h.d@swipnet.se>.
6
72012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8
3 Use common inline syntax in intervals.h. 9 Use common inline syntax in intervals.h.
4 * intervals.h (INTERVALS_INLINE): New macro. 10 * intervals.h (INTERVALS_INLINE): New macro.
5 Change all users from LISP_INLINE. 11 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 <http://www.gnu.org/licenses/>. */
38 38
39 39
40#include <config.h> 40#include <config.h>
41
42#define INTERVALS_INLINE EXTERN_INLINE
43
41#include <setjmp.h> 44#include <setjmp.h>
42#include <intprops.h> 45#include <intprops.h>
43#include "lisp.h" 46#include "lisp.h"