From: Miles Bader Date: Fri, 18 Aug 2000 03:07:07 +0000 (+0000) Subject: (Lisp_String): Replace DECLARE_INTERVALS with real decl. X-Git-Tag: emacs-pretest-21.0.90~2191 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4618074a71d30b991896a62e1ce5cbbba3baeb74;p=emacs.git (Lisp_String): Replace DECLARE_INTERVALS with real decl. --- 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; };