diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2002-07-15 06:57:04 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2002-07-15 06:57:04 +0000 |
commit | 9056febe2cafcdbf2ed06da06bbcb14ba96667bc (patch) | |
tree | c845720dae745a9e071311b62cc4a4242eba4aa2 /src/textprop.c | |
parent | b13738b697be76a8409a2eb650cef1ba0832d255 (diff) | |
download | emacs-9056febe2cafcdbf2ed06da06bbcb14ba96667bc.tar.gz |
* textprop.c (set_text_properties): Use STRING_SET_INTERVALS.
Diffstat (limited to 'src/textprop.c')
-rw-r--r-- | src/textprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textprop.c b/src/textprop.c index bf23f6a34aa..62e9446426e 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -1311,7 +1311,7 @@ set_text_properties (start, end, properties, object, signal_after_change_p) if (! STRING_INTERVALS (object)) return Qt; - STRING_INTERVALS (object) = 0; + STRING_SET_INTERVALS (object, NULL_INTERVAL); return Qt; } |