emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117754: * lisp/subr.el (remq): Revert 2014-08-25 do


From: Glenn Morris
Subject: [Emacs-diffs] trunk r117754: * lisp/subr.el (remq): Revert 2014-08-25 doc change (not always true).
Date: Thu, 28 Aug 2014 01:55:58 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117754
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2014-08-27 18:55:45 -0700
message:
  * lisp/subr.el (remq): Revert 2014-08-25 doc change (not always true).
  
  See the interminable bug discussion if you have nothing better to do.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/subr.el                   subr.el-20091113204419-o5vbwnq5f7feedwu-151
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-08-27 10:51:21 +0000
+++ b/lisp/ChangeLog    2014-08-28 01:55:45 +0000
@@ -1,3 +1,7 @@
+2014-08-28  Glenn Morris  <address@hidden>
+
+       * subr.el (remq): Revert 2014-08-25 doc change (not always true).
+
 2014-08-27  Dmitry Antipov  <address@hidden>
 
        * startup.el (normal-top-level): Now use internal--top-level-message.

=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2014-08-25 03:16:36 +0000
+++ b/lisp/subr.el      2014-08-28 01:55:45 +0000
@@ -565,7 +565,7 @@
     (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))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]