diff options
| author | Jim Blandy | 1993-07-06 02:23:22 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-07-06 02:23:22 +0000 |
| commit | 734c51b2dd0d010be568ce950c62d2aea883bb8c (patch) | |
| tree | 3c9a049c67383065aa96dbb431d823fe9fe4374d /src/intervals.c | |
| parent | 657070acda0f1897d0f4768ec621b8831ca9840a (diff) | |
| download | emacs-734c51b2dd0d010be568ce950c62d2aea883bb8c.tar.gz emacs-734c51b2dd0d010be568ce950c62d2aea883bb8c.zip | |
Compare the values of text properties using EQ, not Fequal.
* intervals.c (intervals_equal): Call EQ, not Fequal.
* textprop.c (interval_has_all_properties, add_properties): Same.
Diffstat (limited to 'src/intervals.c')
| -rw-r--r-- | src/intervals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intervals.c b/src/intervals.c index 1e57fd15632..81bf0b123ad 100644 --- a/src/intervals.c +++ b/src/intervals.c | |||
| @@ -159,7 +159,7 @@ intervals_equal (i0, i1) | |||
| 159 | 159 | ||
| 160 | /* i0 and i1 both have sym, but it has different values in each */ | 160 | /* i0 and i1 both have sym, but it has different values in each */ |
| 161 | i0_cdr = Fcdr (i0_cdr); | 161 | i0_cdr = Fcdr (i0_cdr); |
| 162 | if (NILP (Fequal (i1_val, Fcar (i0_cdr)))) | 162 | if (! EQ (i1_val, Fcar (i0_cdr))) |
| 163 | return 0; | 163 | return 0; |
| 164 | 164 | ||
| 165 | i0_cdr = Fcdr (i0_cdr); | 165 | i0_cdr = Fcdr (i0_cdr); |