]> git.eshelyaron.com Git - emacs.git/commitdiff
(remove, remq): Fix typo.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 16 Oct 2002 06:28:20 +0000 (06:28 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 16 Oct 2002 06:28:20 +0000 (06:28 +0000)
lisp/subr.el

index eb09e39fb592872a22f68ae752ccb83e2e79adfe..4072c44c6c555b8030db947d7d4bdba8769b6e11 100644 (file)
@@ -153,7 +153,7 @@ If N is bigger than the length of X, return X."
           x))))
 
 (defun remove (elt seq)
-  "Return a copy of SEQ with all occurences of ELT removed.
+  "Return a copy of SEQ with all occurrences of ELT removed.
 SEQ must be a list, vector, or string.  The comparison is done with `equal'."
   (if (nlistp seq)
       ;; If SEQ isn't a list, there's no need to copy SEQ because
@@ -162,7 +162,7 @@ SEQ must be a list, vector, or string.  The comparison is done with `equal'."
     (delete elt (copy-sequence seq))))
 
 (defun remq (elt list)
-  "Return a copy of LIST with all occurences of ELT removed.
+  "Return a copy of LIST with all occurrences of ELT removed.
 The comparison is done with `eq'."
   (if (memq elt list)
       (delq elt (copy-sequence list))