From unknown Fri Jun 20 07:15:52 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#5211 <5211@debbugs.gnu.org> To: bug#5211 <5211@debbugs.gnu.org> Subject: Status: Color escape codes in the output of vc-git-print-log Reply-To: bug#5211 <5211@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:15:52 +0000 retitle 5211 Color escape codes in the output of vc-git-print-log reassign 5211 emacs submitter 5211 Juanma Barranquero severity 5211 minor tag 5211 patch thanks From lekktu@gmail.com Mon Dec 14 08:14:04 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 14 Dec 2009 16:14:04 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.9 required=4.0 tests=AWL,GMAIL,HAS_PACKAGE, IMPRONONCABLE_2,MURPHY_DRUGS_REL8 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBEGE3VO003306 for ; Mon, 14 Dec 2009 08:14:04 -0800 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NKDYe-0007ew-Tf for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 11:14:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NKDYW-0007dQ-Vk for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 11:13:57 -0500 Received: from [199.232.76.173] (port=52002 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NKDYV-0007dB-1t for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 11:13:51 -0500 Received: from mail-bw0-f215.google.com ([209.85.218.215]:37628) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NKDYU-0000Ss-PR for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 11:13:50 -0500 Received: by bwz7 with SMTP id 7so2262901bwz.26 for ; Mon, 14 Dec 2009 08:13:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=c/LStbBJxx8vX6VGzxnP+l3kD+R53fJxepihqgX/UuM=; b=pYqzqAaAHxZzWzBfsAzg8UBtZaZ//ZPa9kdBENl7RX+Imr2VDXhx2/wxQCjEn6q9iU BBYV8sawKJ+a7fq9KnJ0dDwrPHk8nQ4ofo7tvv6/4F7FZXYBQOvEHaft7/aZBYB83Yqh qXGK/HMMtJtqgeDMeld+2IsWvvJtjPyd3P84o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=I5Z1ETs2UaOsw6kRt/mYQQGTls3rX6R3deptP4S3G7q5ym9z4kO5f/YOim+z/ggSmT ZApFqFgq0GEX+B6Q/Cl1Tr6EDz2QcotndHc2XoadDtQAvFdap/jFkCoYx7SAdMWjQM99 ycxaKmsZZKmCGhfD3MOnVXNQBanr4M+Im/tFs= MIME-Version: 1.0 Received: by 10.204.153.220 with SMTP id l28mr2921996bkw.86.1260807229688; Mon, 14 Dec 2009 08:13:49 -0800 (PST) From: Juanma Barranquero Date: Mon, 14 Dec 2009 17:12:24 +0100 Message-ID: Subject: Color escape codes in the output of vc-git-print-log To: Bug-Gnu-Emacs Content-Type: text/plain; charset=UTF-8 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Package: emacs,vc Tags: patch Version: 23.1.90 Severity: minor Depending of your setting of color.diff, color is used for log output, and vc-print-log shows garbage (OK, escape codes for color): ^[[33mcommit 43a3bf88e5e495ad048b3a6d3cf852e1e7a02f1c^[[m Author: xxx Date: 2009-12-14 17:11:35 +0200 blah blah blah As color in *vc-change-log* buffers is an issue for font-locking, and not for git log, the command should be called with --no-color. OK to the following patch? Juanma 2009-12-14 Juanma Barranquero * vc-git.el (vc-git-print-log): Pass --no-color to `git log'. === modified file 'lisp/vc-git.el' --- lisp/vc-git.el 2009-12-08 15:56:57 +0000 +++ lisp/vc-git.el 2009-12-14 16:08:54 +0000 @@ -555,7 +555,7 @@ (apply 'vc-git-command buffer 'async files (append - '("log") + '("log" "--no-color") (when shortlog '("--graph" "--decorate" "--date=short" "--pretty=format:%d%h %ad %s" "--abbrev-commit")) From monnier@IRO.UMontreal.CA Mon Dec 14 20:27:23 2009 Received: (at submit) by emacsbugs.donarmstrong.com; 15 Dec 2009 04:27:24 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-3.8 required=4.0 tests=AWL,HAS_BUG_NUMBER autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBF4RMKR016584 for ; Mon, 14 Dec 2009 20:27:23 -0800 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NKP0M-0007oj-1O for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 23:27:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NKP0H-0007nf-Lz for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 23:27:21 -0500 Received: from [199.232.76.173] (port=37403 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NKP0H-0007nc-Gn for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 23:27:17 -0500 Received: from pruche.dit.umontreal.ca ([132.204.246.22]:52111) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NKP0H-00068B-12 for bug-gnu-emacs@gnu.org; Mon, 14 Dec 2009 23:27:17 -0500 Received: from alfajor.home (faina.iro.umontreal.ca [132.204.26.177]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id nBF4R63D025620; Mon, 14 Dec 2009 23:27:09 -0500 Received: by alfajor.home (Postfix, from userid 20848) id AF86C64421; Mon, 14 Dec 2009 23:27:03 -0500 (EST) From: Stefan Monnier To: Juanma Barranquero Cc: 5211@debbugs.gnu.org, Bug-Gnu-Emacs Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log Message-ID: References: Date: Mon, 14 Dec 2009 23:27:03 -0500 In-Reply-To: (Juanma Barranquero's message of "Mon, 14 Dec 2009 17:12:24 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV3427=0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) > * vc-git.el (vc-git-print-log): Pass --no-color to `git log'. Would using a pipe rather than a tty solve the problem as well? Stefan From lekktu@gmail.com Mon Dec 14 20:31:30 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 04:31:30 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.4 required=4.0 tests=AWL,HAS_BUG_NUMBER autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBF4VSe4017063 for <5211@emacsbugs.donarmstrong.com>; Mon, 14 Dec 2009 20:31:29 -0800 Received: by bwz27 with SMTP id 27so2583971bwz.1 for <5211@emacsbugs.donarmstrong.com>; Mon, 14 Dec 2009 20:31:22 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=kkNfazilpltN3518qxZt3x7ZwOhKmNhqTPrTkS8dq/Q=; b=P6ZmR9ElHU+twTMIalaVjiNhclim2xNRcOb1C02+HElDJe0intCPOdaxHmZWxAe8tT Am0HwW2pc5/Kcf/C8yO8GKvCjA2JuaRynHN9PsbWCKWwXjcHY/wfk5DvSCLGBZeBsF// dPCah84ucrN1lOCjwDKbSOVcmjh24xeiJRes0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=HrtMnWyS7eQTUAk8gpUV+/FmNVNDkHAirjaJ8u1XuQ5J0iAw7A3sW/71BMYJBg4cCB h9mS8ZyUpxSaX+vB0E4TTjI4NjV4u2eNbCKwWM1pG/atekzVy97BVl4dqQ5s9JUslT8r xWZ2zQf+ZC77IPpe2I0k+uAztCAMs0oZefxS4= MIME-Version: 1.0 Received: by 10.204.2.73 with SMTP id 9mr3389339bki.159.1260851482377; Mon, 14 Dec 2009 20:31:22 -0800 (PST) In-Reply-To: References: From: Juanma Barranquero Date: Tue, 15 Dec 2009 05:31:02 +0100 Message-ID: Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log To: Stefan Monnier Cc: 5211@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 On Tue, Dec 15, 2009 at 05:27, Stefan Monnier wrote: > Would using a pipe rather than a tty solve the problem as well? I'm not sure I understand... Do you mean, would piping the output of "git log" fix the problem? No, with color.diff=always, pipes get the escape codes too. Juanma From eliz@gnu.org Mon Dec 14 21:36:51 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 05:36:51 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.2 required=4.0 tests=AWL,GMAIL,HAS_BUG_NUMBER autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBF5aoY1023218 for <5211@emacsbugs.donarmstrong.com>; Mon, 14 Dec 2009 21:36:51 -0800 Received: from eliz by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NKQ5Z-0007U8-MN; Tue, 15 Dec 2009 00:36:49 -0500 From: Eli Zaretskii To: Juanma Barranquero , 5211@debbugs.gnu.org CC: monnier@IRO.UMontreal.CA In-reply-to: (message from Juanma Barranquero on Tue, 15 Dec 2009 05:31:02 +0100) Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log Reply-to: Eli Zaretskii References: Message-Id: Date: Tue, 15 Dec 2009 00:36:49 -0500 > From: Juanma Barranquero > Date: Tue, 15 Dec 2009 05:31:02 +0100 > Cc: 5211@emacsbugs.donarmstrong.com > Reply-To: Juanma Barranquero , > 5211@emacsbugs.donarmstrong.com > > No, with color.diff=always, pipes get the escape codes too. On what OS? From lekktu@gmail.com Tue Dec 15 03:16:09 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 11:16:10 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.4 required=4.0 tests=AWL,GMAIL,HAS_BUG_NUMBER, IMPRONONCABLE_2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFBG7Rh024757 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 03:16:09 -0800 Received: by bwz27 with SMTP id 27so2729092bwz.1 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 03:16:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=mD7CcKUWUCyzgPN5zlPqqxcHLPDeQmlIe5qZSp/0ACU=; b=ulLJBsY7FY02kkgMUYyXUdWR/w4ElhrqpioRVc65VoMWsnJ7DIzbVBfIKcCxD6Zn8j WT7iHNDnQdJp7mwh2dhqa2EomsPCX6rTgRiret5LI2fTaMosX2XYbEiCpy+xr/QOlukS bJyD+aRaRWmF0EFV2O4YjDPHmrYSOmJpgJ8fI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=mnE52Q3OlyxWUP4WQb/k2J8l65BBG+hsUOdhRAdQgJziko56CyWDto0I9zMADOWzCy dgaVZ1jO6F626UfzH+YNv2fVJ+wu2A9Kk44Gt+TnXnYOZ3iv419D3aR+IDK5GO9AKC62 pBMbmScSZ6Sdau/4hAyg8oLL6xpki96ketV70= MIME-Version: 1.0 Received: by 10.204.11.6 with SMTP id r6mr3624598bkr.29.1260875762247; Tue, 15 Dec 2009 03:16:02 -0800 (PST) In-Reply-To: References: From: Juanma Barranquero Date: Tue, 15 Dec 2009 12:15:42 +0100 Message-ID: Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log To: Eli Zaretskii Cc: 5211@debbugs.gnu.org, monnier@iro.umontreal.ca Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable > On what OS? Windows 7 I have [color] branch =3D always diff =3D always interactive =3D always pager =3D true status =3D always ui =3D always showbranch =3D always in my .gitconfig, and git log | more in a personal repo shows =E2=86=90[33mcommit ed210d6b291c13b3e2c6cbfed39ffd0e96d5b634=E2=86=90[m Author: Juanma Barranquero Date: 2009-12-14 18:58:38 +0100 That is not a bug in my setup or git, it's intended to pass color escapes to less (which I usually use with git). Juanma From eliz@gnu.org Tue Dec 15 05:01:38 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 13:01:38 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.7 required=4.0 tests=AWL,GMAIL,HAS_BUG_NUMBER, IMPRONONCABLE_2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from fencepost.gnu.org (fencepost.gnu.org [140.186.70.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFD1aqM002216 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 05:01:37 -0800 Received: from eliz by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NKX20-0003aZ-0N; Tue, 15 Dec 2009 08:01:36 -0500 From: Eli Zaretskii To: Juanma Barranquero CC: 5211@debbugs.gnu.org, monnier@iro.umontreal.ca In-reply-to: (message from Juanma Barranquero on Tue, 15 Dec 2009 12:15:42 +0100) Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log Reply-to: Eli Zaretskii References: MIME-version: 1.0 Content-type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-Id: Date: Tue, 15 Dec 2009 08:01:36 -0500 > From: Juanma Barranquero > Date: Tue, 15 Dec 2009 12:15:42 +0100 > Cc: 5211@emacsbugs.donarmstrong.com, monnier@iro.umontreal.ca > > > On what OS? > > Windows 7 I asked because pipes on Windows have their quirks. > I have > > [color] > branch = always > diff = always > interactive = always > pager = true > status = always > ui = always > showbranch = always > > in my .gitconfig, and > > git log | more > > in a personal repo shows > > ←[33mcommit ed210d6b291c13b3e2c6cbfed39ffd0e96d5b634←[m If the escapes go away when you remove "always", then there's no problem here. And if we want to cater to users who set "always" like you do, then resetting it in vc-git-print-log is IMO the way to go. From lekktu@gmail.com Tue Dec 15 05:09:29 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 13:09:29 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.4 required=4.0 tests=AWL,HAS_BUG_NUMBER autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFD9RZN003767 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 05:09:28 -0800 Received: by bwz27 with SMTP id 27so2796020bwz.1 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 05:09:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=bsWwuG1jHDQG5K60tbP7nx5rt7vwggB+PW/M86OO7NM=; b=Y0wf85WTH+2CTRdlKfDS3uiz3CQ6hUSzXQ7xdtjqt92AyUrhLXrzpc91KBAJL137au u6K5b/Ie2HFPSkyMeQmOaG+jUkJAlCgHGpoX5TfCSppaBwH4rFIm4WcKsPERO7bg1CPL +pS8Nd6jKDln/sabry0zOJN4wHbQ08nN8hjO0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=L1BN65+/9Via71RC02hzXFX+MgxxwAofY3mV7dHReRhcmWX9u6/C/nbgLd5N9lTPZQ JUh8sGywXgEM5SDRICQqDjZ836QkPQbGECmJJ7iRBzVCNEBdmXZr1Q+1hwPCA424F3oG b10ah/3MXzY1hhpxc1E9G8fThf9la9t71Q2fc= MIME-Version: 1.0 Received: by 10.204.10.19 with SMTP id n19mr3685083bkn.19.1260882561259; Tue, 15 Dec 2009 05:09:21 -0800 (PST) In-Reply-To: References: From: Juanma Barranquero Date: Tue, 15 Dec 2009 14:09:01 +0100 Message-ID: Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log To: Eli Zaretskii Cc: 5211@debbugs.gnu.org, monnier@iro.umontreal.ca Content-Type: text/plain; charset=UTF-8 On Tue, Dec 15, 2009 at 14:01, Eli Zaretskii wrote: > If the escapes go away when you remove "always", then there's no > problem here. Yes, they do indeed disappear. > And if we want to cater to users who set "always" like > you do, then resetting it in vc-git-print-log is IMO the way to go. That's my thinking too. Juanma From dann@godzilla.ics.uci.edu Tue Dec 15 06:57:43 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 14:57:43 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-5.3 required=4.0 tests=AWL,GMAIL,HAS_BUG_NUMBER, IMPRONONCABLE_2,MURPHY_DRUGS_REL8,X_DEBBUGS_NO_ACK autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from colin-baker-v0.ics.uci.edu (colin-baker-v0.ics.uci.edu [128.195.1.153]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFEvgE1020702 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 06:57:43 -0800 Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by colin-baker-v0.ics.uci.edu (8.13.8/8.13.8) with ESMTP id nBFEvUrx004966 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 15 Dec 2009 06:57:30 -0800 Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id nBFEvUT3007406; Tue, 15 Dec 2009 06:57:30 -0800 (PST) Date: Tue, 15 Dec 2009 06:57:30 -0800 (PST) Message-Id: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> From: Dan Nicolaescu To: Juanma Barranquero Cc: 5211@debbugs.gnu.org Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log References: X-Debbugs-No-Ack: yes In-Reply-To: (Juanma Barranquero's message of "Mon, 14 Dec 2009 17:12:24 +0100") Lines: 34 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-ICS-MailScanner-Information: Please send mail to helpdesk@ics.uci.edu or more information X-ICS-MailScanner-ID: nBFEvUrx004966 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.44, required 5, autolearn=disabled, ALL_TRUSTED -1.44) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu Juanma Barranquero writes: > Package: emacs,vc > Tags: patch > Version: 23.1.90 > Severity: minor > > > Depending of your setting of color.diff, color is used for log output, > and vc-print-log shows garbage (OK, escape codes for color): > > ^[[33mcommit 43a3bf88e5e495ad048b3a6d3cf852e1e7a02f1c^[[m > Author: xxx > Date: 2009-12-14 17:11:35 +0200 > > blah blah blah > > > As color in *vc-change-log* buffers is an issue for font-locking, and > not for git log, the command should be called with --no-color. > > OK to the following patch? > > Juanma > > > 2009-12-14 Juanma Barranquero > > * vc-git.el (vc-git-print-log): Pass --no-color to `git log'. When did the --no-color option appear? If we pass it by default, then it will break C-x v l for git versions that do not support it. If --no-color is old enough, the it might not matter... From lekktu@gmail.com Tue Dec 15 07:43:12 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 15:43:13 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.0 required=4.0 tests=AWL,HAS_BUG_NUMBER, IMPRONONCABLE_2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFFhAPi025563 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 07:43:12 -0800 Received: by bwz27 with SMTP id 27so2931177bwz.1 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 07:43:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=9Nc3t923QBqf84SAKI+cf7P93PMN6zzTyqGg5/OaVuM=; b=KOcAWSJKtzEs+hY7FeHk2pmriPHQd8wAtlNzFuvR7qr1ELajwULmL3Z5RnyvqAlGGM 4AkHA1WNXNvnE1Vm/CKyyGXx4Fw8iahaEBD2xQnjJwXm8s7fk/UX9EJnEuvVBpi+SnyZ /5p4BeGjP0UkNcjZc/o7P2dfGO3ioWQwloarg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=tgKT5cY+AB51hMwzU5oUpYUY1V/P8xbgdDkaEgSVpcp33T5hdDk3esLXFdignV7brO tGT+IqmGS4UpQ35JalOlIyCwx+ZsljJK8+1j7ARvYAAPIoi/8hQslXq6KOJrNp6gnsOD yzu8bxuO9Z26+VKUzWnD24ikZ0CfovAIYOhYE= MIME-Version: 1.0 Received: by 10.204.34.71 with SMTP id k7mr3813096bkd.206.1260891785168; Tue, 15 Dec 2009 07:43:05 -0800 (PST) In-Reply-To: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> References: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> From: Juanma Barranquero Date: Tue, 15 Dec 2009 16:42:45 +0100 Message-ID: Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log To: Dan Nicolaescu Cc: 5211@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 On Tue, Dec 15, 2009 at 15:57, Dan Nicolaescu wrote: > When did the --no-color option appear? > If we pass it by default, then it will break C-x v l for git versions > that do not support it. > If --no-color is old enough, the it might not matter... Good question. According to the logs, in July 2006 commit fef88bb0134dfd47b4bd17e668bbb860588dcb39 Author: Junio C Hamano Date: 2006-07-07 05:27:24 -0700 diff.c: --no-color to defeat diff.color configuration. Signed-off-by: Junio C Hamano which means, if I'm not mistaken, that it appeared in git 1.4.2. Juanma From whitebox@nefkom.net Tue Dec 15 10:32:32 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 18:32:32 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.9 required=4.0 tests=AWL,GMAIL,HAS_BUG_NUMBER, IMPRONONCABLE_2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFIWUjK011445 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 10:32:32 -0800 Received: from mail01.m-online.net (mail.m-online.net [192.168.3.149]) by mail-out.m-online.net (Postfix) with ESMTP id 0D9CE1C00157; Tue, 15 Dec 2009 19:32:27 +0100 (CET) Received: from localhost (dynscan2.mnet-online.de [192.168.1.215]) by mail.m-online.net (Postfix) with ESMTP id 9135B90077; Tue, 15 Dec 2009 19:32:27 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.3.149]) by localhost (dynscan2.mnet-online.de [192.168.1.215]) (amavisd-new, port 10024) with ESMTP id LC2BOiWpzB73; Tue, 15 Dec 2009 19:32:26 +0100 (CET) Received: from igel.home (DSL01.83.171.165.132.ip-pool.NEFkom.net [83.171.165.132]) by mail.mnet-online.de (Postfix) with ESMTP; Tue, 15 Dec 2009 19:32:26 +0100 (CET) Received: by igel.home (Postfix, from userid 501) id 0EEB5CA28C; Tue, 15 Dec 2009 19:32:25 +0100 (CET) From: Andreas Schwab To: Juanma Barranquero Cc: 5211@debbugs.gnu.org, Dan Nicolaescu Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log References: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> X-Yow: While I'm in LEVITTOWN I thought I'd like to see the NUCLEAR FAMILY!! Date: Tue, 15 Dec 2009 19:32:25 +0100 In-Reply-To: (Juanma Barranquero's message of "Tue, 15 Dec 2009 16:42:45 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Juanma Barranquero writes: > Good question. According to the logs, in July 2006 > > > commit fef88bb0134dfd47b4bd17e668bbb860588dcb39 > Author: Junio C Hamano > Date: 2006-07-07 05:27:24 -0700 > > diff.c: --no-color to defeat diff.color configuration. > > Signed-off-by: Junio C Hamano > > > which means, if I'm not mistaken, that it appeared in git 1.4.2. $ git describe fef88bb0134dfd47b4bd17e668bbb860588dcb39 v1.4.1-91-gfef88bb Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From lekktu@gmail.com Tue Dec 15 10:36:50 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 18:36:51 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.0 required=4.0 tests=AWL,HAS_BUG_NUMBER, IMPRONONCABLE_2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFIammg011850 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 10:36:50 -0800 Received: by bwz27 with SMTP id 27so170731bwz.1 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 10:36:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=QTNQxETcdT+iylevT1O+q79R5X7U0+9gXnZMCHFx4kk=; b=RlX+rGm04UDfSBQfF3UVNcVdyXKfeuXf6pal/3ZcPwZpS0+kwwgcjJRtwiExjO1r+W F/sBz6ZQfVt+vYYHpv3BcMgu5Kf/Oep+w9H272jkqFvNHDUFEAzFLgDBnaIGtaLoMDfE 5GXyoHCdTWyFOexI9T2054d897kTwdakv4pIo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=i56arjn1Say0YpzJuE7vO7u41eFoeHL2GelQEswvrxhqoWmjl/7X4fwRm+wr9H++g4 nRdH5VHCJWUbLmEKhGGuBrG9q6x7jvehV2CelHE7MmtLNVkgMBJyDXgiyxTvM8A1DWH3 S0vk49hlK5oj49QEcP30x2MwAGiidQk2h+kgM= MIME-Version: 1.0 Received: by 10.204.25.81 with SMTP id y17mr613738bkb.96.1260902200152; Tue, 15 Dec 2009 10:36:40 -0800 (PST) In-Reply-To: References: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> From: Juanma Barranquero Date: Tue, 15 Dec 2009 19:36:20 +0100 Message-ID: Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log To: Andreas Schwab Cc: 5211@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 On Tue, Dec 15, 2009 at 19:32, Andreas Schwab wrote: > $ git describe fef88bb0134dfd47b4bd17e668bbb860588dcb39 Thanks, I didn't remember that command. > v1.4.1-91-gfef88bb That's a beta for 1.4.2, isn't it? Juanma From whitebox@nefkom.net Tue Dec 15 15:35:01 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 23:35:02 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-1.8 required=4.0 tests=AWL,GMAIL,HAS_BUG_NUMBER, IMPRONONCABLE_2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.10]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFNYxQi009377 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 15:35:01 -0800 Received: from mail01.m-online.net (mail.m-online.net [192.168.3.149]) by mail-out.m-online.net (Postfix) with ESMTP id 002FA1C0010F; Wed, 16 Dec 2009 00:34:58 +0100 (CET) Received: from localhost (dynscan2.mnet-online.de [192.168.1.215]) by mail.m-online.net (Postfix) with ESMTP id 8FDE790485; Wed, 16 Dec 2009 00:34:58 +0100 (CET) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.3.149]) by localhost (dynscan2.mnet-online.de [192.168.1.215]) (amavisd-new, port 10024) with ESMTP id Ac2Ezq7zY9GC; Wed, 16 Dec 2009 00:34:57 +0100 (CET) Received: from igel.home (DSL01.83.171.165.132.ip-pool.NEFkom.net [83.171.165.132]) by mail.mnet-online.de (Postfix) with ESMTP; Wed, 16 Dec 2009 00:34:57 +0100 (CET) Received: by igel.home (Postfix, from userid 501) id 503A3CA28C; Wed, 16 Dec 2009 00:34:57 +0100 (CET) From: Andreas Schwab To: Juanma Barranquero Cc: 5211@debbugs.gnu.org Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log References: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> X-Yow: If I am elected, the concrete barriers around the WHITE HOUSE will be replaced by tasteful foam replicas of ANN MARGARET! Date: Wed, 16 Dec 2009 00:34:57 +0100 In-Reply-To: (Juanma Barranquero's message of "Tue, 15 Dec 2009 19:36:20 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Juanma Barranquero writes: > On Tue, Dec 15, 2009 at 19:32, Andreas Schwab wrote: > >> $ git describe fef88bb0134dfd47b4bd17e668bbb860588dcb39 > > Thanks, I didn't remember that command. > >> v1.4.1-91-gfef88bb > > That's a beta for 1.4.2, isn't it? That just means the commit is 91 commits after tag v1.4.1, and there is no other tag in between. $ git tag --contains fef88bb0134dfd47b4bd17e668bbb860588dcb39 | head -1 v1.4.2 Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different." From lekktu@gmail.com Tue Dec 15 15:58:21 2009 Received: (at 5211) by emacsbugs.donarmstrong.com; 15 Dec 2009 23:58:21 +0000 X-Spam-Checker-Version: SpamAssassin 3.2.5-bugs.debian.org_2005_01_02 (2008-06-10) on rzlab.ucr.edu X-Spam-Level: X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. X-Spam-Status: No, score=-2.0 required=4.0 tests=AWL,HAS_BUG_NUMBER, IMPRONONCABLE_2 autolearn=ham version=3.2.5-bugs.debian.org_2005_01_02 Received: from mail-bw0-f227.google.com (mail-bw0-f227.google.com [209.85.218.227]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id nBFNwJbq011654 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 15:58:21 -0800 Received: by bwz27 with SMTP id 27so377667bwz.1 for <5211@emacsbugs.donarmstrong.com>; Tue, 15 Dec 2009 15:58:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=j6SDjDViq1UjHUe9y6YHM39j3l4stTZrkmToLPnSQHY=; b=np57avbWVf2A+Xd/yfjmG0FzvM1Wvk//g5oWTlE+nllP+pM3XbV7nWtjEe7gQqXR6h Kx/lRW7ItqI9FwSOGUfGaOvXEblprVcvRQ3yqfQ6GQ6XeV7S1ZBLPtyUTs5TkxHbDoy1 t+iuoI2BbLWhsShpX0q9bkzWBGI03U/VWNxTo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=b7h3lsX2I4W6rdoDxuC2jWY+MDmyjPaCPTyL4LtOuxUtNc5WnSSMFGhNem53HEviEl dqYCNamcHJ5wX/GliD5VrlVZbIASSMPXRY85T4TrsfnBNzhVQPa8rnE1n3x2ApyjRWWm mO7IhTvpbAmcr+8W0Zy0gQrlnxYvw5kEKV68s= MIME-Version: 1.0 Received: by 10.204.48.131 with SMTP id r3mr110310bkf.195.1260921494099; Tue, 15 Dec 2009 15:58:14 -0800 (PST) In-Reply-To: References: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> From: Juanma Barranquero Date: Wed, 16 Dec 2009 00:57:54 +0100 Message-ID: Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log To: Andreas Schwab Cc: 5211@debbugs.gnu.org Content-Type: text/plain; charset=UTF-8 On Wed, Dec 16, 2009 at 00:34, Andreas Schwab wrote: > That just means the commit is 91 commits after tag v1.4.1, and there is > no other tag in between. OK, thanks. > $ git tag --contains fef88bb0134dfd47b4bd17e668bbb860588dcb39 | head -1 > v1.4.2 So --no-color was first included in a release of 2006-08-13. Is that old enough? (git 1.0.0 is from 2005-12-21, barely eight months earlier, so 1.4.2 is quite old indeed). Juanma From debbugs-submit-bounces@debbugs.gnu.org Sun Dec 27 21:48:19 2009 Received: (at 5211-done) by debbugs.gnu.org; 28 Dec 2009 02:48:19 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NP5ec-0004FJ-LK for submit@debbugs.gnu.org; Sun, 27 Dec 2009 21:48:18 -0500 Received: from mail-bw0-f216.google.com ([209.85.218.216]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NP5eb-0004FD-59 for 5211-done@debbugs.gnu.org; Sun, 27 Dec 2009 21:48:17 -0500 Received: by bwz8 with SMTP id 8so6580981bwz.39 for <5211-done@debbugs.gnu.org>; Sun, 27 Dec 2009 18:48:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=VHo5TXZl0OP8nyV0TbuNYQ7A+PlYO4dxDgPX629SuWo=; b=M4w0ajAKOh8Kl370HRc5Bfp834R7OKpJ5377juQutnUPO613dVTn35uFb26zQRT1p5 dCEUnZ5wyxeBwcMZ4UWdlLhAXOgX6l52/4DHznnLASwcKhV2Wedjzgjq1aGz6lD7Ajg8 dnSd+lJAlQPnbaDVpvRRm4eDiBr8E2F5afhK4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=V29P/bnKiK1XUhj5w5abbuTONT+9OcYvU80XzU9tFitoMAC0sni0vfuNaSEOy0scZf Ok8Piw0EciGthQI48ql/Mp6EDRkRla8pmofEMfNI+xa7QtliAK1wm3r2f1Iwx6bvUs/n RFjjsIkvHRwExCTbgHD+96tfOuM829imwfQDk= MIME-Version: 1.0 Received: by 10.204.33.139 with SMTP id h11mr403725bkd.149.1261968492812; Sun, 27 Dec 2009 18:48:12 -0800 (PST) In-Reply-To: References: <200912151457.nBFEvUT3007406@godzilla.ics.uci.edu> From: Juanma Barranquero Date: Mon, 28 Dec 2009 03:47:52 +0100 Message-ID: Subject: Re: bug#5211: Color escape codes in the output of vc-git-print-log To: Andreas Schwab Content-Type: text/plain; charset=UTF-8 X-Spam-Score: -0.2 (/) X-Debbugs-Envelope-To: 5211-done Cc: 5211-done@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: -1.4 (-) On Wed, Dec 16, 2009 at 00:57, Juanma Barranquero wrote: > So --no-color was first included in a release of 2006-08-13. Is that > old enough? (git 1.0.0 is from 2005-12-21, barely eight months > earlier, so 1.4.2 is quite old indeed). I've committed this change (with the acquiescence of Chong Yidong). Juanma From unknown Fri Jun 20 07:15:52 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 25 Jan 2010 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # A New Hope # A long time ago, in a galaxy far, far away # something happened. # # Magically this resulted in the following # action being taken, but this fake control # message doesn't tell you why it happened # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator