From unknown Sun Jun 22 13:35:12 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#50602 <50602@debbugs.gnu.org> To: bug#50602 <50602@debbugs.gnu.org> Subject: Status: 28.0.50; [PATCH] Make 'C-u C-x v v' handle unregistered files Reply-To: bug#50602 <50602@debbugs.gnu.org> Date: Sun, 22 Jun 2025 20:35:12 +0000 retitle 50602 28.0.50; [PATCH] Make 'C-u C-x v v' handle unregistered files reassign 50602 emacs submitter 50602 Manuel Giraud severity 50602 normal tag 50602 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Sep 15 07:46:11 2021 Received: (at submit) by debbugs.gnu.org; 15 Sep 2021 11:46:11 +0000 Received: from localhost ([127.0.0.1]:51033 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mQTMg-0007ok-IJ for submit@debbugs.gnu.org; Wed, 15 Sep 2021 07:46:11 -0400 Received: from lists.gnu.org ([209.51.188.17]:40274) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mQTMX-0007nr-5M for submit@debbugs.gnu.org; Wed, 15 Sep 2021 07:46:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55238) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mQTMU-0001v2-J7 for bug-gnu-emacs@gnu.org; Wed, 15 Sep 2021 07:46:00 -0400 Received: from ledu-giraud.fr ([51.159.28.247]:3442) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mQTMR-0007YT-Th for bug-gnu-emacs@gnu.org; Wed, 15 Sep 2021 07:45:58 -0400 Received: from elite.giraud ( [10.1.1.1]) by ledu-giraud.fr (OpenSMTPD) with ESMTPSA id 490db5de (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for ; Wed, 15 Sep 2021 13:45:53 +0200 (CEST) From: Manuel Giraud To: bug-gnu-emacs@gnu.org Subject: 28.0.50; [PATCH] Make 'C-u C-x v v' handle unregistered files Date: Wed, 15 Sep 2021 13:45:52 +0200 Message-ID: <87o88u5afj.fsf@elite.giraud> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=51.159.28.247; envelope-from=manuel@ledu-giraud.fr; helo=ledu-giraud.fr X-Spam_score_int: -17 X-Spam_score: -1.8 X-Spam_bar: - X-Spam_report: (-1.8 / 5.0 requ) BAYES_00=-1.9, GAPPY_SUBJECT=0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: submit 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: -2.3 (--) --=-=-= Content-Type: text/plain Hi, Here is a patch that make 'C-u C-x v v' (C-u M-x vc-next-action) works with unregistered file. It let you choose one backend and register the file into it. This was discussed with Eli Zaretskii and Dmitry Gutov in bug#50572. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-Make-C-u-C-x-v-v-handle-unregistered-files.patch >From 5b98eedf80b8aed40fe610eb785ad37a80f03e3d Mon Sep 17 00:00:00 2001 From: Manuel Giraud Date: Wed, 15 Sep 2021 13:31:29 +0200 Subject: [PATCH] Make 'C-u C-x v v' handle unregistered files. --- lisp/vc/vc.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 512f07d2f6..b3a5ff01cf 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -1214,7 +1214,11 @@ vc-next-action ((eq state 'ignored) (error "Fileset files are ignored by the version-control system")) ((or (null state) (eq state 'unregistered)) - (vc-register vc-fileset)) + (cond (verbose + (let ((backend (vc-read-backend "Backend to register to: "))) + (vc-register (cons backend (cdr vc-fileset))))) + (t + (vc-register vc-fileset)))) ;; Files are up-to-date, or need a merge and user specified a revision ((or (eq state 'up-to-date) (and verbose (eq state 'needs-update))) (cond -- 2.33.0 --=-=-= Content-Type: text/plain In GNU Emacs 28.0.50 (build 1, x86_64-unknown-openbsd7.0, X toolkit, cairo version 1.16.0, Xaw3d scroll bars) of 2021-09-13 built on elite.giraud Repository revision: 5ee05fa75d517fdd13c9795aa78e12489140e388 Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.12013000 System Description: OpenBSD elite.giraud 7.0 GENERIC.MP#211 amd64 Configured using: 'configure --prefix=/home/manuel/emacs --bindir=/home/manuel/bin --with-x-toolkit=athena --without-sound --without-json CPPFLAGS=-I/usr/local/include LDFLAGS=-L/usr/local/lib' Configured features: CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG LCMS2 LIBOTF LIBXML2 M17N_FLT MODULES NOTIFY KQUEUE PDUMPER PNG RSVG THREADS TIFF TOOLKIT_SCROLL_BARS X11 XAW3D XDBE XIM XPM LUCID ZLIB Important settings: value of $LC_ALL: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Dired by name Minor modes in effect: gnus-dired-mode: t global-git-commit-mode: t magit-auto-revert-mode: t show-paren-mode: t icomplete-mode: t display-time-mode: t shell-dirtrack-mode: t windmove-mode: t global-eldoc-mode: t electric-indent-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t buffer-read-only: t column-number-mode: t line-number-mode: t indent-tabs-mode: t transient-mark-mode: t Load-path shadows: /home/manuel/.el/google-maps.el/google-maps hides /home/manuel/.el/google-maps /home/manuel/.emacs.d/elpa/magit-20210909.434/magit-section-pkg hides /home/manuel/.emacs.d/elpa/magit-section-20210829.1849/magit-section-pkg /home/manuel/.emacs.d/elpa/transient-20210819.2118/transient hides /home/manuel/emacs/share/emacs/28.0.50/lisp/transient Features: (shadow emacsbug gnus-dired pulse tar-mode make-mode shr-color ispell help-fns radix-tree cl-print debug backtrace vc-mtn vc-hg vc-bzr vc-src vc-sccs magit-extras face-remap magit-submodule magit-obsolete 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 git-commit rx log-edit pcvs-util magit-core magit-autorevert autorevert filenotify magit-margin magit-transient magit-process with-editor magit-mode transient magit-git magit-section magit-utils dash dabbrev vc-cvs vc-rcs vc misearch multi-isearch vc-git diff-mode bug-reference mailalias bbdb-message gnus-dup debbugs-gnu add-log debbugs soap-client warnings rng-xsd rng-dt rng-util xsd-regexp vc-dispatcher vc-svn sort gnus-cite mail-extr gnus-async gnus-bcklg gnus-ml gnus-topic cursor-sensor mm-archive url-http url-gw url-auth qp utf-7 imap rfc2104 nnrss mm-url nndoc nndraft nnmh gnutls network-stream nsm nnfolder bbdb-gnus nnml gnus-agent gnus-srvr gnus-score score-mode nnvirtual gnus-msg nntp gnus-cache w3m w3m-hist w3m-fb bookmark-w3m w3m-ems w3m-favicon w3m-image tab-line w3m-proc w3m-util cl-extra help-mode paredit paren icomplete time battery cus-load exwm-randr xcb-randr exwm-config exwm exwm-input xcb-keysyms exwm-manage exwm-floating xcb-cursor xcb-render exwm-layout exwm-workspace exwm-core xcb-ewmh xcb-icccm xcb xcb-xkb xcb-xproto xcb-types xcb-debug server modus-operandi-theme modus-themes pcase google-maps google-maps-static google-maps-geocode google-maps-base osm-mode url-cache gnuplot info-look transmission color calc-bin calc-ext calc calc-loaddefs rect calc-macs w3m-load mu4e mu4e-org mu4e-main mu4e-view mu4e-view-gnus gnus-art mm-uu mml2015 mm-view mml-smime smime dig gnus-sum gnus-group gnus-undo gnus-start gnus-dbus dbus gnus-cloud nnimap nnmail mail-source utf7 netrc nnoo gnus-spec gnus-int gnus-range gnus-win gnus nnheader wid-edit mu4e-view-common mu4e-headers mu4e-compose mu4e-context mu4e-draft mu4e-actions ido rfc2368 smtpmail sendmail mu4e-mark mu4e-proc mu4e-utils doc-view jka-compr image-mode exif mu4e-lists mu4e-message shr kinsoku svg xml dom flow-fill mule-util hl-line mu4e-vars message rmc puny rfc822 mml mml-sec epa derived epg rfc6068 epg-config gnus-util rmail rmail-loaddefs mm-decode mm-bodies mm-encode mail-parse rfc2231 rfc2047 rfc2045 mm-util ietf-drums mail-prsvr mail-utils gmm-utils mailheader mu4e-meta supercite regi bbdb-anniv diary-lib diary-loaddefs bbdb-mua bbdb-com crm mailabbrev bbdb bbdb-site timezone org ob ob-tangle ob-ref ob-lob ob-table ob-exp org-macro org-footnote org-src ob-comint org-pcomplete org-list org-faces org-entities org-version ob-emacs-lisp ob-core ob-eval org-table ol org-keys org-compat org-macs org-loaddefs find-func cal-menu calendar cal-loaddefs visual-basic-mode web-mode disp-table erlang-start smart-tabs-mode skeleton cc-mode cc-fonts cc-guess cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs movitz-slime cl slime-asdf grep slime-tramp tramp tramp-loaddefs trampver tramp-integration files-x tramp-compat shell pcomplete parse-time iso8601 time-date ls-lisp format-spec slime-fancy slime-indentation slime-cl-indent cl-indent slime-trace-dialog slime-fontifying-fu slime-package-fu slime-references slime-compiler-notes-tree advice slime-scratch slime-presentations bridge slime-macrostep macrostep slime-mdot-fu slime-enclosing-context slime-fuzzy slime-fancy-trace slime-fancy-inspector slime-c-p-c slime-editing-commands slime-autodoc slime-repl slime-parse slime compile text-property-search etags fileloop generator xref project arc-mode archive-mode noutline outline pp comint ansi-color ring hyperspec thingatpt slime-autoloads dired-aux dired-x dired dired-loaddefs edmacro kmacro windmove easy-mmode tex-site info package browse-url url url-proxy url-privacy url-expand url-methods url-history url-cookie url-domsuf url-util mailcap url-handlers url-parse auth-source cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache json subr-x map url-vars seq byte-opt gv bytecomp byte-compile cconv cl-loaddefs cl-lib iso-transl tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type 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 elisp-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 cl-generic 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 charscript charprop case-table epa-hook jka-cmpr-hook help simple abbrev obarray cl-preloaded nadvice button loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads dbusbind kqueue lcms2 dynamic-setting system-font-setting font-render-setting cairo x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 938030 200531) (symbols 48 58030 7) (strings 32 278853 15585) (string-bytes 1 8449695) (vectors 16 123986) (vector-slots 8 2511427 118549) (floats 8 2958 919) (intervals 56 27023 1430) (buffers 992 56)) -- Manuel Giraud --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 24 03:40:56 2021 Received: (at 50602) by debbugs.gnu.org; 24 Sep 2021 07:40:56 +0000 Received: from localhost ([127.0.0.1]:56639 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTfpH-00053c-SQ for submit@debbugs.gnu.org; Fri, 24 Sep 2021 03:40:55 -0400 Received: from ledu-giraud.fr ([51.159.28.247]:38960) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTfpF-00053Q-LE for 50602@debbugs.gnu.org; Fri, 24 Sep 2021 03:40:54 -0400 Received: from elite.giraud (82-65-148-221.subs.proxad.net [82.65.148.221]) by ledu-giraud.fr (OpenSMTPD) with ESMTPSA id 6b70f8b0 (TLSv1.3:AEAD-AES256-GCM-SHA384:256:NO) for <50602@debbugs.gnu.org>; Fri, 24 Sep 2021 09:40:51 +0200 (CEST) From: Manuel Giraud To: 50602@debbugs.gnu.org Subject: Re: bug#50602: 28.0.50; [PATCH] Make 'C-u C-x v v' handle unregistered files References: <87o88u5afj.fsf@elite.giraud> Date: Fri, 24 Sep 2021 09:40:50 +0200 In-Reply-To: <87o88u5afj.fsf@elite.giraud> (Manuel Giraud's message of "Wed, 15 Sep 2021 13:45:52 +0200") Message-ID: <87tuiato8t.fsf@elite.giraud> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 50602 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: -0.9 (/) Hi, I did not have some feedback on this patch. Does is it need a rework? -- Manuel Giraud From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 24 21:39:34 2021 Received: (at 50602) by debbugs.gnu.org; 25 Sep 2021 01:39:35 +0000 Received: from localhost ([127.0.0.1]:59747 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTwf8-0006QV-OO for submit@debbugs.gnu.org; Fri, 24 Sep 2021 21:39:34 -0400 Received: from quimby.gnus.org ([95.216.78.240]:33822) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTwf6-0006QC-8x for 50602@debbugs.gnu.org; Fri, 24 Sep 2021 21:39:32 -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=It8aHCFNYNTILu4WAdg0nezNgx5DkOL7pdPzoImoD1g=; b=Zb+fXq1EmUgXUty97jDLjfdw7d lkH8MR0jyjvwW3TB21icmBpsWZIKQkYVyASXnx5ObwXok5sVemX4htxnkbC2Xu/RSGVDD7jdOgQGF vypLr7dUNuSgutXGu0J7nlV9tcrwJgfbGi/IzpsR0btmgO/AA3SWSOaPTssNomGEL3YI=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mTwex-00082C-8J; Sat, 25 Sep 2021 03:39:25 +0200 From: Lars Ingebrigtsen To: Manuel Giraud Subject: Re: bug#50602: 28.0.50; [PATCH] Make 'C-u C-x v v' handle unregistered files References: <87o88u5afj.fsf@elite.giraud> X-Now-Playing: Brigid Mae Power's _Head Above the Water_: "The Blacksmith" Date: Sat, 25 Sep 2021 03:39:21 +0200 In-Reply-To: <87o88u5afj.fsf@elite.giraud> (Manuel Giraud's message of "Wed, 15 Sep 2021 13:45:52 +0200") Message-ID: <87r1ddqvqu.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: Manuel Giraud writes: > Here is a patch that make 'C-u C-x v v' (C-u M-x vc-next-action) works > with unregistered file. It let you choose one backend and register the > file into it. This was discussed with Eli Zaretskii [...] Content analysis details: (-0.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] 2.0 GAPPY_SUBJECT Subject: contains G.a.p.p.y-T.e.x.t X-Spam-Score: -2.2 (--) X-Debbugs-Envelope-To: 50602 Cc: 50602@debbugs.gnu.org, Dmitry Gutov 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.2 (---) Manuel Giraud writes: > Here is a patch that make 'C-u C-x v v' (C-u M-x vc-next-action) works > with unregistered file. It let you choose one backend and register the > file into it. This was discussed with Eli Zaretskii and Dmitry Gutov in > bug#50572. This looks "obviously correct" to me, so I went ahead and applied it to Emacs 28. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 24 21:39:41 2021 Received: (at control) by debbugs.gnu.org; 25 Sep 2021 01:39:41 +0000 Received: from localhost ([127.0.0.1]:59752 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTwfE-0006Qw-VK for submit@debbugs.gnu.org; Fri, 24 Sep 2021 21:39:41 -0400 Received: from quimby.gnus.org ([95.216.78.240]:33836) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mTwfB-0006QN-Ov for control@debbugs.gnu.org; Fri, 24 Sep 2021 21:39:37 -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=eqviwd8TD9nyq+7+fwanq0SHEtZeBw72hV7hETVOwpM=; b=LH8bLH4U04j+HYnAdiutG/nfOn 0Ttfonmnxug2QiT6ky/nmgudIGIKW9MGeY/zt9IyG3TORQwcWPzmp99/GkoWSyWZuldXXvKpSoiS+ fnKATt7j5JZy7wVhZrr+NJRugbal78wzb1nTw8W+m4XdvAMKKwcF0scORu0LGSgRPPGw=; Received: from [84.212.220.105] (helo=elva) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mTwf4-00082L-0N for control@debbugs.gnu.org; Sat, 25 Sep 2021 03:39:32 +0200 Date: Sat, 25 Sep 2021 03:39:28 +0200 Message-Id: <87pmsxqvqn.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #50602 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 50602 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: -2.3 (--) 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: -3.3 (---) close 50602 28.1 quit From unknown Sun Jun 22 13:35:12 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 23 Oct 2021 11:24:04 +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