emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117732: Fix docstring of `remq'


From: Christoph Scholtes
Subject: [Emacs-diffs] trunk r117732: Fix docstring of `remq'
Date: Mon, 25 Aug 2014 03:16:41 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117732
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/18253
committer: Christoph Scholtes <address@hidden>
branch nick: trunk
timestamp: Sun 2014-08-24 21:16:36 -0600
message:
  Fix docstring of `remq'
  
  * lisp/subr.el (remq): Fix docstring.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/subr.el                   subr.el-20091113204419-o5vbwnq5f7feedwu-151
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-08-25 02:36:45 +0000
+++ b/lisp/ChangeLog    2014-08-25 03:16:36 +0000
@@ -1,5 +1,9 @@
 2014-08-25  Christoph Scholtes  <address@hidden>
 
+       * subr.el (remq): Fix docstring (Bug#18253).
+
+2014-08-25  Christoph Scholtes  <address@hidden>
+
        * replace.el (query-replace): Fix typo in docstring (Bug#18320).
 
 2014-08-24  Alan Mackenzie  <address@hidden>

=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2014-08-15 04:34:06 +0000
+++ b/lisp/subr.el      2014-08-25 03:16:36 +0000
@@ -565,7 +565,7 @@
     (delete elt (copy-sequence seq))))
 
 (defun remq (elt list)
-  "Return LIST with all occurrences of ELT removed.
+  "Return a copy of 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]