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: Add autoload cookies in seq.el Date: Fri, 20 May 2016 15:06:22 +0900 (JST) Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-Trace: ger.gmane.org 1463724204 31664 80.91.229.3 (20 May 2016 06:03:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 20 May 2016 06:03:24 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri May 20 08:03:19 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 1b3dWo-0003PQ-1E for ged-emacs-devel@m.gmane.org; Fri, 20 May 2016 08:03:18 +0200 Original-Received: from localhost ([::1]:53312 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b3dWm-0003i1-E6 for ged-emacs-devel@m.gmane.org; Fri, 20 May 2016 02:03:16 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53916) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b3dWh-0003gS-AS for emacs-devel@gnu.org; Fri, 20 May 2016 02:03:12 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b3dWd-0003od-5h for emacs-devel@gnu.org; Fri, 20 May 2016 02:03:10 -0400 Original-Received: from calancha-ilc.kek.jp ([130.87.234.234]:33267) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b3dWc-0003oT-RM for emacs-devel@gnu.org; Fri, 20 May 2016 02:03:07 -0400 Original-Received: by calancha-ilc.kek.jp (Postfix, from userid 500) id 2E4F1640F; Fri, 20 May 2016 15:06:22 +0900 (JST) Original-Received: from localhost (localhost [127.0.0.1]) by calancha-ilc.kek.jp (Postfix) with ESMTP id 15C8029F for ; Fri, 20 May 2016 15:06:22 +0900 (JST) X-X-Sender: calancha@calancha-ilc.kek.jp 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:203897 Archived-At: Hi, lisp/emacs-lisp/seq.el lack of autoload cookies. I see in the master branch that some files are starting to use funtions from this library. For instance, * lisp/subr.el (read-multiple-choice) * lisp/ibuffer.el (define-ibuffer-column name) (it may be more cases, i didn't look in detail). We should: I) Add autoload cookies for the most useful functions defined in seq.el (as it was done in cl-seq). II) Or add (require 'seq) in those files using such functions.