summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2000-08-18 03:07:07 +0000
committerMiles Bader <miles@gnu.org>2000-08-18 03:07:07 +0000
commit4618074a71d30b991896a62e1ce5cbbba3baeb74 (patch)
tree06ee2914ddc0fd58124fee8b915b3388fb6d08f0
parent85c7553632524a7ad549b83bb942111803dde9f4 (diff)
downloademacs-4618074a71d30b991896a62e1ce5cbbba3baeb74.tar.gz
(Lisp_String): Replace DECLARE_INTERVALS with real decl.
-rw-r--r--src/ChangeLog2
-rw-r--r--src/lisp.h2
2 files changed, 3 insertions, 1 deletions
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 <miles@gnu.org>
+ * 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;
};