GNU bug report logs - #66998
29.1; Regression for recursive keyboard macros + minibuffers in (I think) Emacs 28

Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.

Package: emacs; Reported by: Morgon Kanter <morgon.kanter@HIDDEN>; dated Wed, 8 Nov 2023 06:18:02 UTC; Maintainer for emacs is bug-gnu-emacs@HIDDEN.

Message received at 66998 <at> debbugs.gnu.org:


Received: (at 66998) by debbugs.gnu.org; 9 Nov 2023 17:38:10 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Thu Nov 09 12:38:10 2023
Received: from localhost ([127.0.0.1]:48666 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1r18yo-0000fM-02
	for submit <at> debbugs.gnu.org; Thu, 09 Nov 2023 12:38:10 -0500
Received: from mail.muc.de ([193.149.48.3]:33868)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <acm@HIDDEN>) id 1r18ym-0000fA-9C
 for 66998 <at> debbugs.gnu.org; Thu, 09 Nov 2023 12:38:09 -0500
Received: (qmail 52947 invoked by uid 3782); 9 Nov 2023 18:37:23 +0100
Received: from acm.muc.de (p4fe15b72.dip0.t-ipconnect.de [79.225.91.114])
 (using STARTTLS) by colin.muc.de (tmda-ofmipd) with ESMTP;
 Thu, 09 Nov 2023 18:37:22 +0100
Received: (qmail 28317 invoked by uid 1000); 9 Nov 2023 17:37:22 -0000
Date: Thu, 9 Nov 2023 17:37:22 +0000
To: Morgon Kanter <morgon.kanter@HIDDEN>
Subject: Re: bug#66998: 29.1; Regression for recursive keyboard macros +
 minibuffers in (I think) Emacs 28
Message-ID: <ZU0Y0t1gPfK88Nt3@ACM>
References: <CAMGeJwkMJTKwRi6wEj5uYLh+6KNwJv-AYXkwCYg9HY1yNn0L_Q@HIDDEN>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
In-Reply-To: <CAMGeJwkMJTKwRi6wEj5uYLh+6KNwJv-AYXkwCYg9HY1yNn0L_Q@HIDDEN>
X-Submission-Agent: TMDA/1.3.x (Ph3nix)
From: Alan Mackenzie <acm@HIDDEN>
X-Primary-Address: acm@HIDDEN
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 66998
Cc: acm@HIDDEN, eliz@HIDDEN, 66998 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

Hello, Morgon.

Thanks for taking the trouble to report this.

[ Unfortunately, your post, in HTML, has got corrupted somewhere,
possibly in my mail user agent, thus is difficult to read. ]

On Tue, Nov 07, 2023 at 22:29:22 -0500, Morgon Kanter wrote:
>    I believe there is a regression, but possibly intentional, caused by
>    this patch:
>    [1]https://github.com/emacs-mirror/emacs/commit/203e61ff837128b397eb313
>    a5bb1b703f0eae0ec
>    This affects minibuffers created when (kbd-macro-query t) is called as
>    part of the hook that runs when the (read-from-minibuffer) function is
>    called. You get the error message "Not in most nested command loop".

>    For example, this code here:
>    [2]https://www.emacswiki.org/emacs/KeyboardMacros#h5o-5
>    Or, pasting the code in question:
>    Â  Â  (defun my-macro-query (arg)
>    Â  Â  Â  "Prompt for input using minibuffer during kbd macro execution.
>    Â  Â  With prefix argument, allows you to select what prompt string to
>    use.
>    Â  Â  If the input is non-empty, it is inserted at point."
>    Â  Â  Â  (interactive "P")
>    Â  Â  Â  (let* ((prompt (if arg (read-from-minibuffer "PROMPT: ")
>    "Input: "))
>    Â  Â  Â  Â  Â  Â  Â (input (minibuffer-with-setup-hook (lambda ()
>    (kbd-macro-query t))
>    Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  (read-from-minibuffer prompt))))
>    Â  Â  Â  Â  (unless (string= "" input) (insert input))))
>    Â  Â  (global-set-key (kbd "C-x Q") 'my-macro-query)

>    If you attempt to start a keyboard macro via F3, then attempt to read a
>    minibuffer with the above code via C-x Q, upon pressing ENTER to close
>    the minibuffer, you get the following error message:
>    "Not in most nested command loop"

>    You won't be able to close out the minibuffer, the only way I found
>    to proceed was to C-] or multiple escapes, which canceled the
>    keyboard macro creation. As a result, it appears we can't use the
>    above method to read and set variables during keyboard macro
>    creation. I'm not sure if this is intentional or not, or if there's
>    a replacement for the above or not. But it appears to be a
>    regression from before that series of patches.

As you say in your later post, you can terminate the recursive edit with
C-M-c.  I'm not sure there's actually a bug, here.  While in the
recursive edit, the minibuffer "belongs" to the outer editing level,
and this outer level expects the recursive edit to be closed before its
minibuffer input can be terminated.

So I think the error message "Not in most nested command loop" is
correct, even if its not very clear in this context.

What are you actually trying to achieve in your real Lisp code with this
recursive edit?  At first acquaintance, it looks rather unusual.

>    In GNU Emacs 29.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38,
>    cairo version 1.17.8)
>    Windowing system distributor 'Microsoft Corporation', version
>    11.0.12010000
>    System Description: Arch Linux

[ .... ]

-- 
Alan Mackenzie (Nuremberg, Germany).




Information forwarded to bug-gnu-emacs@HIDDEN:
bug#66998; Package emacs. Full text available.

