From unknown Tue Aug 19 12:51:31 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#6093 <6093@debbugs.gnu.org> To: bug#6093 <6093@debbugs.gnu.org> Subject: Status: 24.0.50; kbd-macro breaks atomic-change-group Reply-To: bug#6093 <6093@debbugs.gnu.org> Date: Tue, 19 Aug 2025 19:51:31 +0000 retitle 6093 24.0.50; kbd-macro breaks atomic-change-group reassign 6093 emacs submitter 6093 Andreas Politz severity 6093 normal tag 6093 moreinfo patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon May 03 15:19:15 2010 Received: (at submit) by debbugs.gnu.org; 3 May 2010 19:19:15 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O91Ag-0005MS-Sx for submit@debbugs.gnu.org; Mon, 03 May 2010 15:19:15 -0400 Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O91Ae-0005MN-G3 for submit@debbugs.gnu.org; Mon, 03 May 2010 15:19:13 -0400 Received: from lists.gnu.org ([199.232.76.165]:37186) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1O91Aa-0000HC-0V for submit@debbugs.gnu.org; Mon, 03 May 2010 15:19:08 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O91AZ-0004T3-FY for bug-gnu-emacs@gnu.org; Mon, 03 May 2010 15:19:07 -0400 Received: from [140.186.70.92] (port=44028 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O91AT-0004It-PH for bug-gnu-emacs@gnu.org; Mon, 03 May 2010 15:19:06 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.0 (2010-01-18) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_MED, T_DKIM_INVALID,T_RP_MATCHES_RCVD autolearn=unavailable version=3.3.0 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O91AP-0004FJ-Hk for bug-gnu-emacs@gnu.org; Mon, 03 May 2010 15:19:01 -0400 Received: from gateway-a.fh-trier.de ([143.93.54.181]:35801) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O91AP-0004D6-3o for bug-gnu-emacs@gnu.org; Mon, 03 May 2010 15:18:57 -0400 Received: from raven (dslb-084-059-215-212.pools.arcor-ip.net [84.59.215.212]) (Authenticated sender: politza) by gateway-a.fh-trier.de (Postfix) with ESMTP id BEE79173AEB2 for ; Mon, 3 May 2010 21:18:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=simple/simple; d=fh-trier.de; s=default; t=1272914308; bh=YYCvVeCfQbubNkE9yceSdciq1N8=; h=From:To:Subject: Date:Message-ID:MIME-Version:Content-Type; b=SQjNFh40azloI4ndi7tCI qkHdcEM2+Jq0xXOvDUZAVldyttWZLGYiFPMio6t42uWCQhwRTqcJKRnlR8p07Q+fAl5 1cHDvpe2BJhWGvzdr3CfF/SHOUQaqU+iqMkVJQRn+8Q0LhXiakOIfaI2OHtjqOqbsBC bcJyr4qgoWBK6jDc= From: Andreas Politz To: bug-gnu-emacs@gnu.org Subject: 24.0.50; kbd-macro breaks atomic-change-group Date: Mon, 03 May 2010 21:18:27 +0200 Message-ID: <87ocgwssjg.fsf@fh-trier.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: by Amavisd-new + McAfee uvscan + ClamAV [Rechenzentrum FH-Trier (r/ft)] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.1 (-----) I believe this to be a bug. Executing a kbd-macro inside a atomic-change-group signals an error, if the group gets cancelled via `cancel-change-group'. (setq buffer-undo-list (list nil)) (atomic-change-group (execute-kbd-macro "foobar.sFOOBAR")) I believe the problem is self-inserting-command popping the nil from buffer-undo-list, which in turn makes cancel-change-group believe it's understandging of the list became corrupted. I think it's safe to ignore the car, if it's nil, and proceed on the cdr. The next command will push a new nil anyway (as far as I can tell). Anyway, that's what this is based upon : diff -c -B -w /home/politza/src/emacs23/lisp/subr.el /tmp/buffer-content-32254fF *** /home/politza/src/emacs23/lisp/subr.el Sat May 1 10:39:53 2010 --- /tmp/buffer-content-32254fF Mon May 3 21:14:56 2010 *************** *** 2145,2150 **** --- 2145,2155 ---- (dolist (elt handle) (with-current-buffer (car elt) (setq elt (cdr elt)) + ;; The command loop may have changed the first cons, if it was a + ;; boundary (nil), skip it. + (when (and (cdr elt) + (null (car elt))) + (setq elt (cdr elt))) (save-restriction ;; Widen buffer temporarily so if the buffer was narrowed within ;; the body of `atomic-change-group' all changes can be undone. Diff finished. Mon May 3 21:14:56 2010 In GNU Emacs 24.0.50.3 (x86_64-unknown-linux-gnu, GTK+ Version 2.18.9) of 2010-05-03 on raven Windowing system distributor `The X.Org Foundation', version 11.0.10705000 Important settings: value of $LC_ALL: C value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_US.UTF-8 value of $XMODIFIERS: nil locale-coding-system: utf-8-unix default enable-multibyte-characters: t Major mode: Text Minor modes in effect: diff-auto-refine-mode: t narrow-stack-mode: t server-mode: t easy-repeat-mode: t shell-dirtrack-mode: t recentf-mode: t ido-hacks-mode: t window-numbering-mode: t which-function-mode: t show-paren-mode: t ido-everywhere: t icomplete-mode: t global-hi-lock-mode: t hi-lock-mode: t display-time-mode: t savehist-mode: t tooltip-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-encryption-mode: t auto-compression-mode: t column-number-mode: t line-number-mode: t transient-mark-mode: t Recent input: c d r C-n TAB C-n TAB C-e C-M-b C-o M-; T h e SPC c o m m a n d SPC l o o p SPC m a y SPC h a v e SPC c h a n g e d SPC t h e SPC f i r s t SPC c o n s , SPC i f SPC i t ' s SPC c a r SPC M-h M-h M-h w a s SPC a SPC b o u n d a r y SPC ( C-h C-h SPC ( n i l ) M-q . C-p C-e M-b M-b i t SPC M-q C-n C-p M-b M-b M-b M-b M-b M-b M-b M-b C-n C-h , SPC s k i p SPC i t . M-q M-1 C-j C-j C-p C-p M-q M-x t e x t - C-n C-j A n y w a y SPC C-h , SPC t h a t ' s SPC w h a t SPC h t h i s SPC i s SPC b a s e d SPC u p o n SPC : M-2 M-q C-M-x M-1 C-x C-g C-p C-p C-p C-p C-p C-p C-p C-p C-p C-x C-e q M-2 C-n M-m C-M-SPC M-; C-M-x M-1 C-x C-e q q C-/ M-2 C-/ M-x d i f f - b u M-1 C-x h M-w C-, C-, C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-j C-y C-p C-p C-p C-p C-p C-p C-p C-p C-p C-p C-p C-p C-p C-p C-p C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-n C-k C-k M-\ C-p C-k C-k C-/ C-/ C-/ C-/ C-x h C-w M-x r e p o Recent messages: Back to top level. Mark set cancel-change-group Type C-. for help. Entering debugger... [2 times] Back to top level. Undo! [2 times] Mark set [3 times] Undo! [4 times] Mark set [2 times] Load-path shadows: /home/politza/.emacs.d/minor-modes/ido hides /home/politza/src/emacs23/lisp/ido Features: (shadow emacsbug whitespace diff-mode diff browse-kill-ring apropos gnus-cite smiley ansi-color gnus-async gnus-bcklg qp sort gnus-ml disp-table parse-time nnfolder nnmbox utf-7 utf7 netrc starttls nnimap imap nndraft nnmh bbdb-gnus bbdb-snarf mail-extr bbdb-com warnings nnnil gnus-agent gnus-srvr gnus-score score-mode nnvirtual gnus-msg gnus-art mm-uu mml2015 epg-config mm-view smime dig mailcap nntp gnus-cache gnus-sum nnoo gnus-group gnus-undo nnmail mail-source gnus-start gnus-spec gnus-win jka-compr find-dired cl-specs edebug newcomment thingatpt help-mode view debug vc-dispatcher vc-svn reposition etags multi-isearch vc-git cc-mode cc-fonts cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs find-func minibuffer-regexp pascal narrow-stack org org-footnote org-src org-list org-faces org-compat org-entities org-macs noutline outline ispell closure byte-opt bytecomp byte-compile gnus-int gnus-range message rfc822 mml mml-sec mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 ietf-drums mailabbrev gmm-utils mailheader gnus gnus-ems nnheader mail-utils mm-util mail-prsvr avoid server easy-repeat repeat eldoc linux tex-site auto-loads ibuf-macs ibuf-ext ibuffer dired-x dired-aux dired dired-details tramp-imap assoc tramp-gw tramp-fish tramp-smb tramp-cache tramp-ftp tramp-cmds tramp auth-source gnus-util shell password-cache format-spec tramp-compat trampver time-date recentf tree-widget wid-edit easymenu generic ido-hacks hippie-exp my-anything anything edmacro kmacro kbd-helper derived org-install bbdb-autoloads bbdb timezone persistent-scratch-buffer window-numbering easy-mmode cl cl-19 uniquify winner which-func imenu paren ido icomplete grep compile comint regexp-opt ring hi-lock time cus-start cus-load saveplace savehist advice help-fns advice-preload tooltip ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd tool-bar dnd fontset image fringe lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mldrag mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev loaddefs button minibuffer faces cus-face files text-properties overlay md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind dynamic-setting font-render-setting gtk x-toolkit x multi-tty emacs) From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 21 19:55:01 2019 Received: (at control) by debbugs.gnu.org; 21 Aug 2019 23:55:01 +0000 Received: from localhost ([127.0.0.1]:36833 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i0aRR-0001LV-DY for submit@debbugs.gnu.org; Wed, 21 Aug 2019 19:55:01 -0400 Received: from quimby.gnus.org ([80.91.231.51]:45514) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i0aRP-0001LN-HK for control@debbugs.gnu.org; Wed, 21 Aug 2019 19:54:59 -0400 Received: from 77.18.59.87.tmi.telenormobil.no ([77.18.59.87] helo=sandy) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1i0aRM-0007mF-DH for control@debbugs.gnu.org; Thu, 22 Aug 2019 01:54:58 +0200 Date: Wed, 21 Aug 2019 16:54:52 -0700 Message-Id: <87v9uqt6pf.fsf@mouse.gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #6093 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 6093 + patch 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 0.0 TVD_RCVD_IP Message was received from an IP address -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 6093 + patch quit From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 01 15:11:29 2019 Received: (at 6093) by debbugs.gnu.org; 1 Oct 2019 19:11:29 +0000 Received: from localhost ([127.0.0.1]:34778 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iFNYX-0003Lo-9B for submit@debbugs.gnu.org; Tue, 01 Oct 2019 15:11:29 -0400 Received: from quimby.gnus.org ([80.91.231.51]:58314) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iFNYV-0003Ld-7q for 6093@debbugs.gnu.org; Tue, 01 Oct 2019 15:11:27 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iFNYR-0006rT-1O; Tue, 01 Oct 2019 21:11:25 +0200 From: Lars Ingebrigtsen To: Andreas Politz Subject: Re: bug#6093: 24.0.50; kbd-macro breaks atomic-change-group References: <87ocgwssjg.fsf@fh-trier.de> Date: Tue, 01 Oct 2019 21:11:22 +0200 In-Reply-To: <87ocgwssjg.fsf@fh-trier.de> (Andreas Politz's message of "Mon, 03 May 2010 21:18:27 +0200") Message-ID: <87wodoxov9.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.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: Andreas Politz writes: > I believe this to be a bug. > > Executing a kbd-macro inside a atomic-change-group signals an error, > if the group gets cancelled via `cancel-change-group'. > > (setq buffer-undo-list (list 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: 6093 Cc: 6093@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 (-) Andreas Politz writes: > I believe this to be a bug. > > Executing a kbd-macro inside a atomic-change-group signals an error, > if the group gets cancelled via `cancel-change-group'. > > (setq buffer-undo-list (list nil)) > (atomic-change-group > (execute-kbd-macro "foobar.sFOOBAR")) (I'm going through old bug reports that unfortunately didn't get any response at the time.) I tried eval-ing those two forms, but I didn't get an error. Is there something missing from the recipe, or has this been fixed in the years since this was reported? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Oct 01 15:11:34 2019 Received: (at control) by debbugs.gnu.org; 1 Oct 2019 19:11:34 +0000 Received: from localhost ([127.0.0.1]:34781 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iFNYc-0003M8-K8 for submit@debbugs.gnu.org; Tue, 01 Oct 2019 15:11:34 -0400 Received: from quimby.gnus.org ([80.91.231.51]:58344) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iFNYb-0003M0-0Q for control@debbugs.gnu.org; Tue, 01 Oct 2019 15:11:33 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iFNYX-0006rf-TZ for control@debbugs.gnu.org; Tue, 01 Oct 2019 21:11:32 +0200 Date: Tue, 01 Oct 2019 21:11:29 +0200 Message-Id: <87v9t8xov2.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #6093 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 6093 + moreinfo 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 6093 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Wed Oct 02 01:11:26 2019 Received: (at 6093) by debbugs.gnu.org; 2 Oct 2019 05:11:26 +0000 Received: from localhost ([127.0.0.1]:35287 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iFWv8-0001yH-Dj for submit@debbugs.gnu.org; Wed, 02 Oct 2019 01:11:26 -0400 Received: from gateway-a.fh-trier.de ([143.93.54.181]:50891) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iFWv5-0001y5-QO for 6093@debbugs.gnu.org; Wed, 02 Oct 2019 01:11:24 -0400 X-Virus-Scanned: by Amavisd-new + Sophos + ClamAV [Rechenzentrum Hochschule Trier (RZ/HT)] Received: from localhost (x4db6580b.dyn.telefonica.de [77.182.88.11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: politza) by gateway-a.fh-trier.de (Postfix) with ESMTPSA id 68A4A18E8C36; Wed, 2 Oct 2019 07:11:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha1; c=simple/simple; d=hochschule-trier.de; s=default; t=1569993080; bh=agrSZQQauFFbzWHD5b3jTOVirUk=; h=From:To:Cc:Subject:References:Date:In-Reply-To:Message-ID: MIME-Version:Content-Type; b=qWPrj4Dqwif2OItAu5pkuzk9mCliYI77n3E7iS2tzjvL8XO6pv3f7+50CQYEUcsbp 3mj3Mw3g8zqS1ZIksvuwFVSPdLMc1XgQl+/IRK5YMTqa950ejdKbANmT2oWyIB0ILw QC+rofdvQIcg5EPnNzgZI36p3cnVbeVFMAcdweQA= From: Andreas Politz To: Lars Ingebrigtsen Subject: Re: bug#6093: 24.0.50; kbd-macro breaks atomic-change-group References: <87ocgwssjg.fsf@fh-trier.de> <87wodoxov9.fsf@gnus.org> Date: Wed, 02 Oct 2019 07:11:19 +0200 In-Reply-To: <87wodoxov9.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 01 Oct 2019 21:11:22 +0200") Message-ID: <87imp720lk.fsf@hochschule-trier.de> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 6093 Cc: 6093@debbugs.gnu.org, Andreas Politz 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 (---) Apparently, the macro is supposed to signal an, which it does not necessarily do. Maybe the string contained control-character which got lost. Anyway, I can't reproduce this anymore, after having changed the macro accordingly. Andreas From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 03 11:11:44 2019 Received: (at 6093) by debbugs.gnu.org; 3 Oct 2019 15:11:44 +0000 Received: from localhost ([127.0.0.1]:40803 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG2lc-0002gu-8a for submit@debbugs.gnu.org; Thu, 03 Oct 2019 11:11:44 -0400 Received: from quimby.gnus.org ([80.91.231.51]:49730) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG2la-0002gk-OL for 6093@debbugs.gnu.org; Thu, 03 Oct 2019 11:11:43 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iG2lW-0000T9-8f; Thu, 03 Oct 2019 17:11:40 +0200 From: Lars Ingebrigtsen To: Andreas Politz Subject: Re: bug#6093: 24.0.50; kbd-macro breaks atomic-change-group References: <87ocgwssjg.fsf@fh-trier.de> <87wodoxov9.fsf@gnus.org> <87imp720lk.fsf@hochschule-trier.de> Date: Thu, 03 Oct 2019 17:11:38 +0200 In-Reply-To: <87imp720lk.fsf@hochschule-trier.de> (Andreas Politz's message of "Wed, 02 Oct 2019 07:11:19 +0200") Message-ID: <87lfu1sw2d.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.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: Andreas Politz writes: > Apparently, the macro is supposed to signal an, which it does not > necessarily do. Maybe the string contained control-character which got > lost. Anyway, I can't reproduce this anymore, after havin [...] 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: 6093 Cc: 6093@debbugs.gnu.org, Andreas Politz 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 (-) Andreas Politz writes: > Apparently, the macro is supposed to signal an, which it does not > necessarily do. Maybe the string contained control-character which got > lost. Anyway, I can't reproduce this anymore, after having changed the > macro accordingly. OK; closing the bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 03 11:11:48 2019 Received: (at control) by debbugs.gnu.org; 3 Oct 2019 15:11:48 +0000 Received: from localhost ([127.0.0.1]:40806 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG2lg-0002hB-K7 for submit@debbugs.gnu.org; Thu, 03 Oct 2019 11:11:48 -0400 Received: from quimby.gnus.org ([80.91.231.51]:49746) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iG2lf-0002h3-0i for control@debbugs.gnu.org; Thu, 03 Oct 2019 11:11:47 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iG2lc-0000TN-Ao for control@debbugs.gnu.org; Thu, 03 Oct 2019 17:11:46 +0200 Date: Thu, 03 Oct 2019 17:11:44 +0200 Message-Id: <87k19lsw27.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #6093 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: close 6093 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 (-) close 6093 quit From unknown Tue Aug 19 12:51:31 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 01 Nov 2019 11:24:06 +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