From 488f0c646666a3ed9fe2524d53bc9360e2a97695 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 10 Apr 1997 20:42:25 +0000 Subject: [PATCH] (Fframe_or_buffer_changed_p): Use EQ, not ==. --- src/dispnew.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dispnew.c b/src/dispnew.c index eb046376144..691ea4be410 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -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. */ -- 2.39.5