Message received at 66998 <at> debbugs.gnu.org:


Received: (at 66998) by debbugs.gnu.org; 8 Nov 2023 12:54:05 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Wed Nov 08 07:54:05 2023
Received: from localhost ([127.0.0.1]:44187 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1r0i4K-0005Yr-Vk
	for submit <at> debbugs.gnu.org; Wed, 08 Nov 2023 07:54:05 -0500
Received: from mail.muc.de ([193.149.48.3]:12670)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <acm@HIDDEN>) id 1r0i4G-0005YG-Gy
 for 66998 <at> debbugs.gnu.org; Wed, 08 Nov 2023 07:54:03 -0500
Received: (qmail 62127 invoked by uid 3782); 8 Nov 2023 13:53:14 +0100
Received: from acm.muc.de (p4fe1584b.dip0.t-ipconnect.de [79.225.88.75])
 (using STARTTLS) by colin.muc.de (tmda-ofmipd) with ESMTP;
 Wed, 08 Nov 2023 13:53:14 +0100
Received: (qmail 19838 invoked by uid 1000); 8 Nov 2023 12:53:13 -0000
Date: Wed, 8 Nov 2023 12:53:13 +0000
To: Eli Zaretskii <eliz@HIDDEN>
Subject: Re: bug#66998: 29.1; Regression for recursive keyboard macros +
 minibuffers in (I think) Emacs 28
Message-ID: <ZUuEuYSC-z-1Zfg9@ACM>
References: <CAMGeJwkMJTKwRi6wEj5uYLh+6KNwJv-AYXkwCYg9HY1yNn0L_Q@HIDDEN>
 <83msvo1kwn.fsf@HIDDEN>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <83msvo1kwn.fsf@HIDDEN>
X-Submission-Agent: TMDA/1.3.x (Ph3nix)
From: Alan Mackenzie <acm@HIDDEN>
X-Primary-Address: acm@HIDDEN
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 66998
Cc: 66998 <at> debbugs.gnu.org, Morgon Kanter <morgon.kanter@HIDDEN>
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

Hello, Eli.

On Wed, Nov 08, 2023 at 14:36:56 +0200, Eli Zaretskii wrote:
> > From: Morgon Kanter <morgon.kanter@HIDDEN>
> > Date: Tue, 7 Nov 2023 22:29:22 -0500

> > I believe there is a regression, but possibly intentional, caused by this patch:
> > https://github.com/emacs-mirror/emacs/commit/203e61ff837128b397eb313a5bb1b703f0eae0ec

> > This affects minibuffers created when (kbd-macro-query t) is called as
> > part of the hook that runs when the (read-from-minibuffer) function is
> > called. You get the error message "Not in most nested command loop". For
> > example, this code here:
> > https://www.emacswiki.org/emacs/KeyboardMacros#h5o-5

> > Or, pasting the code in question:

> >     (defun my-macro-query (arg)
> >       "Prompt for input using minibuffer during kbd macro execution.
> >     With prefix argument, allows you to select what prompt string to use.
> >     If the input is non-empty, it is inserted at point."
> >       (interactive "P")
> >       (let* ((prompt (if arg (read-from-minibuffer "PROMPT: ") "Input: "))
> >              (input (minibuffer-with-setup-hook (lambda () (kbd-macro-query t))
> >                       (read-from-minibuffer prompt))))
> >         (unless (string= "" input) (insert input))))
> >     (global-set-key (kbd "C-x Q") 'my-macro-query)

> > If you attempt to start a keyboard macro via F3, then attempt to read a
> > minibuffer with the above code via C-x Q, upon pressing ENTER to close
> > the minibuffer, you get the following error message:
> > "Not in most nested command loop"

> > You won't be able to close out the minibuffer, the only way I found to
> > proceed was to C-] or multiple escapes, which canceled the keyboard
> > macro creation. As a result, it appears we can't use the above method to
> > read and set variables during keyboard macro creation. I'm not sure if
> > this is intentional or not, or if there's a replacement for the above or
> > not. But it appears to be a regression from before that series of patches.

> Alan, can you please look into this?

Will do.

-- 
Alan Mackenzie (Nuremberg, Germany).




Information forwarded to bug-gnu-emacs@HIDDEN:
bug#66998; Package emacs. Full text available.

Message received at 66998 <at> debbugs.gnu.org:


Received: (at 66998) by debbugs.gnu.org; 8 Nov 2023 12:37:53 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Wed Nov 08 07:37:53 2023
Received: from localhost ([127.0.0.1]:44179 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1r0hoe-00055O-UJ
	for submit <at> debbugs.gnu.org; Wed, 08 Nov 2023 07:37:53 -0500
Received: from eggs.gnu.org ([2001:470:142:3::10]:33564)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <eliz@HIDDEN>) id 1r0hod-00055C-BL
 for 66998 <at> debbugs.gnu.org; Wed, 08 Nov 2023 07:37:51 -0500
Received: from fencepost.gnu.org ([2001:470:142:3::e])
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <eliz@HIDDEN>)
 id 1r0hnu-0007Fe-VZ; Wed, 08 Nov 2023 07:37:06 -0500
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=Fs4biMNtyW+pp0KCRtKNDDfUTGzKjS4rBKRyxqlE9Rs=; b=pnwgTNbjTaM7
 IVd53AH8Rn+LJrc51JUExJIethpv+0pAqbCLIAHxnI1HPDqeqWNlCWR834lyOqRRDAG5JmbtY7Pwh
 5THJXOEZPvHKq82XvoIlulDS2fHltubZuJNGRLtawReFXhdThR/vek1u2EKVfZ3XTuHWaFThF89qA
 9lAfpFFsNvAeQYFI0bXPR7ukGHEOglv8KPaeHZTmekrE8UoADNCMZXgOufX/X3cZN4BRMkabSaPj/
 6LfJF8wKp2w9yOnnyKmtBJErjHHwSJW9YnXFZAaAm978Y6vDc2jbCCQtTMsfCnKngQroLEahWwHXj
 cRUT2J2FERuFPeLwy1djzQ==;
