changeset 17360:3dd1b4cc865b

(Fframe_or_buffer_changed_p): Use EQ, not ==.
author Karl Heuer <kwzh@gnu.org>
date Thu, 10 Apr 1997 20:42:25 +0000
parents 13ebd090612a
children d3c4df8a1219
files src/dispnew.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/dispnew.c	Thu Apr 10 19:41:00 1997 +0000
+++ b/src/dispnew.c	Thu Apr 10 20:42:25 1997 +0000
@@ -1961,7 +1961,7 @@
 	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.  */