aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1991-09-26 06:39:41 +0000
committerJim Blandy1991-09-26 06:39:41 +0000
commitca8dd5468e90b0dad7a1d4fd0bf9da828e9d1149 (patch)
treee499ccf7718fb7852186d92fbfbe0f5f6add6a36 /src
parenta10097faff25cab7c752a53267ffb4c80adc4abc (diff)
downloademacs-ca8dd5468e90b0dad7a1d4fd0bf9da828e9d1149.tar.gz
emacs-ca8dd5468e90b0dad7a1d4fd0bf9da828e9d1149.zip
*** empty log message ***
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 d6abca525db..ca6854b2912 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -644,7 +644,7 @@ to be sure of changing the value of `foo'.")
644 return list; 644 return list;
645} 645}
646 646
647DEFUN ("delq", Fdelq, Sdelq, 2, 2, 0, 647DEFUN ("delete", Fdelete, Sdelete, 2, 2, 0,
648 "Delete by side effect any occurrences of ELT as a member of LIST.\n\ 648 "Delete by side effect any occurrences of ELT as a member of LIST.\n\
649The modified LIST is returned. Comparison is done with `equal'.\n\ 649The modified LIST is returned. Comparison is done with `equal'.\n\
650If the first member of LIST is ELT, there is no way to remove it by side effect;\n\ 650If the first member of LIST is ELT, there is no way to remove it by side effect;\n\
@@ -1491,6 +1491,7 @@ Used by `featurep' and `require', and altered by `provide'.");
1491 defsubr (&Sassoc); 1491 defsubr (&Sassoc);
1492 defsubr (&Srassq); 1492 defsubr (&Srassq);
1493 defsubr (&Sdelq); 1493 defsubr (&Sdelq);
1494 defsubr (&Sdelete);
1494 defsubr (&Snreverse); 1495 defsubr (&Snreverse);
1495 defsubr (&Sreverse); 1496 defsubr (&Sreverse);
1496 defsubr (&Ssort); 1497 defsubr (&Ssort);