aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-10-31 05:20:23 +0000
committerJim Blandy1992-10-31 05:20:23 +0000
commitf812877e01e566968023b03831dd7a461acbe80e (patch)
tree44b35c49169055a0bb5ca050fc4e94c27e4c7b3f /src
parent1cee2045653f1a3c01dfad523ea66bdca7f82a12 (diff)
downloademacs-f812877e01e566968023b03831dd7a461acbe80e.tar.gz
emacs-f812877e01e566968023b03831dd7a461acbe80e.zip
* fns.c: #include keyboard.h.
(Fdelete): Check if Fequal returns Qnil, not zero.
Diffstat (limited to 'src')
-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. */
29#include "commands.h" 29#include "commands.h"
30 30
31#include "buffer.h" 31#include "buffer.h"
32#include "keyboard.h"
32 33
33Lisp_Object Qstring_lessp; 34Lisp_Object Qstring_lessp;
34 35
@@ -620,7 +621,7 @@ to be sure of changing the value of `foo'.")
620 while (!NILP (tail)) 621 while (!NILP (tail))
621 { 622 {
622 tem = Fcar (tail); 623 tem = Fcar (tail);
623 if (Fequal (elt, tem)) 624 if (! NILP (Fequal (elt, tem)))
624 { 625 {
625 if (NILP (prev)) 626 if (NILP (prev))
626 list = Fcdr (tail); 627 list = Fcdr (tail);