changeset 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 13034314ea4c
children 1137a24ee515
files src/editfns.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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);