Date: Wed, 08 Nov 2023 14:36:56 +0200
Message-Id: <83msvo1kwn.fsf@HIDDEN>
From: Eli Zaretskii <eliz@HIDDEN>
To: Morgon Kanter <morgon.kanter@HIDDEN>, Alan Mackenzie <acm@HIDDEN>
In-Reply-To: <CAMGeJwkMJTKwRi6wEj5uYLh+6KNwJv-AYXkwCYg9HY1yNn0L_Q@HIDDEN>
 (message from Morgon Kanter on Tue, 7 Nov 2023 22:29:22 -0500)
Subject: Re: bug#66998: 29.1;
 Regression for recursive keyboard macros + minibuffers in (I think)
 Emacs 28
References: <CAMGeJwkMJTKwRi6wEj5uYLh+6KNwJv-AYXkwCYg9HY1yNn0L_Q@HIDDEN>
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 66998
Cc: 66998 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)

> From: Morgon Kanter <morgon.kanter@HIDDEN>
> Date: Tue, 7 Nov 2023 22:29:22 -0500
> 
> I believe there is a regression, but possibly intentional, caused by this patch:
> https://github.com/emacs-mirror/emacs/commit/203e61ff837128b397eb313a5bb1b703f0eae0ec
> 
> This affects minibuffers created when (kbd-macro-query t) is called as
> part of the hook that runs when the (read-from-minibuffer) function is
> called. You get the error message "Not in most nested command loop". For
> example, this code here:
> https://www.emacswiki.org/emacs/KeyboardMacros#h5o-5
> 
> Or, pasting the code in question:
> 
>     (defun my-macro-query (arg)
>       "Prompt for input using minibuffer during kbd macro execution.
>     With prefix argument, allows you to select what prompt string to use.
>     If the input is non-empty, it is inserted at point."
>       (interactive "P")
>       (let* ((prompt (if arg (read-from-minibuffer "PROMPT: ") "Input: "))
>              (input (minibuffer-with-setup-hook (lambda () (kbd-macro-query t))
>                       (read-from-minibuffer prompt))))
>         (unless (string= "" input) (insert input))))
>     (global-set-key (kbd "C-x Q") 'my-macro-query)
> 
> If you attempt to start a keyboard macro via F3, then attempt to read a
> minibuffer with the above code via C-x Q, upon pressing ENTER to close
> the minibuffer, you get the following error message:
> "Not in most nested command loop"
> 
> You won't be able to close out the minibuffer, the only way I found to
> proceed was to C-] or multiple escapes, which canceled the keyboard
> macro creation. As a result, it appears we can't use the above method to
> read and set variables during keyboard macro creation. I'm not sure if
> this is intentional or not, or if there's a replacement for the above or
> not. But it appears to be a regression from before that series of patches.

Alan, can you please look into this?




Information forwarded to bug-gnu-emacs@HIDDEN:
bug#66998; Package emacs. Full text available.

Message received at 66998 <at> debbugs.gnu.org:


Received: (at 66998) by debbugs.gnu.org; 8 Nov 2023 07:34:02 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Wed Nov 08 02:34:02 2023
Received: from localhost ([127.0.0.1]:43927 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1r0d4b-0008PH-NN
	for submit <at> debbugs.gnu.org; Wed, 08 Nov 2023 02:34:02 -0500
Received: from mail-pg1-x535.google.com ([2607:f8b0:4864:20::535]:43020)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <morgon.kanter@HIDDEN>) id 1r0cGf-00072B-8g
 for 66998 <at> debbugs.gnu.org; Wed, 08 Nov 2023 01:42:26 -0500
Received: by mail-pg1-x535.google.com with SMTP id
 41be03b00d2f7-5b9390d6bd3so364350a12.0
 for <66998 <at> debbugs.gnu.org>; Tue, 07 Nov 2023 22:41:46 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=gmail.com; s=20230601; t=1699425700; x=1700030500; darn=debbugs.gnu.org;
 h=to:subject:message-id:date:from:mime-version:from:to:cc:subject
 :date:message-id:reply-to;
 bh=jjrsXxtSyXj59KAnm4SZugmAx4TTCkaYWxermQHopL8=;
 b=KH3qcy0CwFE2+ZHjUW1f3bsR3Nwtz65cKnPWzkApkAXZc68pmFfj4Hj5fYAt+XLXrK
 n53g/H3tunsKmQni2YLkNWERrZ9CKD/qPKwM0dLSK/MJEhJMb4+s+gaiR5uogqr+qurT
 5mb0XqBeu6Tn/fOk/82lSOUBdUPWpdrppZ7gb29OHlTtGRiJh57b/4pGofoUmrJhhwFA
 SCueM4HKT7fp+apHk7QV3+T+xldS0a5tS+NPtE1wRE6z7XrMQ3J4Szj5/CLwBFJ4JsWX
 VVdkDYXB9DaTwQn2YaYkfHOvUM6pg+FgTuZTeOK+FO/QimODkX0N6PcajotwOWRF2jbI
 s/CQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20230601; t=1699425700; x=1700030500;
 h=to:subject:message-id:date:from:mime-version:x-gm-message-state
 :from:to:cc:subject:date:message-id:reply-to;
 bh=jjrsXxtSyXj59KAnm4SZugmAx4TTCkaYWxermQHopL8=;
 b=aMK2J/BbbohVhrDVLna2/WogkN3m9lVQ2KB4vlvh9DtCgCHS8HhINMQ82dKPPUf1M8
 KnunZyMkdgX3dTbAupkOFPikw8emfBlvChLaZ48geEilO9ksDiqg3hyO/felGct27sHy
 cfzdqOMJaBo82UvBoe/2qIWPZKFCxEk75LWOzZcX5Q1PGdu3NYWQ+90riMP5WC7c8Z0N
 NCbAUrwVRu3D03akhVTYVxcwzzRJ2VB/38dBW5EU+gMnJrtR32QmNp+QXA8nsu91Uom2
 UVX5XBSfblAGW5mrb9kOMgJF2RTnXLpde8mYsoJQibR6Z4YzWsYio9ZsNYrfo+iTnkmL
 lTsQ==
