]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fframe_or_buffer_changed_p): Use EQ, not ==.
authorKarl Heuer <kwzh@gnu.org>
Thu, 10 Apr 1997 20:42:25 +0000 (20:42 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 10 Apr 1997 20:42:25 +0000 (20:42 +0000)
src/dispnew.c

index eb046376144830b23e24a4734fe3c4214435244e..691ea4be410719d72a7e2c3f09d2ac11d5534a05 100644 (file)
@@ -1961,7 +1961,7 @@ the current state.\n")
        goto changed;
     }
   /* Detect deletion of a buffer at the end of the list.  */
-  if (*vecp == Qlambda)
+  if (EQ (*vecp, Qlambda))
     return Qnil;
  changed:
   /* Start with 1 so there is room for at least one lambda at the end.  */