From unknown Sat Jun 21 10:23:03 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#8715 <8715@debbugs.gnu.org> To: bug#8715 <8715@debbugs.gnu.org> Subject: Status: 23.3.50; Use GNU, not Windows syntax in example code in flymake manual Reply-To: bug#8715 <8715@debbugs.gnu.org> Date: Sat, 21 Jun 2025 17:23:03 +0000 retitle 8715 23.3.50; Use GNU, not Windows syntax in example code in flymak= e manual reassign 8715 emacs submitter 8715 Reuben Thomas severity 8715 minor thanks From debbugs-submit-bounces@debbugs.gnu.org Sat May 21 18:21:06 2011 Received: (at submit) by debbugs.gnu.org; 21 May 2011 22:21:07 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QNuXh-0003ZD-PD for submit@debbugs.gnu.org; Sat, 21 May 2011 18:21:06 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QNuXf-0003Yh-Mg for submit@debbugs.gnu.org; Sat, 21 May 2011 18:21:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QNuXY-0001Ob-Q7 for submit@debbugs.gnu.org; Sat, 21 May 2011 18:20:58 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_MED autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:41811) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QNuXY-0001Mf-KX for submit@debbugs.gnu.org; Sat, 21 May 2011 18:20:56 -0400 Received: from eggs.gnu.org ([140.186.70.92]:34285) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QNuXW-0002jn-FJ for bug-gnu-emacs@gnu.org; Sat, 21 May 2011 18:20:56 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QNuXU-0001Kc-Pv for bug-gnu-emacs@gnu.org; Sat, 21 May 2011 18:20:54 -0400 Received: from exprod7og108.obsmtp.com ([64.18.2.169]:32932) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QNuXU-0001Iy-D3 for bug-gnu-emacs@gnu.org; Sat, 21 May 2011 18:20:52 -0400 Received: from mail-ww0-f51.google.com ([74.125.82.51]) (using TLSv1) by exprod7ob108.postini.com ([64.18.6.12]) with SMTP ID DSNKTdg6wuEolrKXhyaWSgA48rULivk+un1b@postini.com; Sat, 21 May 2011 15:20:52 PDT Received: by wwf26 with SMTP id 26so3827140wwf.32 for ; Sat, 21 May 2011 15:20:49 -0700 (PDT) Received: by 10.216.27.67 with SMTP id d45mr877544wea.21.1306016449264; Sat, 21 May 2011 15:20:49 -0700 (PDT) Received: from canta (87-194-87-241.bethere.co.uk [87.194.87.241]) by mx.google.com with ESMTPS id n42sm2509338weq.25.2011.05.21.15.20.47 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 21 May 2011 15:20:48 -0700 (PDT) From: Reuben Thomas To: bug-gnu-emacs@gnu.org Subject: 23.3.50; Use GNU, not Windows syntax in example code in flymake manual Date: Sat, 21 May 2011 23:20:46 +0100 Message-ID: <87aaef8zlt.fsf@sc3d.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -6.0 (------) 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: -6.0 (------) The flymake manual contains the following handy sample make rule: check-syntax: gcc -o nul -S ${CHK_SOURCES} But using =E2=80=9Cnul=E2=80=9D is useful on Windows (it works on GNU too, = but creates an output file, and the point of the rule is to avoid doing that). Hence, use the GNU syntax: check-syntax: gcc -o /dev/null -S ${CHK_SOURCES} A further suggestion is to suggest the following rule for automake users: check-syntax: $(COMPILE) -o /dev/null -S $(CHK_SOURCES) As this adds compiler flags which may be needed, for example to find include files. A further reason this is handy is that the undocumented make target dumpvars which is used by flymake-get-project-include-dirs-imp cannot easily be implemented in automake (at least, my attempt ended in tears, since it required the use of a GNU make construct, which is not permitted in automake). The above check-syntax target makes this unnecessary. In GNU Emacs 23.3.50.1 (i686-pc-linux-gnu, GTK+ Version 2.24.4) of 2011-04-24 on canta Windowing system distributor `The X.Org Foundation', version 11.0.11001000 Important settings: value of $LC_ALL: nil 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_GB.UTF-8 value of $XMODIFIERS: nil locale-coding-system: utf-8-unix default enable-multibyte-characters: t Major mode: Info Minor modes in effect: diff-auto-refine-mode: t recentf-mode: t show-paren-mode: t savehist-mode: t minibuffer-electric-default-mode: t iswitchb-mode: t icomplete-mode: t global-whitespace-mode: t global-auto-revert-mode: t desktop-save-mode: t nxhtml-menu-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-encryption-mode: t auto-compression-mode: t column-number-mode: t line-number-mode: t transient-mark-mode: t Recent input: G b ) SPC m a c h i n e . M-q C-x # C-c C-c n y e s=20 M-< C-x=20 k C-x=20 k C-x 1 M-< =20 C-a C-p C-p C-p C-p C-p C-p C-p C-p C-p C-p=20 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=20 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=20 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=20 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=20 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=20 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=20 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=20 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=20 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=20 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=20 C-n C-n C-n C-n C-n C-p C-p C-p C-p C-p C-p C-p C-p=20 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=20 C-p C-a C-x b ( i n f o =20 * i=20 n f o C-p C-p C-p C-p C-p C-p C-p C-p C-p=20 C-p C-p C-p C-p C-p C-p u C-n C-n C-n C-n=20 C-n C-n C-n C-n C-n C-n C-s n u l C-a C-n C-p C-p C-SPC=20 C-n C-n M-w M-x r e e p o r t - =20 p o=20 r t - e m a c s - b u g Recent messages: Auto-saving...done Auto-saving...done No server editing buffers exist Convert non-ASCII letters to hexadecimal? (y or n)=20 Sending... Sending via mail... Sending...done Mark set [2 times] Mark saved where search started Mark set Load-path shadows: /home/rrt/local/share/emacs/nxhtml/util/rnc-mode hides /usr/share/emacs-sna= pshot/site-lisp/rnc-mode/rnc-mode /home/rrt/local/share/emacs/nxhtml/related/php-mode hides /home/rrt/local/s= hare/emacs/site-lisp/php-mode /home/rrt/.emacs.d/elpa/dictionary-1.8.7/link hides /usr/local/share/emacs/= 23.3.50/site-lisp/dictionary-el/link /home/rrt/.emacs.d/elpa/dictionary-1.8.7/connection hides /usr/local/share/= emacs/23.3.50/site-lisp/dictionary-el/connection /home/rrt/.emacs.d/elpa/dictionary-1.8.7/dictionary-init hides /usr/local/s= hare/emacs/23.3.50/site-lisp/dictionary-el/dictionary-init /home/rrt/.emacs.d/elpa/dictionary-1.8.7/dictionary hides /usr/local/share/= emacs/23.3.50/site-lisp/dictionary-el/dictionary /home/rrt/local/share/emacs/site-lisp/graphviz-dot-mode hides /usr/local/sh= are/emacs/23.3.50/site-lisp/emacs-goodies-el/graphviz-dot-mode /home/rrt/local/share/emacs/site-lisp/dict hides /usr/local/share/emacs/23.= 3.50/site-lisp/emacs-goodies-el/dict /usr/local/share/emacs/23.3.50/site-lisp/css-mode/css-mode hides /usr/local= /share/emacs/23.3.50/lisp/textmodes/css-mode /usr/share/emacs-snapshot/site-lisp/ruby1.8-elisp/ruby-mode hides /usr/loca= l/share/emacs/23.3.50/lisp/progmodes/ruby-mode /usr/local/share/emacs/23.3.50/site-lisp/css-mode/css-mode hides /usr/share= /emacs/site-lisp/css-mode/css-mode /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-info hides /usr/share/e= macs/site-lisp/auctex/tex-info /usr/local/share/emacs/23.3.50/site-lisp/auctex/context-nl hides /usr/share= /emacs/site-lisp/auctex/context-nl /usr/local/share/emacs/23.3.50/site-lisp/auctex/context-en hides /usr/share= /emacs/site-lisp/auctex/context-en /usr/local/share/emacs/23.3.50/site-lisp/auctex/latex hides /usr/share/emac= s/site-lisp/auctex/latex /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-mik hides /usr/share/em= acs/site-lisp/auctex/tex-mik /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-buf hides /usr/share/em= acs/site-lisp/auctex/tex-buf /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-jp hides /usr/share/ema= cs/site-lisp/auctex/tex-jp /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-bar hides /usr/share/em= acs/site-lisp/auctex/tex-bar /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex hides /usr/share/emacs/= site-lisp/auctex/tex /usr/local/share/emacs/23.3.50/site-lisp/auctex/multi-prompt hides /usr/sha= re/emacs/site-lisp/auctex/multi-prompt /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-fptex hides /usr/share/= emacs/site-lisp/auctex/tex-fptex /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-font hides /usr/share/e= macs/site-lisp/auctex/tex-font /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-fold hides /usr/share/e= macs/site-lisp/auctex/tex-fold /usr/local/share/emacs/23.3.50/site-lisp/auctex/texmathp hides /usr/share/e= macs/site-lisp/auctex/texmathp /usr/local/share/emacs/23.3.50/site-lisp/auctex/context hides /usr/share/em= acs/site-lisp/auctex/context /usr/local/share/emacs/23.3.50/site-lisp/auctex/font-latex hides /usr/share= /emacs/site-lisp/auctex/font-latex /usr/local/share/emacs/23.3.50/site-lisp/auctex/bib-cite hides /usr/share/e= macs/site-lisp/auctex/bib-cite /usr/local/share/emacs/23.3.50/site-lisp/auctex/toolbar-x hides /usr/share/= emacs/site-lisp/auctex/toolbar-x /usr/local/share/emacs/23.3.50/site-lisp/auctex/tex-style hides /usr/share/= emacs/site-lisp/auctex/tex-style Features: (gnus-msg gnus-art mm-uu mml2015 epg-config mm-view smime dig gnus-sum nnoo gnus-group gnus-undo nnmail mail-source format-spec gnus-start gnus-spec gnus-int gnus-range gnus-win gnus gnus-ems newcomment shadow sort mail-extr message sendmail ecomplete rfc822 mml mml-sec password-cache mm-decode mm-bodies mm-encode mailcap mail-parse rfc2231 rfc2047 rfc2045 qp ietf-drums mailabbrev nnheader gnus-util netrc time-date mm-util mail-prsvr gmm-utils mailheader canlock sha1 hex-util hashcash mail-utils emacsbug pp cus-edit diff-git diff-mode add-log log-view pcvs-util vc-annotate vc help-mode view tabify man grep time-stamp multi-isearch noutline outline m4-mode python-21 python info vc-dispatcher vc-svn cperl-mode inform-mode make-mode autoconf autoconf-mode vc-git face-remap filladapt flyspell sh-script executable completing-help recentf tree-widget wid-edit uniquify paren savehist minibuf-eldef iswitchb icomplete whitespace autorevert time as-external wrap-to-fill cus-start cus-load desktop server nxhtml-autostart nxhtml-autoload majmodpri rnc-mode nxhtml-menu web-autoload nxhtml-base php-mode etags cc-langs cc-mode cc-fonts cc-menus cc-cmds cc-styles cc-align cc-engine cc-vars cc-defs speedbar sb-image ezimage dframe lua-mode regexp-opt ropemacs pymacs flymake compile comint ring ffap ispell smart-quotes auto-dictionary-autoloads c-eldoc-autoloads dictionary-autoloads diff-git-autoloads dired-isearch-autoloads full-ack-autoloads guess-style-autoloads kill-ring-search-autoloads magit-autoloads mv-shell-autoloads tumble-autoloads http-post-simple-autoloads package reporter advice advice-preload yasnippet help-fns derived edmacro kmacro easymenu assoc cl cl-19 muse-autoloads emacs-goodies-el emacs-goodies-custom emacs-goodies-loaddefs easy-mmode preview-latex tex-site auto-loads tooltip ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd font-setting 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 system-font-setting font-render-setting gtk x-toolkit x multi-tty emacs) --=20 http://rrt.sc3d.org/ From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 15 10:01:31 2011 Received: (at 8715) by debbugs.gnu.org; 15 Jul 2011 14:01:31 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QhixO-0000Qw-81 for submit@debbugs.gnu.org; Fri, 15 Jul 2011 10:01:30 -0400 Received: from hermes.netfonds.no ([80.91.224.195]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QhixJ-0000QN-8c for 8715@debbugs.gnu.org; Fri, 15 Jul 2011 10:01:25 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=quimbies.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1Qhix5-0002qN-El; Fri, 15 Jul 2011 16:01:11 +0200 From: Lars Magne Ingebrigtsen To: Reuben Thomas Subject: Re: 23.3.50; Use GNU, not Windows syntax in example code in flymake manual In-Reply-To: <87aaef8zlt.fsf@sc3d.org> (Reuben Thomas's message of "Sat, 21 May 2011 23:20:46 +0100") Date: Fri, 15 Jul 2011 16:01:05 +0200 Message-ID: References: <87aaef8zlt.fsf@sc3d.org> User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.50 (gnu/linux) X-Now-Playing: Joni Mitchell's _Miles of Aisles_: "Cactus Tree" X-Hashcash: 1:23:110715:rrt@sc3d.org::H2YyurlI2DPpqEgS:00000I2Pz X-Hashcash: 1:23:110715:8715@debbugs.gnu.org::g783X/fL0eqjOqGf:00000000000000000000000000000000000000001Hd5r MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1Qhix5-0002qN-El X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1311343271.61056@d1+/0cVSoBzjxChfMls9/g X-Spam-Status: No X-Spam-Score: -2.7 (--) X-Debbugs-Envelope-To: 8715 Cc: 8715@debbugs.gnu.org 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: -2.7 (--) Reuben Thomas writes: > The flymake manual contains the following handy sample make rule: > > check-syntax: > gcc -o nul -S ${CHK_SOURCES} > > But using =93nul=94 is useful on Windows (it works on GNU too, but creates > an output file, and the point of the rule is to avoid doing that). > Hence, use the GNU syntax: > > check-syntax: > gcc -o /dev/null -S ${CHK_SOURCES} I've now done this change in Emacs 24. > A further suggestion is to suggest the following rule for automake users: > > check-syntax: > $(COMPILE) -o /dev/null -S $(CHK_SOURCES) > > As this adds compiler flags which may be needed, for example to find > include files. A further reason this is handy is that the undocumented > make target dumpvars which is used by > flymake-get-project-include-dirs-imp cannot easily be implemented in > automake (at least, my attempt ended in tears, since it required the use > of a GNU make construct, which is not permitted in automake). The above > check-syntax target makes this unnecessary. I know next to nothing about flymake, so I'm afraid I'm not a good judge of this change, though. Anybody? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 09 23:40:47 2012 Received: (at 8715) by debbugs.gnu.org; 10 Mar 2012 04:40:47 +0000 Received: from localhost ([127.0.0.1]:41560 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6E6p-0004c1-5R for submit@debbugs.gnu.org; Fri, 09 Mar 2012 23:40:47 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:43104) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6E6d-0004bh-55 for 8715@debbugs.gnu.org; Fri, 09 Mar 2012 23:40:45 -0500 Received: from bb116-14-103-36.singnet.com.sg ([116.14.103.36]:54498 helo=ulysses) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1S6Ddv-0000yU-SB; Fri, 09 Mar 2012 23:10:56 -0500 From: Chong Yidong To: Reuben Thomas Subject: Re: bug#8715: 23.3.50; Use GNU, not Windows syntax in example code in flymake manual References: <87aaef8zlt.fsf@sc3d.org> Date: Sat, 10 Mar 2012 12:10:44 +0800 In-Reply-To: <87aaef8zlt.fsf@sc3d.org> (Reuben Thomas's message of "Sat, 21 May 2011 23:20:46 +0100") Message-ID: <87haxxhz97.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: 8715 Cc: 8715@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 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: -6.9 (------) Reuben Thomas writes: > A further suggestion is to suggest the following rule for automake users: > > check-syntax: > $(COMPILE) -o /dev/null -S $(CHK_SOURCES) I added this to the manual. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 09 23:40:54 2012 Received: (at control) by debbugs.gnu.org; 10 Mar 2012 04:40:54 +0000 Received: from localhost ([127.0.0.1]:41562 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6E6v-0004cI-Qr for submit@debbugs.gnu.org; Fri, 09 Mar 2012 23:40:54 -0500 Received: from fencepost.gnu.org ([208.118.235.10]:43108) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1S6E6k-0004bs-FU for control@debbugs.gnu.org; Fri, 09 Mar 2012 23:40:51 -0500 Received: from bb116-14-103-36.singnet.com.sg ([116.14.103.36]:54499 helo=ulysses) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1S6De4-0000ym-F6 for control@debbugs.gnu.org; Fri, 09 Mar 2012 23:11:05 -0500 From: Chong Yidong To: control@debbugs.gnu.org Subject: close 8715 Date: Sat, 10 Mar 2012 12:10:57 +0800 Message-ID: <87aa3pyu26.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 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: -6.9 (------) close 8715 thanks From unknown Sat Jun 21 10:23:03 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, 07 Apr 2012 11:24:03 +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