aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1997-04-10 20:42:25 +0000
committerKarl Heuer1997-04-10 20:42:25 +0000
commit488f0c646666a3ed9fe2524d53bc9360e2a97695 (patch)
tree52dde8d2151208c67f24b8074dca96706bb7d9a8 /src
parent1367ff3a1823421b0fbc015d137a5b46f7e5f11b (diff)
downloademacs-488f0c646666a3ed9fe2524d53bc9360e2a97695.tar.gz
emacs-488f0c646666a3ed9fe2524d53bc9360e2a97695.zip
(Fframe_or_buffer_changed_p): Use EQ, not ==.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c2
1 files changed, 1 insertions, 1 deletions
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")
1961 goto changed; 1961 goto changed;
1962 } 1962 }
1963 /* Detect deletion of a buffer at the end of the list. */ 1963 /* Detect deletion of a buffer at the end of the list. */
1964 if (*vecp == Qlambda) 1964 if (EQ (*vecp, Qlambda))
1965 return Qnil; 1965 return Qnil;
1966 changed: 1966 changed:
1967 /* Start with 1 so there is room for at least one lambda at the end. */ 1967 /* Start with 1 so there is room for at least one lambda at the end. */