comparison src/fns.c @ 414:4c9349866dac

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Thu, 26 Sep 1991 06:39:41 +0000
parents 24b63d6679b6
children 8c615e453683
comparison
equal deleted inserted replaced
413:50ee23d51f15 414:4c9349866dac
642 QUIT; 642 QUIT;
643 } 643 }
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\
651 therefore, write `(setq foo (delete element foo))'\n\ 651 therefore, write `(setq foo (delete element foo))'\n\
652 to be sure of changing the value of `foo'.") 652 to be sure of changing the value of `foo'.")
1489 defsubr (&Smemq); 1489 defsubr (&Smemq);
1490 defsubr (&Sassq); 1490 defsubr (&Sassq);
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);
1497 defsubr (&Sget); 1498 defsubr (&Sget);
1498 defsubr (&Sput); 1499 defsubr (&Sput);