X-Gm-Message-State: AOJu0Yxp/52o38zNhGDFs1xCJCyeHfS984EcK6iNGUlpUBq/ApI95BT4
 KKM1/g+EfbMGl4J+dST8AqvyTE37NyKjUkx9d1F2Zw==
X-Google-Smtp-Source: AGHT+IGLOJy+FELcDMtC60DDqYO2zSq05pnANGsB1D+zAG86qkEE9Yg3TGaMn9WguO5/o65X6yQLSYT9jliSJizfJ6I=
X-Received: by 2002:a17:90a:1157:b0:27d:2d2f:9ca2 with SMTP id
 d23-20020a17090a115700b0027d2d2f9ca2mr6410052pje.24.1699425700266; Tue, 07
 Nov 2023 22:41:40 -0800 (PST)
MIME-Version: 1.0
From: Morgon Kanter <morgon.kanter@HIDDEN>
Date: Wed, 8 Nov 2023 01:41:29 -0500
Message-ID: <CAMGeJwk7Z_zNikF+RGtPcWkKRbBmd2FgxymNwWuFZdBxjxB=FA@HIDDEN>
Subject: Further information
To: 66998 <at> debbugs.gnu.org
Content-Type: multipart/alternative; boundary="0000000000002fc8ad06099e6170"
X-Spam-Score: 0.0 (/)
X-Debbugs-Envelope-To: 66998
X-Mailman-Approved-At: Wed, 08 Nov 2023 02:34:00 -0500
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)

--0000000000002fc8ad06099e6170
Content-Type: text/plain; charset="UTF-8"

Some additional information --

It works the same whether you use kbd-macro-query or recursive-edit in the
hook. Adding exit-recursive-edit to the minibuffer-exit hook doesn't help.

To actually finish typing in the minibuffer, it appears like you need to do
M-C-c, and then you can press enter to finish.

-- Morgon

--0000000000002fc8ad06099e6170
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Some additional information --<div><br></div><div>It works=
 the same whether you use kbd-macro-query or recursive-edit in the hook. Ad=
ding exit-recursive-edit to the minibuffer-exit hook doesn&#39;t help.</div=
><div><br></div><div>To actually finish typing in the minibuffer, it appear=
s like you need to do M-C-c, and then you can press enter to finish.</div><=
div><br></div><div>-- Morgon</div></div>

--0000000000002fc8ad06099e6170--




Information forwarded to bug-gnu-emacs@HIDDEN:
bug#66998; Package emacs. Full text available.

Message received at submit <at> debbugs.gnu.org:


Received: (at submit) by debbugs.gnu.org; 8 Nov 2023 06:17:44 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Wed Nov 08 01:17:44 2023
Received: from localhost ([127.0.0.1]:43907 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1r0bsj-0006J5-Uk
	for submit <at> debbugs.gnu.org; Wed, 08 Nov 2023 01:17:44 -0500
Received: from lists.gnu.org ([2001:470:142::17]:36340)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <morgon.kanter@HIDDEN>) id 1r0ZGo-0001g4-Ub
 for submit <at> debbugs.gnu.org; Tue, 07 Nov 2023 22:30:24 -0500
Received: from eggs.gnu.org ([2001:470:142:3::10])
 by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <morgon.kanter@HIDDEN>)
 id 1r0ZG6-00070k-R9
 for bug-gnu-emacs@HIDDEN; Tue, 07 Nov 2023 22:29:38 -0500
Received: from mail-pj1-x1034.google.com ([2607:f8b0:4864:20::1034])
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)
 (Exim 4.90_1) (envelope-from <morgon.kanter@HIDDEN>)
 id 1r0ZG4-0007Ks-2r
 for bug-gnu-emacs@HIDDEN; Tue, 07 Nov 2023 22:29:38 -0500
