From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Artur Malabarba Newsgroups: gmane.emacs.devel Subject: Re: Calling (package-initialize) sooner during initialization Date: Tue, 28 Apr 2015 11:11:17 +0100 Message-ID: References: <87383xk4ia.fsf@taylan.uni.cx> <87d22zi69k.fsf@taylan.uni.cx> <87a8xtoq3a.fsf@gmail.com> Reply-To: bruce.connor.am@gmail.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1430215896 12684 80.91.229.3 (28 Apr 2015 10:11:36 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 28 Apr 2015 10:11:36 +0000 (UTC) Cc: emacs-devel To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Apr 28 12:11:36 2015 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 1Yn2UG-0006aw-LC for ged-emacs-devel@m.gmane.org; Tue, 28 Apr 2015 12:11:32 +0200 Original-Received: from localhost ([::1]:60006 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yn2UG-0001qe-1l for ged-emacs-devel@m.gmane.org; Tue, 28 Apr 2015 06:11:32 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yn2U3-0001qU-1e for emacs-devel@gnu.org; Tue, 28 Apr 2015 06:11:19 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yn2U2-0007aF-CU for emacs-devel@gnu.org; Tue, 28 Apr 2015 06:11:19 -0400 Original-Received: from mail-lb0-x234.google.com ([2a00:1450:4010:c04::234]:36786) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yn2U2-0007Zl-3u for emacs-devel@gnu.org; Tue, 28 Apr 2015 06:11:18 -0400 Original-Received: by lbbqq2 with SMTP id qq2so103148207lbb.3 for ; Tue, 28 Apr 2015 03:11:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=grQ7h4vU29vLFsbWok+xGzHw+4vpJbNtpcQrkpuGni8=; b=WNgmE1KTythP9ewJ6VvUSq6j5g+iu9Ta9nhix5r1SsxNDfn+bU2wmWN7kChmQAKTwR m0oJC38hhVrGYLH1VG9wZQgkLUaxcHhysnG241ujddE5KP0xvttKdwMunBb5niSRn8/g AZzeyqScpWspw6BCTuDOzfjfp0QjvxFVnQ6MOE1qka7Fv2ylIH+BTin5PRWYXwYdu8Xx qphM09xj3s8Zq1/41fXNtSIq0eQleGabNpThVyJTKIy0HqQVrYeZHtLsycBxtPAN/ka5 3+TOVxHISjaDGg9N0KN69V81mLhfr6TvZ5zEJE6oSS13lSZ8Sv7clnMWMSwuZsnH90ue 6wLQ== X-Received: by 10.152.87.204 with SMTP id ba12mr14179042lab.35.1430215877403; Tue, 28 Apr 2015 03:11:17 -0700 (PDT) Original-Received: by 10.25.150.1 with HTTP; Tue, 28 Apr 2015 03:11:17 -0700 (PDT) In-Reply-To: X-Google-Sender-Auth: p5Od2XaWeTZZ86ylyqT7Znr9gIs X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::234 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 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-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:185952 Archived-At: >> The code in package--ensure-init-file to add (package-initialize) will >> cause breakage if the user had previously specified lexical binding (or >> other file locals) in the first line of user-init-file. > > Good point, that needs to be fixed. More specifically, I think we > should insert that lines after any leading space & comments. Done.