From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tino Calancha Newsgroups: gmane.emacs.devel Subject: Re: Add autoload cookies in seq.el Date: Sun, 22 May 2016 21:17:00 +0900 (JST) Message-ID: References: <877fepcezr.fsf@petton.fr> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-Trace: ger.gmane.org 1463919237 7820 80.91.229.3 (22 May 2016 12:13:57 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 22 May 2016 12:13:57 +0000 (UTC) Cc: emacs-devel@gnu.org, Tino Calancha To: Nicolas Petton Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun May 22 14:13:56 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1b4SGZ-0006YS-9a for ged-emacs-devel@m.gmane.org; Sun, 22 May 2016 14:13:55 +0200 Original-Received: from localhost ([::1]:43021 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4SGY-0003VN-CV for ged-emacs-devel@m.gmane.org; Sun, 22 May 2016 08:13:54 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47606) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4SGS-0003Uw-Op for emacs-devel@gnu.org; Sun, 22 May 2016 08:13:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b4SGP-00059M-GB for emacs-devel@gnu.org; Sun, 22 May 2016 08:13:48 -0400 Original-Received: from calancha-ilc.kek.jp ([130.87.234.234]:34082) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b4SGP-00059E-4i for emacs-devel@gnu.org; Sun, 22 May 2016 08:13:45 -0400 Original-Received: by calancha-ilc.kek.jp (Postfix, from userid 500) id 76E956434; Sun, 22 May 2016 21:17:00 +0900 (JST) Original-Received: from localhost (localhost [127.0.0.1]) by calancha-ilc.kek.jp (Postfix) with ESMTP id 11C475956; Sun, 22 May 2016 21:17:00 +0900 (JST) X-X-Sender: calancha@calancha-ilc.kek.jp In-Reply-To: <877fepcezr.fsf@petton.fr> User-Agent: Alpine 2.20 (LRH 67 2015-01-07) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 130.87.234.234 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:203937 Archived-At: > Where did you see usages of seq.el without a `require'? Hi Nico, i have performed an exhaustive search of files calling functons from seq.el without requiring it. Following is the result: * lisp/subr.el (read-multiple-choice): seq-position ; line 2314 * lisp/ibuffer.el (define-ibuffer-column name): seq-position ; line 1746 * lisp/emacs-lisp/find-func.el (find-library--from-load-path): seq-filter ; line 223 * lisp/image.el (image--get-image): seq-find ; line 980 In GNU Emacs 25.1.50.2 (x86_64-pc-linux-gnu, GTK+ Version 2.24.30) Repository revision: 162bc021a1cb4d7f578d1635a55bb7c38084f044 Tino