Mercurial > emacs
diff src/editfns.c @ 30677:9193f208ef24
(find_field): Use EQ, not ==, to compare lisp objects.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Tue, 08 Aug 2000 14:38:09 +0000 |
parents | 438ad5366a03 |
children | 35428eaf59e3 |
line wrap: on
line diff
--- a/src/editfns.c Tue Aug 08 14:37:26 2000 +0000 +++ b/src/editfns.c Tue Aug 08 14:38:09 2000 +0000 @@ -440,7 +440,7 @@ else /* Find the previous field boundary. */ { - if (!NILP (merge_at_boundary) && before_field == Qboundary) + if (!NILP (merge_at_boundary) && EQ (before_field, Qboundary)) /* Skip a `boundary' field. */ pos = Fprevious_single_char_property_change (pos, Qfield, Qnil,Qnil); @@ -456,7 +456,7 @@ else /* Find the next field boundary. */ { - if (!NILP (merge_at_boundary) && after_field == Qboundary) + if (!NILP (merge_at_boundary) && EQ (after_field, Qboundary)) /* Skip a `boundary' field. */ pos = Fnext_single_char_property_change (pos, Qfield, Qnil, Qnil);