Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f812877e
Commit
f812877e
authored
Oct 31, 1992
by
Jim Blandy
Browse files
* fns.c: #include keyboard.h.
(Fdelete): Check if Fequal returns Qnil, not zero.
parent
1cee2045
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/fns.c
src/fns.c
+2
-1
No files found.
src/fns.c
View file @
f812877e
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment