From debbugs-submit-bounces@debbugs.gnu.org Mon May 17 21:43:44 2021 Received: (at submit) by debbugs.gnu.org; 18 May 2021 01:43:44 +0000 Received: from localhost ([127.0.0.1]:54126 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1liolq-0001z7-Gx for submit@debbugs.gnu.org; Mon, 17 May 2021 21:43:44 -0400 Received: from lists.gnu.org ([209.51.188.17]:41134) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lioDr-0001Ao-Ug for submit@debbugs.gnu.org; Mon, 17 May 2021 21:08:36 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56844) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lioDr-0007BD-Pj for bug-gnu-emacs@gnu.org; Mon, 17 May 2021 21:08:35 -0400 Received: from [39.160.160.82] (port=1356 helo=mbp33.lan) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lioDp-0007EH-Uz for bug-gnu-emacs@gnu.org; Mon, 17 May 2021 21:08:35 -0400 Received: by mbp33.lan (Postfix, from userid 501) id 257873F0DFB1; Mon, 17 May 2021 20:32:14 +0800 (CST) From: Gong Qijian To: bug-gnu-emacs@gnu.org Subject: [PATCH] Fix wrong-type-argument error while loading pdump file Date: Mon, 17 May 2021 20:31:58 +0800 Message-Id: <20210517123158.81940-1-gongqijian@gmail.com> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Host-Lookup-Failed: Reverse DNS lookup failed for 39.160.160.82 (deferred) Received-SPF: none client-ip=39.160.160.82; envelope-from=gqj@mbp33.lan; helo=mbp33.lan X-Spam_score_int: 84 X-Spam_score: 8.4 X-Spam_bar: ++++++++ X-Spam_report: (8.4 / 5.0 requ) BAYES_05=-0.5, DKIM_ADSP_CUSTOM_MED=0.001, FORGED_GMAIL_RCVD=1, FREEMAIL_FORGED_FROMDOMAIN=0.25, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.249, NML_ADSP_CUSTOM_MED=0.9, NO_DNS_FOR_FROM=0.001, RCVD_IN_PBL=3.335, RDNS_NONE=0.793, SPF_HELO_NONE=0.001, SPF_NONE=0.001, SPOOFED_FREEMAIL=1.5, SPOOFED_FREEMAIL_NO_RDNS=0.001, SPOOF_GMAIL_MID=0.82 autolearn=no autolearn_force=no X-Spam_action: reject X-Spam-Score: 1.9 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: * lisp/startup.el(command-line): Don't reverse the `custom-delayed-init-variables` if it's a non-list. This issue was introduced by commit 2fb271ca "Fix unload+reload of files using `custom-initialize-delay` (bug#47072)" which changed the initial value of `custom-delayed-init-variables` from nil to t. Content analysis details: (1.9 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.2 HEADER_FROM_DIFFERENT_DOMAINS From and EnvelopeFrom 2nd level mail domains are different 0.4 NO_DNS_FOR_FROM DNS: Envelope sender has no MX or A DNS records 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (gongqijian[at]gmail.com) 0.0 SPF_NONE SPF: sender does not publish an SPF Record 1.0 FORGED_GMAIL_RCVD 'From' gmail.com does not match 'Received' headers -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 RCVD_IN_MSPIKE_H4 RBL: Very Good reputation (+4) [209.51.188.17 listed in wl.mailspike.net] -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at https://www.dnswl.org/, medium trust [209.51.188.17 listed in list.dnswl.org] 0.2 FREEMAIL_FORGED_FROMDOMAIN 2nd level domains in From and EnvelopeFrom freemail headers are different 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 1.5 SPOOFED_FREEMAIL No description available. 0.8 SPOOF_GMAIL_MID From Gmail but it doesn't seem to be... X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 17 May 2021 21:43:41 -0400 Cc: Gong Qijian X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.4 (-) * lisp/startup.el(command-line): Don't reverse the `custom-delayed-init-variables` if it's a non-list. This issue was introduced by commit 2fb271ca "Fix unload+reload of files using `custom-initialize-delay` (bug#47072)" which changed the initial value of `custom-delayed-init-variables` from nil to t. Steps to reproduce: ⋊> ./src/emacs --batch --eval '(dump-emacs-portable "dump")' && \ ./src/emacs --dump-file=dump -nw -Q --batch Debugger entered--Lisp error: (wrong-type-argument arrayp t) command-line() normal-top-level() --- lisp/startup.el | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lisp/startup.el b/lisp/startup.el index bb25c1b7..0df4fe02 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1197,12 +1197,13 @@ command-line ;; Re-evaluate predefined variables whose initial value depends on ;; the runtime context. - (setq custom-delayed-init-variables - ;; Initialize them in the same order they were loaded, in case there - ;; are dependencies between them. - (nreverse custom-delayed-init-variables)) - (mapc #'custom-reevaluate-setting custom-delayed-init-variables) - (setq custom-delayed-init-variables t) + (when (listp custom-delayed-init-variables) + (setq custom-delayed-init-variables + ;; Initialize them in the same order they were loaded, in case there + ;; are dependencies between them. + (nreverse custom-delayed-init-variables)) + (mapc #'custom-reevaluate-setting custom-delayed-init-variables) + (setq custom-delayed-init-variables t)) ;; Warn for invalid user name. (when init-file-user -- 2.25.0 From debbugs-submit-bounces@debbugs.gnu.org Tue May 18 10:38:04 2021 Received: (at 48492) by debbugs.gnu.org; 18 May 2021 14:38:04 +0000 Received: from localhost ([127.0.0.1]:56857 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj0rD-0007pm-Pu for submit@debbugs.gnu.org; Tue, 18 May 2021 10:38:04 -0400 Received: from quimby.gnus.org ([95.216.78.240]:42940) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj0rB-0007pE-T9 for 48492@debbugs.gnu.org; Tue, 18 May 2021 10:38:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=j48BbJaX+8arDMfC+S1MFFo31O4RxLYkbnyZum0V8EY=; b=AIqW6+3mSzFy5ZXxDBXWvYZTar FNghc8vL0KGs++gfDzlsRMdSyXAwY0O4Emn350UMqr3PJnnbOf0ksfFkX4zzZhtR9PI0eWwv9FnCn 91NdnVoCSBVoS+5z/Gfiobsivc/rMXJ1IHPuKneypY3a4O+kOICeOJcEcxhwBBcgPbeA=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lj0r3-0006IK-1E; Tue, 18 May 2021 16:37:55 +0200 From: Lars Ingebrigtsen To: Gong Qijian Subject: Re: bug#48492: [PATCH] Fix wrong-type-argument error while loading pdump file References: <20210517123158.81940-1-gongqijian@gmail.com> X-Now-Playing: Oval's _Eksploio_: "Ambrik" Date: Tue, 18 May 2021 16:37:52 +0200 In-Reply-To: <20210517123158.81940-1-gongqijian@gmail.com> (Gong Qijian's message of "Mon, 17 May 2021 20:31:58 +0800") Message-ID: <874kf0f6pr.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Gong Qijian writes: > This issue was introduced by commit 2fb271ca "Fix unload+reload of > files using `custom-initialize-delay` (bug#47072)" which changed the > initial value of `custom-delayed-init-variables` from nil [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 48492 Cc: 48492@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Gong Qijian writes: > This issue was introduced by commit 2fb271ca "Fix unload+reload of > files using `custom-initialize-delay` (bug#47072)" which changed the > initial value of `custom-delayed-init-variables` from nil to t. [...] > - (setq custom-delayed-init-variables > - ;; Initialize them in the same order they were loaded, in case there > - ;; are dependencies between them. > - (nreverse custom-delayed-init-variables)) > - (mapc #'custom-reevaluate-setting custom-delayed-init-variables) > - (setq custom-delayed-init-variables t) > + (when (listp custom-delayed-init-variables) > + (setq custom-delayed-init-variables > + ;; Initialize them in the same order they were loaded, in case there > + ;; are dependencies between them. > + (nreverse custom-delayed-init-variables)) > + (mapc #'custom-reevaluate-setting custom-delayed-init-variables) > + (setq custom-delayed-init-variables t)) Thanks -- I've applied this with a change: The pre-patched version would set `custom-delayed-init-variables' to t always, but with this patch, it's only set if `custom-delayed-init-variables' is a proper list. So I moved the last setq out of the `when'. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue May 18 10:38:07 2021 Received: (at control) by debbugs.gnu.org; 18 May 2021 14:38:07 +0000 Received: from localhost ([127.0.0.1]:56860 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj0rH-0007q0-2Y for submit@debbugs.gnu.org; Tue, 18 May 2021 10:38:07 -0400 Received: from quimby.gnus.org ([95.216.78.240]:42954) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj0rG-0007pM-7W for control@debbugs.gnu.org; Tue, 18 May 2021 10:38:06 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=NCJxVR9pFhbOPdBZWv2RIxXUD8NnsJ6lI0jTr+pLEpw=; b=mTEXcnD9ReH+zYboShUW30GwwY 82AMLKXZqWMmbyYTyhvnboOkkfanJFOJfapRWgXzomZj/v2P/fCnlhkGU3jB7ZbAKGMbNsonOBeFy +y3sKC4Kumj//vv0echVAmvx98WSOHO2KgwB56gtPTmJKcXygsb8gLD97iJcrt2lUXaM=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lj0r8-0006IV-Ot for control@debbugs.gnu.org; Tue, 18 May 2021 16:38:00 +0200 Date: Tue, 18 May 2021 16:37:58 +0200 Message-Id: <8735ukf6pl.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #48492 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 48492 fixed close 48492 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 48492 fixed close 48492 28.1 quit From debbugs-submit-bounces@debbugs.gnu.org Tue May 18 10:48:26 2021 Received: (at 48492) by debbugs.gnu.org; 18 May 2021 14:48:26 +0000 Received: from localhost ([127.0.0.1]:56878 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj11G-0001pi-Ft for submit@debbugs.gnu.org; Tue, 18 May 2021 10:48:26 -0400 Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:26414) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj11E-0001pS-9j for 48492@debbugs.gnu.org; Tue, 18 May 2021 10:48:25 -0400 Received: from pmg1.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id AAA5310028A; Tue, 18 May 2021 10:48:18 -0400 (EDT) Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg1.iro.umontreal.ca (Proxmox) with ESMTP id 38BEE100068; Tue, 18 May 2021 10:48:17 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1621349297; bh=plRsFUtkWJ34thxQIUpeLRkFh+kSovlDmM/eKLlRJCg=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=PdjGRfzfwfT7ulHwALlyJrxXwArqi5CbltI+cY7N0KqSZBR82Fvg6EXdR+9PYH3rV NkAWi37xrLWAUvgPnATRVCDxYlSsOd0ruTXa5ciOX89xyZ5LtDILvT5zPox4yXmJcG hPZi38IaxXIfg/ZMZZzXm8B2XBRwUzT0Vv4bEG2M0bwqZoJiLtBza2jjR/uLEZgnv1 lwDhE7xjCUONJn2tYkxwDpX7zBpwCpd3HvopjHDNOJKZFngCa380AQP5pWA8fJuOeR IDUlzr0xSCyJNRXm3/WodbZDG5A5tCCuK+w2IGiyQMUZ9RzpjKhAW2/ZWyUyY19Zlf /OElDKFxPo3zA== Received: from alfajor (76-10-140-76.dsl.teksavvy.com [76.10.140.76]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 116B7120552; Tue, 18 May 2021 10:48:17 -0400 (EDT) From: Stefan Monnier To: 48492@debbugs.gnu.org Subject: Re: master ab20f38: Fix `custom-delayed-init-variables' problem when re-dumping emacs Message-ID: References: <20210518143808.11815.577@vcs0.savannah.gnu.org> <20210518143810.4DA8920947@vcs0.savannah.gnu.org> Date: Tue, 18 May 2021 10:48:16 -0400 In-Reply-To: <20210518143810.4DA8920947@vcs0.savannah.gnu.org> (Lars Ingebrigtsen's message of "Tue, 18 May 2021 10:38:09 -0400 (EDT)") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SPAM-INFO: Spam detection results: 0 ALL_TRUSTED -1 Passed through trusted hosts only via SMTP AWL 0.000 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain X-SPAM-LEVEL: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 48492 Cc: Gong Qijian X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > * lisp/startup.el (command-line): Don't bug out on redumping Emacs > (bug#48492). [...] > @@ -1197,11 +1197,11 @@ please check its value") > > ;; Re-evaluate predefined variables whose initial value depends on > ;; the runtime context. > - (setq custom-delayed-init-variables > - ;; Initialize them in the same order they were loaded, in case there > - ;; are dependencies between them. > - (nreverse custom-delayed-init-variables)) > - (mapc #'custom-reevaluate-setting custom-delayed-init-variables) > + (when (listp custom-delayed-init-variables) > + (mapc #'custom-reevaluate-setting > + ;; Initialize them in the same order they were loaded, in > + ;; case there are dependencies between them. > + (reverse custom-delayed-init-variables))) > (setq custom-delayed-init-variables t) > > ;; Warn for invalid user name. While this is a good short term fix, I think what we would ideally want instead is that those settings be re-evaluated yet-again when we start the re-dumped Emacs. So maybe instead of setting the var to t, we should use another var to denote that we've already init'd those vars (and re-set that other var some time when we redump). Stefan From debbugs-submit-bounces@debbugs.gnu.org Tue May 18 11:14:04 2021 Received: (at 48492) by debbugs.gnu.org; 18 May 2021 15:14:04 +0000 Received: from localhost ([127.0.0.1]:56944 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj1Q4-0002XW-2s for submit@debbugs.gnu.org; Tue, 18 May 2021 11:14:04 -0400 Received: from quimby.gnus.org ([95.216.78.240]:43340) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lj1Q3-0002Wv-57 for 48492@debbugs.gnu.org; Tue, 18 May 2021 11:14:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=LcEbA47SO5M0pzAq9lZDIanvtY0DdT0uR6dkA0zPO54=; b=SBOuyjPUw4E8d7PqjVaujju8ww vWfO9D9xsbdFt6dBajX5hy8yX5gQMDo5TwJQu27FwvhWSG6cFbe6res4ZlF68XP6MdTZgRQsQCca8 bAwwzU2SVb1GDihXplTU30D8rICKiiZJQ/LhZzMyzSNoIRUJp2s80RU6BdmeYL2ZUw70=; Received: from cm-84.212.220.105.getinternet.no ([84.212.220.105] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lj1Pt-0006d0-5E; Tue, 18 May 2021 17:13:55 +0200 From: Lars Ingebrigtsen To: 48492@debbugs.gnu.org Subject: Re: bug#48492: master ab20f38: Fix `custom-delayed-init-variables' problem when re-dumping emacs References: <20210518143808.11815.577@vcs0.savannah.gnu.org> <20210518143810.4DA8920947@vcs0.savannah.gnu.org> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAD1BMVEX39vaBfX8lJCaj oaH///9AdptDAAAAAWJLR0QEj2jZUQAAAAd0SU1FB+UFEg8MI70jSbYAAAGGSURBVDjLlZPZdcUg DEQFNGCgAQkakKH/3qLFGDsvyTnhAy+XkUYCAL6P0GzA7yDxhAmcOAFP+bjBOAq00COOY7KMqb9L g1BzzTOf9awiXkAUEQu3RBEjAktATo9Q7KF4siRfoSBKDkoG1AQnaqX8afc/oN6hqk6DL0A5XyC0 Q+bW71BLEbIurvUzx1RFnQvkBc5MkoIKBn4pkj1lEmTJV44or+At6i9F1GcyM/gzyGr7G2DL0erJ wUy15Zxh2MJ6vFxRc52A+QBiUGJHsiy4QRDXClA+pdQNNLiCQw1Tbh/AfhVqtyuJpIWN0Z4DrEna ihHy/dd6lbonv8LTVtRcpD4RngbKAmctWUBaYeIFkpoovHrX2qrDFgiIW5E3yMcFeqH4VPTuOQgH LmAhMXudLJdhAasPfbvs0EcvxVt1AYzHA4C8sO/jMTjsUNDQ97EXPW4PUHhskDDutkOwg9pNSFtx AmiOhCbUXlUHyYH4sUvrgB5XjANfx2864PcdjL5Zn5fTk9MXQ69ciQmSk4MAAAAldEVYdGRhdGU6 Y3JlYXRlADIwMjEtMDUtMThUMTU6MTI6MzUrMDA6MDBIZ65YAAAAJXRFWHRkYXRlOm1vZGlmeQAy MDIxLTA1LTE4VDE1OjEyOjM1KzAwOjAwOToW5AAAAABJRU5ErkJggg== X-Now-Playing: The Specials's _The Specials_: "Blank Expression" Date: Tue, 18 May 2021 17:13:52 +0200 In-Reply-To: (Stefan Monnier via's message of "Tue, 18 May 2021 10:48:16 -0400") Message-ID: <87a6osdqhb.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Stefan Monnier via "Bug reports for GNU Emacs, the Swiss army knife of text editors" writes: > So maybe instead of setting the var to t, we should use another var to > denote that we've already init'd those vars (and re-set that other var > some time when we redump). Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 48492 Cc: Gong Qijian , Stefan Monnier X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Stefan Monnier via "Bug reports for GNU Emacs, the Swiss army knife of text editors" writes: > So maybe instead of setting the var to t, we should use another var to > denote that we've already init'd those vars (and re-set that other var > some time when we redump). Yeah, overloading `custom-delayed-init-variables' with two different semantics is a bit awkward. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Sat Jun 14 03:57:25 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 16 Jun 2021 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator