diff options
| author | Jim Blandy | 1992-10-31 05:20:23 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-10-31 05:20:23 +0000 |
| commit | f812877e01e566968023b03831dd7a461acbe80e (patch) | |
| tree | 44b35c49169055a0bb5ca050fc4e94c27e4c7b3f /src | |
| parent | 1cee2045653f1a3c01dfad523ea66bdca7f82a12 (diff) | |
| download | emacs-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -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 | ||
| 33 | Lisp_Object Qstring_lessp; | 34 | Lisp_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); |