Received: by mail-pj1-x1034.google.com with SMTP id
 98e67ed59e1d1-28098ebd5aeso5910753a91.0
 for <bug-gnu-emacs@HIDDEN>; Tue, 07 Nov 2023 19:29:35 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=gmail.com; s=20230601; t=1699414174; x=1700018974; darn=gnu.org;
 h=to:subject:message-id:date:from:mime-version:from:to:cc:subject
 :date:message-id:reply-to;
 bh=qcNAWqc1FlGs3b3o9IU8CKd0Vq3mfaLrwmleB83GHKY=;
 b=JIhwR5CJfqIUhFXQztlM5X84eEnor4EwVolZFedKK7virVfcLhV2m8lDX8PcggLvym
 XeI8IdosGTN9n/HqxZQ6MFfS3Cgaub7YksIBZgvnjU7Sf3LTHcxFCuMmchx65wxSY/Su
 /BfCRxm1sSdDeF6gYPzMO7Sm/nIasKmgFwv14AmF+x6qk6nvzBcm73eI3JtgpoFAA8h6
 gAW4Y0RniOPbnwX4d2MEOXnK+5GW8dni1z1XQyxU+mv6TQdeugtW3sZQlTKSAT+014jX
 WdnyugFOffarGhT32Wr3EKGGolrBM0ISTGpJVcHopNhW668/2SYsxiuo9RMa8eiK3g+k
 QzzA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20230601; t=1699414174; x=1700018974;
 h=to:subject:message-id:date:from:mime-version:x-gm-message-state
 :from:to:cc:subject:date:message-id:reply-to;
 bh=qcNAWqc1FlGs3b3o9IU8CKd0Vq3mfaLrwmleB83GHKY=;
 b=tdxbdfT0pmWRHXWzfNbqaVZIIBXLPb2wauwIJNXK1UItc15smZBgVZ6vkA7X+K1wgl
 WeML0Sx7kZXsgLNrTMOlgx3mHYtgh3R4E7FtdBKy48jvkN3yEze6fv5mtUmH7KK1POCL
 u+hVUmf8KBJAHXJM6lGN5H3Bo7CVqAQ0+fNYDuCFu8rym9WsfFWQygRlAhEOPz0ckWB9
 tx0hstommK1SgCRF/1D6iBwcrXpjZVpoM8W8MIRNutbjvqQy14YgtjSlUtewkJgq2YV7
 Z+gUMzOnAvu5BYl4VJev1lx6sqv1+kAVxViOCxGJoYrwTykwUPscwLCSfza4eGgVAm59
 TsoQ==
X-Gm-Message-State: AOJu0Yx3FQw6irjOfWNO7cwcMnCu9Ea90Hkpb+uo1MeF3C/Arev1BSBI
 EhFAhHtwOLW4w96smfXaEXlUPxsQhLithbDoXFA3vbrS
X-Google-Smtp-Source: AGHT+IHbi7JvAI3KGZmb5TX8mzC7aayO9VxpwRBd7eB+5sCXttqKUOAsG+IvBchpoaBt3A/Th2PAsca5fuyLed9sKFc=
X-Received: by 2002:a17:90b:4a05:b0:280:35d:4532 with SMTP id
 kk5-20020a17090b4a0500b00280035d4532mr676151pjb.14.1699414173447; Tue, 07 Nov
 2023 19:29:33 -0800 (PST)
MIME-Version: 1.0
From: Morgon Kanter <morgon.kanter@HIDDEN>
Date: Tue, 7 Nov 2023 22:29:22 -0500
Message-ID: <CAMGeJwkMJTKwRi6wEj5uYLh+6KNwJv-AYXkwCYg9HY1yNn0L_Q@HIDDEN>
Subject: 29.1; Regression for recursive keyboard macros + minibuffers in (I
 think) Emacs 28
To: bug-gnu-emacs@HIDDEN
Content-Type: multipart/alternative; boundary="000000000000227a8306099bb283"
Received-SPF: pass client-ip=2607:f8b0:4864:20::1034;
 envelope-from=morgon.kanter@HIDDEN; helo=mail-pj1-x1034.google.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, FREEMAIL_FROM=0.001,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no
X-Spam_action: no action
X-Spam-Score: 1.0 (+)
X-Debbugs-Envelope-To: submit
X-Mailman-Approved-At: Wed, 08 Nov 2023 01:17:41 -0500
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -0.0 (/)

--000000000000227a8306099bb283
Content-Type: text/plain; charset="UTF-8"

I believe there is a regression, but possibly intentional, caused by this
patch:
https://github.com/emacs-mirror/emacs/commit/203e61ff837128b397eb313a5bb1b703f0eae0ec

This affects minibuffers created when (kbd-macro-query t) is called as
part of the hook that runs when the (read-from-minibuffer) function is
called. You get the error message "Not in most nested command loop". For
example, this code here:
https://www.emacswiki.org/emacs/KeyboardMacros#h5o-5

Or, pasting the code in question:

    (defun my-macro-query (arg)
      "Prompt for input using minibuffer during kbd macro execution.
    With prefix argument, allows you to select what prompt string to use.
    If the input is non-empty, it is inserted at point."
      (interactive "P")
      (let* ((prompt (if arg (read-from-minibuffer "PROMPT: ") "Input: "))
             (input (minibuffer-with-setup-hook (lambda () (kbd-macro-query
t))
                      (read-from-minibuffer prompt))))
        (unless (string= "" input) (insert input))))
    (global-set-key (kbd "C-x Q") 'my-macro-query)

If you attempt to start a keyboard macro via F3, then attempt to read a
minibuffer with the above code via C-x Q, upon pressing ENTER to close
the minibuffer, you get the following error message:
"Not in most nested command loop"

You won't be able to close out the minibuffer, the only way I found to
proceed was to C-] or multiple escapes, which canceled the keyboard
macro creation. As a result, it appears we can't use the above method to
read and set variables during keyboard macro creation. I'm not sure if
this is intentional or not, or if there's a replacement for the above or
not. But it appears to be a regression from before that series of patches.


In GNU Emacs 29.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38,
cairo version 1.17.8)
Windowing system distributor 'Microsoft Corporation', version 11.0.12010000
System Description: Arch Linux

