aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorDmitry Antipov2012-08-08 14:23:04 +0400
committerDmitry Antipov2012-08-08 14:23:04 +0400
commitad8c997f72c95b7351eab4c8ea2ac8c667545e6f (patch)
tree95f6da158be105a5a83a31c087764ce1d7eb7944 /src/alloc.c
parentce0fcefa27728a4e83e10962075c388c8a6da87a (diff)
downloademacs-ad8c997f72c95b7351eab4c8ea2ac8c667545e6f.tar.gz
emacs-ad8c997f72c95b7351eab4c8ea2ac8c667545e6f.zip
Inline functions to examine and change string intervals.
* lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove. (string_get_intervals, string_set_intervals): New function. * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c: * lread.c, print.c, textprop.c: Adjust users.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index d342a722ca6..95309f076d4 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6102,7 +6102,7 @@ mark_object (Lisp_Object arg)
6102 } 6102 }
6103 if (!PURE_POINTER_P (XSTRING (ptr->name))) 6103 if (!PURE_POINTER_P (XSTRING (ptr->name)))
6104 MARK_STRING (XSTRING (ptr->name)); 6104 MARK_STRING (XSTRING (ptr->name));
6105 MARK_INTERVAL_TREE (STRING_INTERVALS (ptr->name)); 6105 MARK_INTERVAL_TREE (string_get_intervals (ptr->name));
6106 6106
6107 ptr = ptr->next; 6107 ptr = ptr->next;
6108 if (ptr) 6108 if (ptr)