diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-04-10 20:42:25 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-04-10 20:42:25 +0000 |
commit | 1506427d2d559c238ff23c450ea42c58543c1760 (patch) | |
tree | 3e7acb85005ffdf6ff556be225006a1ee8106d0a /src | |
parent | de3b1b7061a42fd8805662c4cc3ea27bcc361bfe (diff) | |
download | emacs-1506427d2d559c238ff23c450ea42c58543c1760.tar.gz |
(Fframe_or_buffer_changed_p): Use EQ, not ==.
Diffstat (limited to 'src')
-rw-r--r-- | src/dispnew.c | 2 |
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. */ |