Configured using:
 'configure --with-x-toolkit=gtk3 --with-native-compilation=aot
 --sysconfdir=/etc --prefix=/usr --libexecdir=/usr/lib
 --with-tree-sitter --localstatedir=/var --with-cairo
 --disable-build-details --with-harfbuzz --with-libsystemd
 --with-modules 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe -fno-plt
 -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security
 -fstack-clash-protection -fcf-protection -g
 -ffile-prefix-map=/build/emacs/src=/usr/src/debug/emacs -flto=auto'
 'LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -flto=auto'
 'CXXFLAGS=-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions
 -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security
 -fstack-clash-protection -fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -g
 -ffile-prefix-map=/build/emacs/src=/usr/src/debug/emacs -flto=auto''

Configured features:
ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG
JSON LCMS2 LIBOTF LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATIVE_COMP NOTIFY
INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF
TOOLKIT_SCROLL_BARS TREE_SITTER WEBP X11 XDBE XIM XINPUT2 XPM GTK3 ZLIB

Important settings:
  value of $LANG: en_US.UTF-8
  locale-coding-system: utf-8-unix

Major mode: ELisp/d

Minor modes in effect:
  global-git-commit-mode: t
  magit-auto-revert-mode: t
  shell-dirtrack-mode: t
  marginalia-mode: t
  override-global-mode: t
  vertico-mode: t
  which-key-mode: t
  server-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  show-paren-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  column-number-mode: t
  line-number-mode: t
  transient-mark-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t

Load-path shadows:
/home/surgo/.emacs.d/elpa/transient-20231103.2312/transient hides
/usr/share/emacs/29.1/lisp/transient
/home/surgo/.emacs.d/elpa/seq-2.24/seq hides
/usr/share/emacs/29.1/lisp/emacs-lisp/seq

Features:
(shadow sort mail-extr emacsbug minibuf-eldef thingatpt misearch
multi-isearch cl-print debug backtrace find-func mule-util shortdoc
help-fns radix-tree macros dired-aux cc-styles cc-align cc-engine
cc-vars cc-defs magit-submodule magit-blame magit-stash magit-reflog
magit-bisect magit-push magit-pull magit-fetch magit-clone magit-remote
magit-commit magit-sequence magit-notes magit-worktree magit-tag
magit-merge magit-branch magit-reset magit-files magit-refs magit-status
magit magit-repos magit-apply magit-wip magit-log which-func imenu
magit-diff smerge-mode diff diff-mode git-commit log-edit message
sendmail yank-media puny dired dired-loaddefs rfc822 mml mml-sec epa
derived epg rfc6068 epg-config gnus-util text-property-search time-date
mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 mm-util
ietf-drums mail-prsvr mailabbrev mail-utils gmm-utils mailheader
pcvs-util add-log magit-core magit-autorevert autorevert filenotify
magit-margin magit-transient magit-process with-editor comp comp-cstr
warnings icons rx shell pcomplete comint ansi-osc ring ansi-color
magit-mode transient magit-git magit-base magit-section format-spec
cursor-sensor crm dash marginalia edmacro kmacro use-package-bind-key
bind-key easy-mmode vertico compat diminish which-key cl-extra help-mode
use-package-diminish use-package-core tango-dark-theme server
magit-autoloads pcase git-commit-autoloads magit-section-autoloads
dash-autoloads marginalia-autoloads projectile-autoloads
transient-autoloads vertico-autoloads with-editor-autoloads info
compat-autoloads seq-autoloads package browse-url url url-proxy
url-privacy url-expand url-methods url-history url-cookie
generate-lisp-file url-domsuf url-util mailcap url-handlers url-parse
auth-source cl-seq eieio eieio-core cl-macs password-cache json subr-x
map byte-opt gv bytecomp byte-compile url-vars cl-loaddefs cl-lib rmc
iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook
vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win
term/common-win x-dnd tool-bar dnd fontset image regexp-opt fringe
tabulated-list replace newcomment text-mode lisp-mode prog-mode register
page tab-bar menu-bar rfn-eshadow isearch easymenu timer select
scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors
frame minibuffer nadvice seq simple cl-generic indonesian philippine
cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao
korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech
european ethiopic indian cyrillic chinese composite emoji-zwj charscript
charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure
cl-preloaded button loaddefs theme-loaddefs faces cus-face macroexp
files window text-properties overlay sha1 md5 base64 format env
code-pages mule custom widget keymap hashtable-print-readable backquote
threads dbusbind inotify lcms2 dynamic-setting system-font-setting
font-render-setting cairo move-toolbar gtk x-toolkit xinput2 x multi-tty
make-network-process native-compile emacs)

Memory information:
((conses 16 241723 51274)
 (symbols 48 17022 0)
 (strings 32 64370 2962)
 (string-bytes 1 2928754)
 (vectors 16 41856)
 (vector-slots 8 758358 34977)
 (floats 8 161 322)
 (intervals 56 1802 323)
 (buffers 984 17))

--000000000000227a8306099bb283
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">I believe there is a regression, but possibly intentional,=
 caused by this patch:<br><a href=3D"https://github.com/emacs-mirror/emacs/=
commit/203e61ff837128b397eb313a5bb1b703f0eae0ec">https://github.com/emacs-m=
irror/emacs/commit/203e61ff837128b397eb313a5bb1b703f0eae0ec</a><br><br>This=
 affects minibuffers created when (kbd-macro-query t) is called as<br>part =
