From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [elpa] master d7bac58 3/5: Wrong require again. Date: Thu, 04 Aug 2016 00:43:05 -0400 Message-ID: References: <20160804030326.16920.78136@vcs.savannah.gnu.org> <20160804030326.B379D220169@vcs.savannah.gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: blaine.gmane.org 1470317891 23240 195.159.176.226 (4 Aug 2016 13:38:11 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Thu, 4 Aug 2016 13:38:11 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) Cc: rocky To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Aug 04 15:38:04 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bVIqS-0004B0-LH for ged-emacs-devel@m.gmane.org; Thu, 04 Aug 2016 15:37:56 +0200 Original-Received: from localhost ([::1]:39965 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bVIqP-0002JC-A1 for ged-emacs-devel@m.gmane.org; Thu, 04 Aug 2016 09:37:53 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58222) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bVIpK-0001qd-Ky for emacs-devel@gnu.org; Thu, 04 Aug 2016 09:36:47 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bVIpJ-0006bL-TP for emacs-devel@gnu.org; Thu, 04 Aug 2016 09:36:46 -0400 Original-Received: from chene.dit.umontreal.ca ([132.204.246.20]:42147) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bVIpF-0006a3-7O; Thu, 04 Aug 2016 09:36:41 -0400 Original-Received: from milanesa.home (lechon.iro.umontreal.ca [132.204.27.242]) by chene.dit.umontreal.ca (8.14.7/8.14.1) with ESMTP id u74Db5f4024615; Thu, 4 Aug 2016 09:37:06 -0400 Original-Received: by milanesa.home (Postfix, from userid 20848) id E561A661CF; Thu, 4 Aug 2016 00:43:05 -0400 (EDT) In-Reply-To: <20160804030326.B379D220169@vcs.savannah.gnu.org> (Rocky Bernstein's message of "Thu, 4 Aug 2016 03:03:26 +0000 (UTC)") X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV5756=0 X-NAI-Spam-Version: 2.3.0.9418 : core <5756> : inlines <5070> : streams <1678690> : uri <2260572> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.20 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:206409 Archived-At: > (require 'cl-lib) > +(require 'cl) These two libraries are pretty much identical, except that they use different names, so there's no point requiring both (`cl' is the old deprecated one, and `cl-lib' is the new shiny one). Do you want me to update the code to use `cl-lib' exclusively? Stefan