diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 3 |
1 files changed, 2 insertions, 1 deletions
| @@ -644,7 +644,7 @@ to be sure of changing the value of `foo'.") | |||
| 644 | return list; | 644 | return list; |
| 645 | } | 645 | } |
| 646 | 646 | ||
| 647 | DEFUN ("delq", Fdelq, Sdelq, 2, 2, 0, | 647 | DEFUN ("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\ |
| 649 | The modified LIST is returned. Comparison is done with `equal'.\n\ | 649 | The modified LIST is returned. Comparison is done with `equal'.\n\ |
| 650 | If the first member of LIST is ELT, there is no way to remove it by side effect;\n\ | 650 | If 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); |