summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1997-04-10 20:42:25 +0000
committerKarl Heuer <kwzh@gnu.org>1997-04-10 20:42:25 +0000
commit1506427d2d559c238ff23c450ea42c58543c1760 (patch)
tree3e7acb85005ffdf6ff556be225006a1ee8106d0a /src
parentde3b1b7061a42fd8805662c4cc3ea27bcc361bfe (diff)
downloademacs-1506427d2d559c238ff23c450ea42c58543c1760.tar.gz
(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")
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. */