bug-gnu-emacs
[Top][All Lists]
Advanced

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

bug#23506: 25.0.93; cl.info (cl-notevery) documentation fix


From: Tino Calancha
Subject: bug#23506: 25.0.93; cl.info (cl-notevery) documentation fix
Date: Wed, 11 May 2016 01:01:43 +0900 (JST)
User-agent: Alpine 2.20 (LRH 67 2015-01-07)


cl-notevery returns nil when the predicate was true for all elements.

In GNU Emacs 25.0.93.1 (x86_64-pc-linux-gnu, GTK+ Version 2.24.30)
 of 2016-05-09 built on calancha-pc
Repository revision: d0d9f55b632717fccb605e0a204ebdd5ffe8608f

From d4028a4c0bab5fa791017605921ad35651ab9321 Mon Sep 17 00:00:00 2001
From: Tino Calancha <f92capac@gmail.com>
Date: Wed, 11 May 2016 00:46:10 +0900
Subject: [PATCH] ; * info/cl.info (cl-notevery): Fix documentation

---
 cl.info | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/info/cl.info b/info/cl.info
index 2e018d1..5d1fb49 100644
--- a/info/cl.info
+++ b/info/cl.info
@@ -2922,7 +2922,7 @@ function ‘mapcar’.
  -- Function: cl-notevery predicate seq &rest more-seqs
      This function calls PREDICATE on each element of the sequence(s) in
      turn; it returns a non-‘nil’ value as soon as PREDICATE returns
-     ‘nil’ for any element, or ‘t’ if the predicate was true for all
+     ‘nil’ for any element, or ‘nil’ if the predicate was true for all
      elements.

  -- Function: cl-reduce function seq &key :from-end :start :end
--
2.8.1

reply via email to

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