From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 21 21:36:40 2020 Received: (at submit) by debbugs.gnu.org; 22 Feb 2020 02:36:40 +0000 Received: from localhost ([127.0.0.1]:48490 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5Kem-0007Wr-4w for submit@debbugs.gnu.org; Fri, 21 Feb 2020 21:36:40 -0500 Received: from lists.gnu.org ([209.51.188.17]:59458) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5Kek-0007Wj-B1 for submit@debbugs.gnu.org; Fri, 21 Feb 2020 21:36:38 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:46969) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j5Keh-0000vv-LP for bug-gnu-emacs@gnu.org; Fri, 21 Feb 2020 21:36:38 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_NONE, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j5Kef-0005id-40 for bug-gnu-emacs@gnu.org; Fri, 21 Feb 2020 21:36:34 -0500 Received: from out.migadu.com ([91.121.223.63]:58532) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j5Kee-0004O2-QU for bug-gnu-emacs@gnu.org; Fri, 21 Feb 2020 21:36:33 -0500 Received: (Migadu outbound); Sat, 22 Feb 2020 02:36:07 +0000 Authentication-Results: out.migadu.com; auth=pass (plain) Received: from 2017 (45-16-201-121.lightspeed.iplsin.sbcglobal.net [45.16.201.121]) by out.migadu.com (Haraka/2.8.16) with ESMTPSA id 1D942D3D-2294-4538-9C36-FEBDD970BCDB.1 envelope-from (authenticated bits=0) (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 verify=FAIL); Sat, 22 Feb 2020 02:36:07 +0000 User-agent: mu4e 1.1.0; emacs 26.3 From: Daniel Long Sockwell To: bug-gnu-emacs@gnu.org Subject: 26.3; Unclear direct color mode documentation can cause loading delays Date: Fri, 21 Feb 2020 21:36:05 -0500 Message-ID: <874kvjmjqi.fsf@codesections.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; bh=F0AKK8ck1e8un2bWI5Cz9LzCN1neyw4JmWj9SaYhD+M=; c=relaxed/simple; d=codesections.com; h=from:subject:date:to; s=default; b=AD3UCA59FomlbJB35nlU8V0xyyEFZR0pSgK7/8UEELhXscLhTJMEwRlZv8DgTCbfyETQ5c615hZYKzPFC45TyoqIeBI4iSQfl2mByNaR52mqyrP2XTKlviZQHdaO7K2lefrnlZN6wIKxcYz6m5m7jrof7/wWyQH0YiCZaqpmqzY= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 91.121.223.63 X-Spam-Score: 0.3 (/) 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: -0.7 (/) The Emacs manual describes the process for enabling direct color mode for terminal Emacs with the following: > Emacs can be invoked with a custom definition as shown below >> $ cat terminfo-24bit.src >>=20=20=20=20=20 >> # Use colon separators. >> xterm-24bit|xterm with 24-bit direct color mode, >> use=3Dxterm-256color, >> setb24=3D\E[48:2:%p1%{65536}%/%d:%p1%{256}%/%{255}%&%d:%p1%{255}%&= %dm, >> setf24=3D\E[38:2:%p1%{65536}%/%d:%p1%{256}%/%{255}%&%d:%p1%{255}%&= %dm, >> # Use semicolon separators. >> xterm-24bits|xterm with 24-bit direct color mode, >> use=3Dxterm-256color, >> setb24=3D\E[48;2;%p1%{65536}%/%d;%p1%{256}%/%{255}%&%d;%p1%{255}%&= %dm, >> setf24=3D\E[38;2;%p1%{65536}%/%d;%p1%{256}%/%{255}%&%d;%p1%{255}%&= %dm, >>=20=20=20=20=20 >> $ tic -x -o ~/.terminfo terminfo-24bit.src >>=20=20=20=20=20 >> $ TERM=3Dxterm-24bit emacs -nw Source: Emacs FAQ, 5.3 I followed these directions literally, and enabled direct color support in Emacs, apparently without issue. However, what I did not realize was that I ought *not* to have followed the example literally =E2=80=93 instead= , I should have replaced "xterm" with my actual $TERM value. (In retrospect, that is fairly obvious, but it wasn't at the time, in part because I've come across other areas where setting a $TERM value of xterm was a valid workaround. And, as I said, following the directions literally appeared to work as shown by the output of `M-x list-colors-display`.) Months later, I realized that I was experiencing a very odd bug: my Emacs instance was taking well over 2 seconds to start in a terminal, even when invoked with `emacs -Q -nw`. Even more oddly, I determined `M-x emacs-init-time` showed a very low time =E2=80=93 whatever was causing= the slowdown was outside of the normal init process. After fairly extensive testing, I discovered that the slowdown was caused by a pselect timeout. This one, according to strace: > pselect6(5, [4], [], NULL, {tv_sec=3D1, tv_nsec=3D998526670}, {NULL, 8}) = =3D > 0 (Timeout) <2.000940> After even more testing, I determined that the issue was caused by the terminfo/$TERM settings: apparently, if the user has a $TERM value that does not match their terminal, Emacs will have a 2-second delay before launching, waiting for whatever that pselect call is looking for. Once I finally figured the above out, I decided to file this bug in the hope that the documentation can be updated and other can avoid spending as long with this issue as I did. Specifically, I believe that Section 5.3 should be updated to indicate that users should modify the custom definition provided to use the appropriate $TERM value for their own terminal. Beyond that, the fact that an incorrect $TERM setting results in a 2-second delay in launching Emacs may, itself, be an Emacs bug =E2=80=93 af= ter all, the incorrect $TERM/terminfo settings *worked* to display correct colors in Emacs. It may be that there is a way to avoid this delay, or at least to signal the error to the user via *Messages*. But I don't know enough about Emacs' internals to be sure of that. Either way, it was certainly an interesting process to debug! Best regards, Daniel In GNU Emacs 26.3 (build 1, x86_64-pc-linux-gnu) of 2019-09-18 built on svetlemodry System Description: Antergos Linux Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Making completion list... Configured using: 'configure --prefix=3D/usr --sysconfdir=3D/etc --libexecdir=3D/usr/lib --localstatedir=3D/var --without-x --without-sound --with-modules 'CFLAGS=3D-march=3Dx86-64 -mtune=3Dgeneric -O2 -pipe -fno-plt' CPPFLAGS=3D-D_FORTIFY_SOURCE=3D2 LDFLAGS=3D-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now' Configured features: DBUS NOTIFY ACL GNUTLS LIBXML2 ZLIB MODULES THREADS LIBSYSTEMD Important settings: value of $LC_COLLATE: en_US.UTF-8 value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t global-eldoc-mode: t eldoc-mode: t electric-indent-mode: t menu-bar-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 line-number-mode: t transient-mark-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message rmc puny seq byte-opt gv bytecomp byte-compile cconv cl-loaddefs cl-lib dired dired-loaddefs format-spec rfc822 mml easymenu mml-sec password-cache epa derived epg epg-config gnus-util rmail tool-bar rmail-loaddefs mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail regexp-opt rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils term/xterm xterm time-date elec-pair mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type tabulated-list replace newcomment text-mode elisp-mode lisp-mode prog-mode register page menu-bar rfn-eshadow isearch timer select mouse jit-lock font-lock syntax facemenu font-core term/tty-colors frame 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 minibuffer cl-preloaded nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads dbusbind inotify multi-tty make-network-process emacs) Memory information: ((conses 16 97828 8897) (symbols 48 19448 1) (miscs 40 40 96) (strings 32 27649 1398) (string-bytes 1 739458) (vectors 16 11875) (vector-slots 8 449294 5376) (floats 8 49 66) (intervals 56 208 0) (buffers 992 12)) From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 22 02:56:54 2020 Received: (at 39733) by debbugs.gnu.org; 22 Feb 2020 07:56:54 +0000 Received: from localhost ([127.0.0.1]:48541 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5Pef-0007Ls-QU for submit@debbugs.gnu.org; Sat, 22 Feb 2020 02:56:54 -0500 Received: from eggs.gnu.org ([209.51.188.92]:40703) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1j5Pee-0007Lg-9I for 39733@debbugs.gnu.org; Sat, 22 Feb 2020 02:56:52 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]:49954) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1j5PeY-0003xu-ST; Sat, 22 Feb 2020 02:56:46 -0500 Received: from [176.228.60.248] (port=2295 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1j5PeY-0006LL-Ac; Sat, 22 Feb 2020 02:56:46 -0500 Date: Sat, 22 Feb 2020 09:56:38 +0200 Message-Id: <831rqnjbrd.fsf@gnu.org> From: Eli Zaretskii To: Daniel Long Sockwell In-reply-to: <874kvjmjqi.fsf@codesections.com> (message from Daniel Long Sockwell on Fri, 21 Feb 2020 21:36:05 -0500) Subject: Re: bug#39733: 26.3; Unclear direct color mode documentation can cause loading delays References: <874kvjmjqi.fsf@codesections.com> MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 39733 Cc: 39733@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.7 (-) > From: Daniel Long Sockwell > Date: Fri, 21 Feb 2020 21:36:05 -0500 > > > Emacs can be invoked with a custom definition as shown below > >> $ cat terminfo-24bit.src > >> > >> # Use colon separators. > >> xterm-24bit|xterm with 24-bit direct color mode, > >> use=xterm-256color, > >> setb24=\E[48:2:%p1%{65536}%/%d:%p1%{256}%/%{255}%&%d:%p1%{255}%&%dm, > >> setf24=\E[38:2:%p1%{65536}%/%d:%p1%{256}%/%{255}%&%d:%p1%{255}%&%dm, > >> # Use semicolon separators. > >> xterm-24bits|xterm with 24-bit direct color mode, > >> use=xterm-256color, > >> setb24=\E[48;2;%p1%{65536}%/%d;%p1%{256}%/%{255}%&%d;%p1%{255}%&%dm, > >> setf24=\E[38;2;%p1%{65536}%/%d;%p1%{256}%/%{255}%&%d;%p1%{255}%&%dm, > >> > >> $ tic -x -o ~/.terminfo terminfo-24bit.src > >> > >> $ TERM=xterm-24bit emacs -nw > Source: Emacs FAQ, 5.3 > > I followed these directions literally, and enabled direct color support > in Emacs, apparently without issue. However, what I did not realize was > that I ought *not* to have followed the example literally – instead, I > should have replaced "xterm" with my actual $TERM value. If the terminfo entry uses xterm-24bits, then you _do_ have to use xterm-24bit as the value of TERM. If you want any other terminal, the terminfo entry should have a different name. The example shows it for xterm. > Months later, I realized that I was experiencing a very odd bug: my > Emacs instance was taking well over 2 seconds to start in a terminal, > even when invoked with `emacs -Q -nw`. Even more oddly, I determined > `M-x emacs-init-time` showed a very low time – whatever was causing the > slowdown was outside of the normal init process. After fairly extensive > testing, I discovered that the slowdown was caused by a pselect > timeout. This one, according to strace: > > > pselect6(5, [4], [], NULL, {tv_sec=1, tv_nsec=998526670}, {NULL, 8}) = > > 0 (Timeout) <2.000940> > > After even more testing, I determined that the issue was caused by the > terminfo/$TERM settings: apparently, if the user has a $TERM value that > does not match their terminal, Emacs will have a 2-second delay before > launching, waiting for whatever that pselect call is looking for. That's because for xterm we support additional features, unrelated to colors, which need to be probed at startup. The probe sends a special control sequence to the terminal, and then waits for the response with a 2 sec timeout. Your terminal doesn't support those control sequences, so it seems, so you get the timeout. > Once I finally figured the above out, I decided to file this bug in the > hope that the documentation can be updated and other can avoid spending > as long with this issue as I did. The latest version of the Emacs FAQ already says at the end of this section: If your terminal is incompatible with XTerm, you may have to use another ‘TERM’ definition. Any terminal whose name includes ‘direct’ should be a candidate. The ‘toe’ command can be used to find out which of these are installed on your system: $ toe | grep '\-direct' konsole-direct konsole with direct-color indexing vte-direct vte with direct-color indexing st-direct st with direct-color indexing xterm-direct2 xterm with direct-color indexing (old) xterm-direct xterm with direct-color indexing Terminals with ‘RGB’ capability treat pixels #000001 - #000007 as indexed colors to maintain backward compatibility with applications that are unaware of direct color mode. Therefore the seven darkest blue shades may not be available. If this is a problem, you can always use custom terminal definition with ‘setb24’ and ‘setf24’. Given this addition, do you see anything else that needs to be changed in the FAQ? Thanks. From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 21 10:18:33 2020 Received: (at 39733) by debbugs.gnu.org; 21 Aug 2020 14:18:33 +0000 Received: from localhost ([127.0.0.1]:47951 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k97sH-0005dB-J3 for submit@debbugs.gnu.org; Fri, 21 Aug 2020 10:18:33 -0400 Received: from quimby.gnus.org ([95.216.78.240]:44410) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k97sF-0005cu-Cx for 39733@debbugs.gnu.org; Fri, 21 Aug 2020 10:18: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=h/Jt7GzNM7gNmykOaKB0WuGatGbZJqaLB5sHpNsD+p0=; b=LWQHFfE5vVz4RtezlPj8bJb2UZ Hgt7o+zW2sV2CmH0ZmwoJ5ggCHDHz7WkX/ujWrqNQgq8JbD//N9ka2MT8RVtFha01JbzwKrt3Ik+d a82B7KqO+/+cSNnG3sVTOXHrzPVjRZ+yXrClN07j22hjuQS+CVgTsmB5gbptbGuD6jak=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k97s6-0005UI-T5; Fri, 21 Aug 2020 16:18:25 +0200 From: Lars Ingebrigtsen To: Eli Zaretskii Subject: Re: bug#39733: 26.3; Unclear direct color mode documentation can cause loading delays References: <874kvjmjqi.fsf@codesections.com> <831rqnjbrd.fsf@gnu.org> X-Now-Playing: Boris's _Love_: "Away From You" Date: Fri, 21 Aug 2020 16:18:21 +0200 In-Reply-To: <831rqnjbrd.fsf@gnu.org> (Eli Zaretskii's message of "Sat, 22 Feb 2020 09:56:38 +0200") Message-ID: <87o8n42ic2.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: Eli Zaretskii writes: > Given this addition, do you see anything else that needs to be changed > in the FAQ? This was half a year ago, and there was no response, so I'm closing this bug report. If there's anything more to be done here, please respond to the debbugs mail address, and we'll reopen the bug repo [...] 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: 39733 Cc: 39733@debbugs.gnu.org, Daniel Long Sockwell 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 (-) Eli Zaretskii writes: > Given this addition, do you see anything else that needs to be changed > in the FAQ? This was half a year ago, and there was no response, so I'm closing this bug report. If there's anything more to be done here, please respond to the debbugs mail address, and we'll reopen the bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 21 10:18:41 2020 Received: (at control) by debbugs.gnu.org; 21 Aug 2020 14:18:41 +0000 Received: from localhost ([127.0.0.1]:47954 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k97sO-0005dX-QP for submit@debbugs.gnu.org; Fri, 21 Aug 2020 10:18:41 -0400 Received: from quimby.gnus.org ([95.216.78.240]:44434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k97sN-0005dJ-Aj for control@debbugs.gnu.org; Fri, 21 Aug 2020 10:18:39 -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=m2zbIbMSyTRV2khFxr8+Ng6qeBejaq0xO35kjlEV8z4=; b=deoeKzO2C5WGok8sk9ZXKuA3l5 Edv0IAKfxfyhDq0uC3+h63LvP3Kblno2iVsG+lPRr/X8vlsRtafHKww4J+H9PH/gnRKupMPmeHM7A 2IDA8+tUY903lJfTbTzdihimOLeC+79866nkLnRsmBnKjj37DN7rA8u7HWB8Ku74DEuo=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k97sF-0005Ud-Jj for control@debbugs.gnu.org; Fri, 21 Aug 2020 16:18:33 +0200 Date: Fri, 21 Aug 2020 16:18:30 +0200 Message-Id: <87mu2o2ibt.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #39733 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 39733 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 39733 quit From unknown Thu Sep 11 04:20:50 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, 19 Sep 2020 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