From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Daniel Semyonov Newsgroups: gmane.emacs.devel Subject: Re: Issue with package-quick-start (+ another issue) Date: Tue, 17 May 2022 09:05:32 +0300 Message-ID: <87lev08zir.fsf@dsemy.com> References: <20220514124356.i7g3nb225pce2hrk.ref@Ergus> <20220514124356.i7g3nb225pce2hrk@Ergus> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6488"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) Cc: emacs-devel@gnu.org To: Ergus Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue May 17 08:18:34 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 1nqqXS-0001Rl-07 for ged-emacs-devel@m.gmane-mx.org; Tue, 17 May 2022 08:18:34 +0200 Original-Received: from localhost ([::1]:42538 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nqqXQ-0007KJ-U5 for ged-emacs-devel@m.gmane-mx.org; Tue, 17 May 2022 02:18:32 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:52156) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nqqKw-000793-NG for emacs-devel@gnu.org; Tue, 17 May 2022 02:05:39 -0400 Original-Received: from dsemy.com ([46.23.89.208]:24785) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nqqKv-000281-0F for emacs-devel@gnu.org; Tue, 17 May 2022 02:05:38 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; s=dkim; bh=Lay6mHVLSf7gn 4pD6+NhF9p/EFsuuUaVatWdmaeTN+4=; h=in-reply-to:date:references: subject:cc:to:from; d=dsemy.com; b=eQrQNTn/l4buunKuQg7AiDwnl1D+OASCYh1 iMH3ygz7GK6Ob1WbA2R4ZB6AvTGA4lQZr5+6SUfpudoy5ZbEJxRS8aIjhnGQi9cBSHUh/p /z1zyk4QWdSWIW5GLR8JP5ui20xOKg7L7O8VCemXE/y0Dt02jDMMiJtnEwZwCVEOwA7K0k r68HDsewOPjfnWBvb+xLjKxOZM2DFfmQwv3HT/eYfzo9nRxHiSk3FEja6F5LNSdnKH5jWD 83uEPxfglItf40K+qZJf4H/JMkaoxXAvw2/+Zwka06lY6mKU2KNA7C5piVB85wwhlrYWuu cD1gsYGLi7k03XdBtpcRn9M3tRA== Original-Received: from coldharbour (bzq-79-183-62-6.red.bezeqint.net [79.183.62.6]) by dsemy.com (OpenSMTPD) with ESMTPSA id 3b6162d5 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Tue, 17 May 2022 08:05:33 +0200 (CEST) Original-Received: from localhost (coldharbour [local]) by coldharbour (OpenSMTPD) with ESMTPA id c2d76fbc; Tue, 17 May 2022 06:05:32 +0000 (UTC) In-Reply-To: <20220514124356.i7g3nb225pce2hrk@Ergus> (Ergus's message of "Sat, 14 May 2022 14:43:56 +0200") Received-SPF: pass client-ip=46.23.89.208; envelope-from=daniel@dsemy.com; helo=dsemy.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01, UNPARSEABLE_RELAY=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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:289829 Archived-At: >>>>> Ergus writes: > Hi: Recently trying the master branch; emacs fails to start with a > message: > ``` Wrong type argument: stringp, nil ``` > which seems to happen after window-setup-hook. Hi, I encountered the same issue (reported as bug#55447). A workaround I found was to replace all occurrences of '#$' in 'package-quickstart.el' with 'load-true-file-name', and then recompile the file manually. Regards, Daniel