summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-10-31 05:20:23 +0000
committerJim Blandy <jimb@redhat.com>1992-10-31 05:20:23 +0000
commitf812877e01e566968023b03831dd7a461acbe80e (patch)
tree44b35c49169055a0bb5ca050fc4e94c27e4c7b3f /src/fns.c
parent1cee2045653f1a3c01dfad523ea66bdca7f82a12 (diff)
downloademacs-f812877e01e566968023b03831dd7a461acbe80e.tar.gz
* fns.c: #include keyboard.h.
(Fdelete): Check if Fequal returns Qnil, not zero.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 0bcf414179b..6eb97d4683a 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -29,6 +29,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "commands.h"
#include "buffer.h"
+#include "keyboard.h"
Lisp_Object Qstring_lessp;
@@ -620,7 +621,7 @@ to be sure of changing the value of `foo'.")
while (!NILP (tail))
{
tem = Fcar (tail);
- if (Fequal (elt, tem))
+ if (! NILP (Fequal (elt, tem)))
{
if (NILP (prev))
list = Fcdr (tail);