aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-25 05:05:16 +0000
committerRichard M. Stallman2002-01-25 05:05:16 +0000
commit963f49a2b2bc07bd84969ee1b67892d6d4a3d991 (patch)
tree30117f384a2ccde4c7f5e5cbbe8339704a220d8f
parent9ade4a7d038fa400170a7d75e427b7f9cc3d674e (diff)
downloademacs-963f49a2b2bc07bd84969ee1b67892d6d4a3d991.tar.gz
emacs-963f49a2b2bc07bd84969ee1b67892d6d4a3d991.zip
(remove): Doc fix.
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index ed9ea9af81c..4b33973afd4 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -155,7 +155,7 @@ If N is bigger than the length of X, return X."
155 x)))) 155 x))))
156 156
157(defun remove (elt seq) 157(defun remove (elt seq)
158 "Return a copy of SEQ with all occurences of ELT removed. 158 "Return a copy of SEQ with all occurrences of ELT removed.
159SEQ must be a list, vector, or string. The comparison is done with `equal'." 159SEQ must be a list, vector, or string. The comparison is done with `equal'."
160 (if (nlistp seq) 160 (if (nlistp seq)
161 ;; If SEQ isn't a list, there's no need to copy SEQ because 161 ;; If SEQ isn't a list, there's no need to copy SEQ because