From: Karl Heuer Date: Thu, 10 Apr 1997 20:42:25 +0000 (+0000) Subject: (Fframe_or_buffer_changed_p): Use EQ, not ==. X-Git-Tag: emacs-20.1~2585 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=488f0c646666a3ed9fe2524d53bc9360e2a97695;p=emacs.git (Fframe_or_buffer_changed_p): Use EQ, not ==. --- 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. */