Mercurial > emacs
changeset 1513:7381accd610d
* fns.c: #include keyboard.h.
(Fdelete): Check if Fequal returns Qnil, not zero.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 31 Oct 1992 05:20:23 +0000 |
parents | bef6b6903528 |
children | ceaecac6bf2e |
files | src/fns.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fns.c Sat Oct 31 05:19:58 1992 +0000 +++ b/src/fns.c Sat Oct 31 05:20:23 1992 +0000 @@ -29,6 +29,7 @@ #include "commands.h" #include "buffer.h" +#include "keyboard.h" Lisp_Object Qstring_lessp; @@ -620,7 +621,7 @@ while (!NILP (tail)) { tem = Fcar (tail); - if (Fequal (elt, tem)) + if (! NILP (Fequal (elt, tem))) { if (NILP (prev)) list = Fcdr (tail);