From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: curious: need explicit package-initialize in recent v29.x Date: Wed, 23 Mar 2022 14:49:49 +0200 Message-ID: <83k0ckesuq.fsf@gnu.org> References: <87czidt5wb.fsf@ucl.ac.uk> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="5094"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Eric S Fraga Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Mar 23 14:12:02 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1nX0mP-00015R-AX for ged-emacs-devel@m.gmane-mx.org; Wed, 23 Mar 2022 14:12:01 +0100 Original-Received: from localhost ([::1]:47764 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nX0mN-0000gP-Sp for ged-emacs-devel@m.gmane-mx.org; Wed, 23 Mar 2022 09:11:59 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:60204) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nX0RA-0007up-7r for emacs-devel@gnu.org; Wed, 23 Mar 2022 08:50:05 -0400 Original-Received: from [2001:470:142:3::e] (port=35352 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nX0R7-0001Q5-S7; Wed, 23 Mar 2022 08:50:02 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=S8k1aYhCV8KCDEiOfElRpvEUTx3AONw6Zal6RXvc6X0=; b=OjHQF0YQLc+j E+eo5lLrLpIaQBlSqzCL8w1db3OTf5wcgLiXjyQuGOLVQAr6llcrFSUR88Pl8G25oLunkiQlid3bu ncjayOny/tj3Cq5Eo6kiFf+ZBDZk/n/hB469k1/KglCMPZZrI3gXYutLPwpQCxIJeo5p5MMa9a1J3 22rFwEfDi/HUMgyMu/sfFTXKrNPqPmHT7m3RcoxhwXsSRlHulsalBzj4BJVYXb8Jk4bEUQbklaOFV SYx9b2bvQcQ0EP5GzNj2SOyjS5m5PmG7feZq/nyfCiQgOQBQ0GsNTcgnKCgo6+8eH7SqZ1I3SMUiq w5osnS5WDlGDZckHPtxj2A==; Original-Received: from [87.69.77.57] (port=3053 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nX0R6-0005W2-Q9; Wed, 23 Mar 2022 08:50:01 -0400 In-Reply-To: <87czidt5wb.fsf@ucl.ac.uk> (message from Eric S Fraga on Wed, 23 Mar 2022 08:44:20 +0000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:287392 Archived-At: > From: Eric S Fraga > Date: Wed, 23 Mar 2022 08:44:20 +0000 > > I track git Emacs. Yesterday, I git pulled and built Emacs. It > wouldn't start with my init files. -Q worked just fine. > > After some debugging, it led me to adding the line > > (package-initialize) > > as the first line of my .emacs. I do have an early-init.el file as > well which configures the repositories to use. > > Previously, it seemed that the package system was initialised by Emacs > itself automatically between the evaluation of the early-init.el and > .emacs files. Has this changed or is my problem a symptom of something > else? What's your value of package-enable-at-startup?