of the hook that runs when the (read-from-minibuffer) function is<br>called=
. You get the error message &quot;Not in most nested command loop&quot;. Fo=
r<br>example, this code here:<br><a href=3D"https://www.emacswiki.org/emacs=
/KeyboardMacros#h5o-5">https://www.emacswiki.org/emacs/KeyboardMacros#h5o-5=
</a><br><br>Or, pasting the code in question:<br><br>=C2=A0 =C2=A0 (defun m=
y-macro-query (arg)<br>=C2=A0 =C2=A0 =C2=A0 &quot;Prompt for input using mi=
nibuffer during kbd macro execution.<br>=C2=A0 =C2=A0 With prefix argument,=
 allows you to select what prompt string to use.<br>=C2=A0 =C2=A0 If the in=
put is non-empty, it is inserted at point.&quot;<br>=C2=A0 =C2=A0 =C2=A0 (i=
nteractive &quot;P&quot;)<br>=C2=A0 =C2=A0 =C2=A0 (let* ((prompt (if arg (r=
ead-from-minibuffer &quot;PROMPT: &quot;) &quot;Input: &quot;))<br>=C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(input (minibuffer-with-setup-hook=
 (lambda () (kbd-macro-query t))<br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (read-from-minibuffer prompt))))<br>=
=C2=A0 =C2=A0 =C2=A0 =C2=A0 (unless (string=3D &quot;&quot; input) (insert =
input))))<br>=C2=A0 =C2=A0 (global-set-key (kbd &quot;C-x Q&quot;) &#39;my-=
macro-query)<br><br>If you attempt to start a keyboard macro via F3, then a=
ttempt to read a<br>minibuffer with the above code via C-x Q, upon pressing=
 ENTER to close<br>the minibuffer, you get the following error message:<br>=
&quot;Not in most nested command loop&quot;<br><br>You won&#39;t be able to=
 close out the minibuffer, the only way I found to<br>proceed was to C-] or=
 multiple escapes, which canceled the keyboard<br>macro creation. As a resu=
lt, it appears we can&#39;t use the above method to<br>read and set variabl=
es during keyboard macro creation. I&#39;m not sure if<br>this is intention=
al or not, or if there&#39;s a replacement for the above or<br>not. But it =
appears to be a regression from before that series of patches.<br><br><br>I=
n GNU Emacs 29.1 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38,<br>ca=
iro version 1.17.8)<br>Windowing system distributor &#39;Microsoft Corporat=
ion&#39;, version 11.0.12010000<br>System Description: Arch Linux<br><br>Co=
nfigured using:<br>=C2=A0&#39;configure --with-x-toolkit=3Dgtk3 --with-nati=
ve-compilation=3Daot<br>=C2=A0--sysconfdir=3D/etc --prefix=3D/usr --libexec=
dir=3D/usr/lib<br>=C2=A0--with-tree-sitter --localstatedir=3D/var --with-ca=
iro<br>=C2=A0--disable-build-details --with-harfbuzz --with-libsystemd<br>=
=C2=A0--with-modules &#39;CFLAGS=3D-march=3Dx86-64 -mtune=3Dgeneric -O2 -pi=
pe -fno-plt<br>=C2=A0-fexceptions -Wp,-D_FORTIFY_SOURCE=3D2 -Wformat -Werro=
r=3Dformat-security<br>=C2=A0-fstack-clash-protection -fcf-protection -g<br=
>=C2=A0-ffile-prefix-map=3D/build/emacs/src=3D/usr/src/debug/emacs -flto=3D=
auto&#39;<br>=C2=A0&#39;LDFLAGS=3D-Wl,-O1,--sort-common,--as-needed,-z,relr=
o,-z,now -flto=3Dauto&#39;<br>=C2=A0&#39;CXXFLAGS=3D-march=3Dx86-64 -mtune=
=3Dgeneric -O2 -pipe -fno-plt -fexceptions<br>=C2=A0-Wp,-D_FORTIFY_SOURCE=
=3D2 -Wformat -Werror=3Dformat-security<br>=C2=A0-fstack-clash-protection -=
fcf-protection -Wp,-D_GLIBCXX_ASSERTIONS -g<br>=C2=A0-ffile-prefix-map=3D/b=
uild/emacs/src=3D/usr/src/debug/emacs -flto=3Dauto&#39;&#39;<br><br>Configu=
red features:<br>ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS =
HARFBUZZ JPEG<br>JSON LCMS2 LIBOTF LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATI=
VE_COMP NOTIFY<br>INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TI=
FF<br>TOOLKIT_SCROLL_BARS TREE_SITTER WEBP X11 XDBE XIM XINPUT2 XPM GTK3 ZL=
IB<br><br>Important settings:<br>=C2=A0 value of $LANG: en_US.UTF-8<br>=C2=
=A0 locale-coding-system: utf-8-unix<br><br>Major mode: ELisp/d<br><br>Mino=
r modes in effect:<br>=C2=A0 global-git-commit-mode: t<br>=C2=A0 magit-auto=
-revert-mode: t<br>=C2=A0 shell-dirtrack-mode: t<br>=C2=A0 marginalia-mode:=
 t<br>=C2=A0 override-global-mode: t<br>=C2=A0 vertico-mode: t<br>=C2=A0 wh=
ich-key-mode: t<br>=C2=A0 server-mode: t<br>=C2=A0 global-eldoc-mode: t<br>=
=C2=A0 eldoc-mode: t<br>=C2=A0 show-paren-mode: t<br>=C2=A0 electric-indent=
-mode: t<br>=C2=A0 mouse-wheel-mode: t<br>=C2=A0 menu-bar-mode: t<br>=C2=A0=
 file-name-shadow-mode: t<br>=C2=A0 global-font-lock-mode: t<br>=C2=A0 font=
