From 4618074a71d30b991896a62e1ce5cbbba3baeb74 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Fri, 18 Aug 2000 03:07:07 +0000 Subject: [PATCH] (Lisp_String): Replace DECLARE_INTERVALS with real decl. --- src/ChangeLog | 2 ++ src/lisp.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 199735dae9c..7972f776cba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2000-08-18 Miles Bader + * lisp.h (Lisp_String): Replace DECLARE_INTERVALS with real decl. + * editfns.c (save_restriction_save): Rewrite to use markers. (save_restriction_restore): Rewrite to understand new form of data saved by save_restriction_save. diff --git a/src/lisp.h b/src/lisp.h index 62ead3e4d36..f79e211f655 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -623,7 +623,7 @@ struct Lisp_String { EMACS_INT size; EMACS_INT size_byte; - DECLARE_INTERVALS /* `data' field must be last. */ + INTERVAL intervals; /* text properties in this string */ unsigned char *data; }; -- 2.39.2