]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/subr.el (remq): Revert 2014-08-25 doc change (not always true).
authorGlenn Morris <rgm@gnu.org>
Thu, 28 Aug 2014 01:55:45 +0000 (18:55 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 28 Aug 2014 01:55:45 +0000 (18:55 -0700)
See the interminable bug discussion if you have nothing better to do.

lisp/ChangeLog
lisp/subr.el

index 8f23c01de43f1bbb21a7d7c12f599b0330120394..b2674b3b6af1f4c59902068e611cb36799c0d934 100644 (file)
@@ -1,3 +1,7 @@
+2014-08-28  Glenn Morris  <rgm@gnu.org>
+
+       * subr.el (remq): Revert 2014-08-25 doc change (not always true).
+
 2014-08-27  Dmitry Antipov  <dmantipov@yandex.ru>
 
        * startup.el (normal-top-level): Now use internal--top-level-message.
index 2f2aea9d8a3a466c91db7c302d4949e781d0475f..c168cf5fdb29659299fa21f19f20ab272993d41b 100644 (file)
@@ -565,7 +565,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 occurrences of ELT removed.
+  "Return LIST with all occurrences of ELT removed.
 The comparison is done with `eq'.  Contrary to `delq', this does not use
 side-effects, and the argument LIST is not modified."
   (while (and (eq elt (car list)) (setq list (cdr list))))