-lock-mode: t<br>=C2=A0 blink-cursor-mode: t<br>=C2=A0 column-number-mode: =
t<br>=C2=A0 line-number-mode: t<br>=C2=A0 transient-mark-mode: t<br>=C2=A0 =
auto-composition-mode: t<br>=C2=A0 auto-encryption-mode: t<br>=C2=A0 auto-c=
ompression-mode: t<br><br>Load-path shadows:<br>/home/surgo/.emacs.d/elpa/t=
ransient-20231103.2312/transient hides /usr/share/emacs/29.1/lisp/transient=
<br>/home/surgo/.emacs.d/elpa/seq-2.24/seq hides /usr/share/emacs/29.1/lisp=
/emacs-lisp/seq<br><br>Features:<br>(shadow sort mail-extr emacsbug minibuf=
-eldef thingatpt misearch<br>multi-isearch cl-print debug backtrace find-fu=
nc mule-util shortdoc<br>help-fns radix-tree macros dired-aux cc-styles cc-=
align cc-engine<br>cc-vars cc-defs magit-submodule magit-blame magit-stash =
magit-reflog<br>magit-bisect magit-push magit-pull magit-fetch magit-clone =
magit-remote<br>magit-commit magit-sequence magit-notes magit-worktree magi=
t-tag<br>magit-merge magit-branch magit-reset magit-files magit-refs magit-=
status<br>magit magit-repos magit-apply magit-wip magit-log which-func imen=
u<br>magit-diff smerge-mode diff diff-mode git-commit log-edit message<br>s=
endmail yank-media puny dired dired-loaddefs rfc822 mml mml-sec epa<br>deri=
ved epg rfc6068 epg-config gnus-util text-property-search time-date<br>mm-d=
ecode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 mm-util<br>iet=
f-drums mail-prsvr mailabbrev mail-utils gmm-utils mailheader<br>pcvs-util =
add-log magit-core magit-autorevert autorevert filenotify<br>magit-margin m=
agit-transient magit-process with-editor comp comp-cstr<br>warnings icons r=
x shell pcomplete comint ansi-osc ring ansi-color<br>magit-mode transient m=
agit-git magit-base magit-section format-spec<br>cursor-sensor crm dash mar=
ginalia edmacro kmacro use-package-bind-key<br>bind-key easy-mmode vertico =
compat diminish which-key cl-extra help-mode<br>use-package-diminish use-pa=
ckage-core tango-dark-theme server<br>magit-autoloads pcase git-commit-auto=
loads magit-section-autoloads<br>dash-autoloads marginalia-autoloads projec=
tile-autoloads<br>transient-autoloads vertico-autoloads with-editor-autoloa=
ds info<br>compat-autoloads seq-autoloads package browse-url url url-proxy<=
br>url-privacy url-expand url-methods url-history url-cookie<br>generate-li=
sp-file url-domsuf url-util mailcap url-handlers url-parse<br>auth-source c=
l-seq eieio eieio-core cl-macs password-cache json subr-x<br>map byte-opt g=
v bytecomp byte-compile url-vars cl-loaddefs cl-lib rmc<br>iso-transl toolt=
ip cconv eldoc paren electric uniquify ediff-hook<br>vc-hooks lisp-float-ty=
pe elisp-mode mwheel term/x-win x-win<br>term/common-win x-dnd tool-bar dnd=
 fontset image regexp-opt fringe<br>tabulated-list replace newcomment text-=
mode lisp-mode prog-mode register<br>page tab-bar menu-bar rfn-eshadow isea=
rch easymenu timer select<br>scroll-bar mouse jit-lock font-lock syntax fon=
t-core term/tty-colors<br>frame minibuffer nadvice seq simple cl-generic in=
donesian philippine<br>cham georgian utf-8-lang misc-lang vietnamese tibeta=
n thai tai-viet lao<br>korean japanese eucjp-ms cp51932 hebrew greek romani=
an slovak czech<br>european ethiopic indian cyrillic chinese composite emoj=
i-zwj charscript<br>charprop case-table epa-hook jka-cmpr-hook help abbrev =
obarray oclosure<br>cl-preloaded button loaddefs theme-loaddefs faces cus-f=
ace macroexp<br>files window text-properties overlay sha1 md5 base64 format=
 env<br>code-pages mule custom widget keymap hashtable-print-readable backq=
uote<br>threads dbusbind inotify lcms2 dynamic-setting system-font-setting<=
br>font-render-setting cairo move-toolbar gtk x-toolkit xinput2 x multi-tty=
<br>make-network-process native-compile emacs)<br><br>Memory information:<b=
r>((conses 16 241723 51274)<br>=C2=A0(symbols 48 17022 0)<br>=C2=A0(strings=
 32 64370 2962)<br>=C2=A0(string-bytes 1 2928754)<br>=C2=A0(vectors 16 4185=
6)<br>=C2=A0(vector-slots 8 758358 34977)<br>=C2=A0(floats 8 161 322)<br>=
=C2=A0(intervals 56 1802 323)<br>=C2=A0(buffers 984 17))<br></div>

--000000000000227a8306099bb283--




Acknowledgement sent to Morgon Kanter <morgon.kanter@HIDDEN>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs@HIDDEN. Full text available.
Report forwarded to bug-gnu-emacs@HIDDEN:
bug#66998; Package emacs. Full text available.
Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.
Last modified: Thu, 9 Nov 2023 17:45:01 UTC

GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997 nCipher Corporation Ltd, 1994-97 Ian Jackson.