diff options
| author | Ken Raeburn | 2002-07-15 06:57:04 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-15 06:57:04 +0000 |
| commit | 9056febe2cafcdbf2ed06da06bbcb14ba96667bc (patch) | |
| tree | c845720dae745a9e071311b62cc4a4242eba4aa2 /src/textprop.c | |
| parent | b13738b697be76a8409a2eb650cef1ba0832d255 (diff) | |
| download | emacs-9056febe2cafcdbf2ed06da06bbcb14ba96667bc.tar.gz emacs-9056febe2cafcdbf2ed06da06bbcb14ba96667bc.zip | |
* 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) | |||
| 1311 | if (! STRING_INTERVALS (object)) | 1311 | if (! STRING_INTERVALS (object)) |
| 1312 | return Qt; | 1312 | return Qt; |
| 1313 | 1313 | ||
| 1314 | STRING_INTERVALS (object) = 0; | 1314 | STRING_SET_INTERVALS (object, NULL_INTERVAL); |
| 1315 | return Qt; | 1315 | return Qt; |
| 1316 | } | 1316 | } |
| 1317 | 1317 | ||