From unknown Sun Aug 10 11:49:37 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#9205 <9205@debbugs.gnu.org> To: bug#9205 <9205@debbugs.gnu.org> Subject: Status: 24.0.50; colored mark in vc mode-line Reply-To: bug#9205 <9205@debbugs.gnu.org> Date: Sun, 10 Aug 2025 18:49:37 +0000 retitle 9205 24.0.50; colored mark in vc mode-line reassign 9205 emacs submitter 9205 pmlists@free.fr (Peter M=C3=BCnster) severity 9205 wishlist tag 9205 wontfix patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 30 13:58:16 2011 Received: (at submit) by debbugs.gnu.org; 30 Jul 2011 17:58:17 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QnDnj-00063E-SV for submit@debbugs.gnu.org; Sat, 30 Jul 2011 13:58:16 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Qml0k-0004N1-R9 for submit@debbugs.gnu.org; Fri, 29 Jul 2011 07:13:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qml0f-0002MU-9P for submit@debbugs.gnu.org; Fri, 29 Jul 2011 07:13:41 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([140.186.70.17]:38296) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qml0f-0002MQ-7y for submit@debbugs.gnu.org; Fri, 29 Jul 2011 07:13:41 -0400 Received: from eggs.gnu.org ([140.186.70.92]:50574) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qml0e-0001hp-9A for bug-gnu-emacs@gnu.org; Fri, 29 Jul 2011 07:13:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qml0d-0002Ly-82 for bug-gnu-emacs@gnu.org; Fri, 29 Jul 2011 07:13:40 -0400 Received: from smtp10.smtpout.orange.fr ([80.12.242.132]:57968 helo=smtp.smtpout.orange.fr) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qml0d-0002Lu-2T for bug-gnu-emacs@gnu.org; Fri, 29 Jul 2011 07:13:39 -0400 Received: from micropit.couberia.bzh ([2.2.136.27]) by mwinf5d33 with ME id DnDc1h0060beR4203nDctV; Fri, 29 Jul 2011 13:13:37 +0200 X-ME-engine: default Received: by micropit.couberia.bzh (Postfix, from userid 1000) id 4FED21609E6; Fri, 29 Jul 2011 13:13:36 +0200 (CEST) From: pmlists@free.fr (Peter =?utf-8?Q?M=C3=BCnster?=) To: bug-gnu-emacs@gnu.org Subject: 24.0.50; colored mark in vc mode-line Date: Fri, 29 Jul 2011 13:13:36 +0200 Message-ID: <874o25jq5b.fsf@micropit.couberia.bzh> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. 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.6 (------) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 30 Jul 2011 13:58:15 -0400 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.6 (------) Hello, Here a little feature request for vc: --8<---------------cut here---------------start------------->8--- ;; Make it immediately obvious, if file is modified or not, by a red or ;; a green point in the modeline. ;; Code is from psvn.el by Stefan Reichoer (GNU GPL) (defvar vc-state-mark-modeline t) (defun vc-mark-modeline-dot (color) (propertize " " 'display `(image :type xpm :data ,(format "/* XPM */ static char * data[] = { \"18 13 3 1\", \" c None\", \"+ c #000000\", \". c %s\", \" \", \" +++++ \", \" +.....+ \", \" +.......+ \", \" +.........+ \", \" +.........+ \", \" +.........+ \", \" +.........+ \", \" +.........+ \", \" +.......+ \", \" +.....+ \", \" +++++ \", \" \"};" color) :ascent center))) (defsubst vc-state->color (stat) "Interpret vc-state symbol to mode line color" (case stat ('edited "tomato" ) ('up-to-date "GreenYellow" ) ;; what is missing here?? ;; ('unknown "gray" ) ;; ('added "blue" ) ;; ('deleted "red" ) ;; ('unmerged "purple" ) (t "red"))) (defun vc-install-state-mark-modeline (color) (push `(vc-state-mark-modeline ,(vc-mark-modeline-dot color)) mode-line-format)) (defun vc-uninstall-state-mark-modeline () (setq mode-line-format (remove-if #'(lambda (mode) (eq (car-safe mode) 'vc-state-mark-modeline)) mode-line-format))) (defadvice vc-default-mode-line-string (before my-before-vc-mode-line-string activate) (let* ((backend-name (symbol-name backend)) (state (vc-state file backend)) (color (vc-state->color state))) (vc-uninstall-state-mark-modeline) (vc-install-state-mark-modeline color))) --8<---------------cut here---------------end--------------->8--- Cheers, -- Peter From debbugs-submit-bounces@debbugs.gnu.org Tue Apr 10 19:58:14 2012 Received: (at 9205) by debbugs.gnu.org; 10 Apr 2012 23:58:14 +0000 Received: from localhost ([127.0.0.1]:49583 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHkwv-0006uG-QN for submit@debbugs.gnu.org; Tue, 10 Apr 2012 19:58:13 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:50388) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHkwt-0006u5-8Y for 9205@debbugs.gnu.org; Tue, 10 Apr 2012 19:58:11 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SHkvk-0002nD-BD; Wed, 11 Apr 2012 01:57:00 +0200 From: Lars Magne Ingebrigtsen To: pmlists@free.fr (Peter =?iso-8859-1?Q?M=FCnster?=) Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> X-Now-Playing: Lichens's _Time & Light (version)_: "(untitled)" Date: Wed, 11 Apr 2012 01:56:59 +0200 In-Reply-To: <874o25jq5b.fsf@micropit.couberia.bzh> ("Peter \=\?iso-8859-1\?Q\?M\=FCnster\=22's\?\= message of "Fri, 29 Jul 2011 13:13:36 +0200") Message-ID: User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1SHkvk-0002nD-BD X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334707021.08516@APoIfvx4oyonkFGQoRw81A X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: 9205@debbugs.gnu.org, Stefan Monnier 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: -1.9 (-) pmlists@free.fr (Peter M=FCnster) writes: > Here a little feature request for vc: > ;; Make it immediately obvious, if file is modified or not, by a red or > ;; a green point in the modeline. > ;; Code is from psvn.el by Stefan Reichoer (GNU GPL) I think that looks really nice. The code needs some massaging before possible inclusion, but, Stefan (the other one), what do you think? Does Stefan Reichoer have FSF copyright assignment papers on file, though? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 11 02:44:45 2012 Received: (at 9205) by debbugs.gnu.org; 11 Apr 2012 06:44:45 +0000 Received: from localhost ([127.0.0.1]:50191 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHrIG-0002W6-DX for submit@debbugs.gnu.org; Wed, 11 Apr 2012 02:44:44 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:54700) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHrIA-0002Vw-Am for 9205@debbugs.gnu.org; Wed, 11 Apr 2012 02:44:38 -0400 Received: from [155.69.16.95] (port=49374 helo=ulysses) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1SHrH4-0003lW-RO; Wed, 11 Apr 2012 02:43:27 -0400 From: Chong Yidong To: Lars Magne Ingebrigtsen Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> Date: Wed, 11 Apr 2012 14:43:19 +0800 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Wed, 11 Apr 2012 01:56:59 +0200") Message-ID: <87vcl64vlk.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.95 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: 9205 Cc: 9205@debbugs.gnu.org, Peter =?utf-8?Q?M=C3=BCnster?= 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 (------) Lars Magne Ingebrigtsen writes: > pmlists@free.fr (Peter M=C3=BCnster) writes: > >> Here a little feature request for vc: >> ;; Make it immediately obvious, if file is modified or not, by a red or >> ;; a green point in the modeline. >> ;; Code is from psvn.el by Stefan Reichoer (GNU GPL) > > I think that looks really nice. The code needs some massaging before > possible inclusion, but, Stefan (the other one), what do you think? > > Does Stefan Reichoer have FSF copyright assignment papers on file, > though? Yes. But I don't know think psvn.el is currently covered under his copyright assignment. If he wants it to be covered, the procedure is simple: he just has to send an email to fsf-records@gnu.org saying that psvn.el should be covered under his existing assignment. From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 11 03:40:40 2012 Received: (at 9205) by debbugs.gnu.org; 11 Apr 2012 07:40:40 +0000 Received: from localhost ([127.0.0.1]:50282 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHsAR-0004gh-V5 for submit@debbugs.gnu.org; Wed, 11 Apr 2012 03:40:40 -0400 Received: from moutng.kundenserver.de ([212.227.17.8]:61939) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SHsAP-0004gW-PJ for 9205@debbugs.gnu.org; Wed, 11 Apr 2012 03:40:38 -0400 Received: from pchagakli.ge-research.com (gw.gleichmann.cust.net.lagis.at [83.164.197.134]) by mrelayeu.kundenserver.de (node=mreu1) with ESMTP (Nemesis) id 0M3fC1-1S0Cjo3RYn-00rryk; Wed, 11 Apr 2012 09:39:22 +0200 From: Stefan =?iso-8859-1?Q?Reich=F6r?= To: Chong Yidong Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line In-Reply-To: <87vcl64vlk.fsf@gnu.org> (Chong Yidong's message of "Wed, 11 Apr 2012 14:43:19 +0800") References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) Date: Wed, 11 Apr 2012 09:39:21 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Provags-ID: V02:K0:nXTZB1mu21pleI7yh8HxPe+8Cqsw8iRgbq2c5tzVsPJ R45feQUG8LYuCzT0SayZamILLG3mlNiyL+rwykJyvwjPPRN3EH XMsHDyHxllFI9eT55TBwif5Ax9hapLvdnCRN5ZyRZFUu6UYrkh QIBO6AgZb6AZkykWSH8W+AuZU5lIW6pw/vNRZnCpOeKJqSGQoT nvUMbbXiwXlySv53+tgV4cdSnBxk9d77g4hdaIrXbl66SMN6Xy pjd1h+nEGbM6S34KwVdOaTPtqCgdrcDqBULCuCcxti6X8qF8A4 9tw9IgYUllTRjyQRL11v164mPGmFSFsmXx69/fM9yHheuPcJR5 M2jexqAFB1HYW05tECZqtBnZh42QCMeV1sP9XjxkR5drEUaX+e js96EjFFgTYOA== X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: Lars Magne Ingebrigtsen , Peter =?iso-8859-1?Q?M=FCnster?= , 9205@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: -1.9 (-) Chong Yidong writes: > Lars Magne Ingebrigtsen writes: > >> pmlists@free.fr (Peter M=FCnster) writes: >> >>> Here a little feature request for vc: >>> ;; Make it immediately obvious, if file is modified or not, by a red or >>> ;; a green point in the modeline. >>> ;; Code is from psvn.el by Stefan Reichoer (GNU GPL) >> >> I think that looks really nice. The code needs some massaging before >> possible inclusion, but, Stefan (the other one), what do you think? >> >> Does Stefan Reichoer have FSF copyright assignment papers on file, >> though? > > Yes. But I don't know think psvn.el is currently covered under his > copyright assignment. If he wants it to be covered, the procedure is > simple: he just has to send an email to fsf-records@gnu.org saying that > psvn.el should be covered under his existing assignment. Exactly. psvn.el is not covered. There are way to much contributors to this package. If somebody is willing to contact them, I am fine with that. But I don't want to do this. The code for the color indication was integrated by me. I took the image definition from somewhere else. The rest of the code was written by me. Stefan. From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 09:41:22 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 13:41:22 +0000 Received: from localhost ([127.0.0.1]:53591 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIKH4-0005BM-2G for submit@debbugs.gnu.org; Thu, 12 Apr 2012 09:41:22 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:33349) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIKH1-0005BC-Eb for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 09:41:20 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SIKFh-00051B-4F; Thu, 12 Apr 2012 15:39:57 +0200 From: Lars Magne Ingebrigtsen To: Stefan =?iso-8859-1?Q?Reich=F6r?= Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> X-Now-Playing: Bob Hund's _Sover Aldrig_: "Mer =?iso-8859-1?Q?=C4n_S=E5?= Kan Ingen Bli" Date: Thu, 12 Apr 2012 15:39:56 +0200 In-Reply-To: ("Stefan \=\?iso-8859-1\?Q\?Reic\?\= \=\?iso-8859-1\?Q\?h\=F6r\=22's\?\= message of "Wed, 11 Apr 2012 09:39:21 +0200") Message-ID: User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1SIKFh-00051B-4F X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334842797.22206@NTb82Z3a9N4zJU+8sXmmjA X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: Peter =?iso-8859-1?Q?M=FCnster?= , 9205@debbugs.gnu.org, Chong Yidong 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: -1.9 (-) Stefan Reich=F6r writes: > The code for the color indication was integrated by me. I took the image > definition from somewhere else. The rest of the code was written by me. Right. I guess we'd have to make a new image, which should be easy enough, since it's just a circle. And the rest of the code can't really be used as in the Emacs tree, so I guess the copyright state of psvn.el isn't really that important. But the main question is: Do we want to report the VC state in the mode line? And if so, do we want to do it this graphically (on graphic systems)? I think that something like this looks nice, and seems useful. What do all y'all think? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 10:24:21 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 14:24:21 +0000 Received: from localhost ([127.0.0.1]:54385 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIKwf-0006N7-EB for submit@debbugs.gnu.org; Thu, 12 Apr 2012 10:24:21 -0400 Received: from smtp01.smtpout.orange.fr ([80.12.242.123]:38406 helo=smtp.smtpout.orange.fr) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIKwd-0006Mz-9i for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 10:24:20 -0400 Received: from micropit.couberia.bzh ([86.214.214.131]) by mwinf5d53 with ME id x2P31i0012qgFEW032P3fP; Thu, 12 Apr 2012 16:23:05 +0200 Received: by micropit.couberia.bzh (Postfix, from userid 1000) id AD398500752; Thu, 12 Apr 2012 16:23:02 +0200 (CEST) From: =?utf-8?Q?Peter_M=C3=BCnster?= To: Lars Magne Ingebrigtsen Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> Date: Thu, 12 Apr 2012 16:23:02 +0200 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Thu, 12 Apr 2012 15:39:56 +0200") Message-ID: <87bomxyqpl.fsf@micropit.couberia.bzh> User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.0.95 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: Peter =?utf-8?Q?M=C3=BCnster?= , 9205@debbugs.gnu.org, Stefan =?utf-8?Q?Reich=C3=B6r?= , Chong Yidong 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: -1.9 (-) On Thu, Apr 12 2012, Lars Magne Ingebrigtsen wrote: > But the main question is: Do we want to report the VC state in the mode > line? For me it's "yes" (naturally... ;) > And if so, do we want to do it this graphically (on graphic systems)? Also yes. For those, who don't want it, there could be a configuration variable. -- Peter From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 10:37:31 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 14:37:31 +0000 Received: from localhost ([127.0.0.1]:54390 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIL9O-0006fX-RB for submit@debbugs.gnu.org; Thu, 12 Apr 2012 10:37:31 -0400 Received: from ironport-out.teksavvy.com ([206.248.143.162]:19954) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIL9N-0006fO-41 for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 10:37:30 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ApYIACxOgk9FxL8q/2dsb2JhbABDuCMDgQyBCIIJAQEEAVYjEAs0EhQYDQ0XE4gJBbYyi2GEeQSkRYFdgwOBQA X-IronPort-AV: E=Sophos;i="4.75,391,1330923600"; d="scan'208";a="173707797" Received: from 69-196-191-42.dsl.teksavvy.com (HELO pastel.home) ([69.196.191.42]) by ironport2-out.teksavvy.com with ESMTP/TLS/ADH-AES256-SHA; 12 Apr 2012 10:36:15 -0400 Received: by pastel.home (Postfix, from userid 20848) id B3FE659168; Thu, 12 Apr 2012 10:36:14 -0400 (EDT) From: Stefan Monnier To: Stefan =?iso-8859-1?Q?Reich=F6r?= Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line Message-ID: References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> Date: Thu, 12 Apr 2012 10:36:14 -0400 In-Reply-To: ("Stefan =?iso-8859-1?Q?Reic?= =?iso-8859-1?Q?h=F6r=22's?= message of "Wed, 11 Apr 2012 09:39:21 +0200") 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: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: Peter =?iso-8859-1?Q?M=FCnster?= , Lars Magne Ingebrigtsen , Chong Yidong , 9205@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: -1.9 (-) >> Yes. But I don't know think psvn.el is currently covered under his >> copyright assignment. If he wants it to be covered, the procedure is >> simple: he just has to send an email to fsf-records@gnu.org saying that >> psvn.el should be covered under his existing assignment. > Exactly. psvn.el is not covered. There are way to much contributors to > this package. If somebody is willing to contact them, I am fine with > that. But I don't want to do this. That's just a misunderstanding: the email to fsf-records@gnu.org is not about "all of psvn.el" but only about the part of psvn.el that you wrote (and it couldn't be any other way, since you have no authority over the copyright of other contributors). Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 12:08:20 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 16:08:20 +0000 Received: from localhost ([127.0.0.1]:54530 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIMZH-0001DR-NT for submit@debbugs.gnu.org; Thu, 12 Apr 2012 12:08:19 -0400 Received: from pruche.dit.umontreal.ca ([132.204.246.22]:37234) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIMZF-0001DI-Lp for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 12:08:18 -0400 Received: from faina.iro.umontreal.ca (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id q3CG73Jm025035; Thu, 12 Apr 2012 12:07:03 -0400 Received: by faina.iro.umontreal.ca (Postfix, from userid 20848) id 86389B40D6; Thu, 12 Apr 2012 12:07:03 -0400 (EDT) From: Stefan Monnier To: Peter =?iso-8859-1?Q?M=FCnster?= Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line Message-ID: References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> Date: Thu, 12 Apr 2012 12:07:02 -0400 In-Reply-To: <87bomxyqpl.fsf@micropit.couberia.bzh> ("Peter =?iso-8859-1?Q?M=FCnster=22's?= message of "Thu, 12 Apr 2012 16:23:02 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV4190=0 X-NAI-Spam-Version: 2.2.0.9309 : core <4190> : streams <746261> : uri <1098450> X-Spam-Score: -3.5 (---) X-Debbugs-Envelope-To: 9205 Cc: Lars Magne Ingebrigtsen , Stefan =?iso-8859-1?Q?Reich?= =?iso-8859-1?Q?=F6r?= , 9205@debbugs.gnu.org, Chong Yidong 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: -3.5 (---) >> But the main question is: Do we want to report the VC state in the mode >> line? > For me it's "yes" (naturally... ;) Maybe I misunderstood the question, but we've been reporting the VC state in the mode-line for as long as I can remember (except for pre-VC times, obviously). And people don't seem annoyed by it very much, so we can assume that it's a "yes". Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 12:10:55 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 16:10:56 +0000 Received: from localhost ([127.0.0.1]:54534 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIMbn-0001Gx-5D for submit@debbugs.gnu.org; Thu, 12 Apr 2012 12:10:55 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:35025) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIMbl-0001Gq-3O for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 12:10:54 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SIMaO-0004aY-Ue; Thu, 12 Apr 2012 18:09:28 +0200 From: Lars Magne Ingebrigtsen To: Stefan Monnier Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEWGRzs5EBcdCA/7zKr0 vZnprYnJiWxXHR/wi9pIAAACMElEQVQ4jW2ST4+bMBDFZ6uNfY25cK259APA7nklTM6VgunV6pbJ Fa/azNfvG0Noou0okeD9mH/PpvZThBBinAhPXdv2N7VvO4AhRnptzy9t+/4IRoA3fp/ivINuz+iG 9xDP/UOLAk4B4supD7cUBehOA/P8ymm46d2qRyofjMMYz2vzrdIGQuheznuHBxBO57XKJxACvu63 x0cQ/gsGJjmEvrsHQ+Rkq6ZpZL7vMa2ix7+5jrs+Ud3sUX+dw7jpvAN3FPo2xy0APiAeSYisOH+4 A9mQGEPWOVc9gCcMqqqrGu9NUWErwBdREV83O8BIM0C9AQxdwIj1kgFwXkHj3Q102PgKAL1RcMvA gaIt008Aj8Wdrr/QPOtJT3YFlRZCijfT9R54ba7be8O8lirAb60RACOu3JAWWOIbbVsy4A2pi5Ot CVNpDb/5SzZiDbYi9OT/+d7AS108WbhqtyqIj3pBqQFAkgJ3O5FGxBpcdKajFZJN9i47t9g/yOAn QQ+pSnfnRGpZ0u9xmJIrIMPYyrkaLwDPGPayAfUdwCoYnztskbOrCRXgCABZuxCbHkZVqKx3oMRC ljkZOgx20XRk5Fqyy7XV8zR8YKwgK8D3OV+/03giZpPEYKxM2lOTDj+of8XBcRL8dKoStfxiE94g xwsyxNoVIGNmHhKcSkR8ESYdt87YyEBIhCuYCkiENbJufSyjXmC8wGPNwCXByoQ3MrEUWTC1kCse kZ4MaTAvZdC/z+UL8cX/aVIAAAAASUVORK5CYII= X-Now-Playing: Bob Hund's _Sover Aldrig_: "Ett Fall & En =?iso-8859-1?Q?L?= =?iso-8859-1?Q?=F6sning=22?= Date: Thu, 12 Apr 2012 18:09:28 +0200 In-Reply-To: (Stefan Monnier's message of "Thu, 12 Apr 2012 12:07:02 -0400") Message-ID: User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1SIMaO-0004aY-Ue X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334851769.94807@ZV8gbmfNLov9c8O5ajRpKw X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?iso-8859-1?Q?Reich=F6r?= , 9205@debbugs.gnu.org, Peter =?iso-8859-1?Q?M=FCnster?= , Chong Yidong 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: -1.9 (-) Stefan Monnier writes: > Maybe I misunderstood the question, but we've been reporting the VC > state in the mode-line for as long as I can remember (except for pre-VC > times, obviously). And people don't seem annoyed by it very much, so we > can assume that it's a "yes". You mean if you let the mouse hover over the thing that says "Bzr-"? I don't see anything that changes visually, though, when a file changes `vc-state'... -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 14:23:58 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 18:23:58 +0000 Received: from localhost ([127.0.0.1]:54685 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIOgY-000647-4X for submit@debbugs.gnu.org; Thu, 12 Apr 2012 14:23:58 -0400 Received: from pruche.dit.umontreal.ca ([132.204.246.22]:42003) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIOgW-000640-5n for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 14:23:56 -0400 Received: from faina.iro.umontreal.ca (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.1/8.14.1) with ESMTP id q3CIMf8k023583; Thu, 12 Apr 2012 14:22:41 -0400 Received: by faina.iro.umontreal.ca (Postfix, from userid 20848) id 6C802B4066; Thu, 12 Apr 2012 14:22:41 -0400 (EDT) From: Stefan Monnier To: Lars Magne Ingebrigtsen Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line Message-ID: References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> Date: Thu, 12 Apr 2012 14:22:41 -0400 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Thu, 12 Apr 2012 18:09:28 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.94 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV4190=0 X-NAI-Spam-Version: 2.2.0.9309 : core <4190> : streams <746295> : uri <1098483> X-Spam-Score: -3.5 (---) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?iso-8859-1?Q?Reich=F6r?= , 9205@debbugs.gnu.org, Peter =?iso-8859-1?Q?M=FCnster?= , Chong Yidong 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: -3.5 (---) >> Maybe I misunderstood the question, but we've been reporting the VC >> state in the mode-line for as long as I can remember (except for pre-VC >> times, obviously). And people don't seem annoyed by it very much, so we >> can assume that it's a "yes". > You mean if you let the mouse hover over the thing that says > "Bzr-"? I don't see anything that changes visually, though, when a > file changes `vc-state'... The text is supposed to change between Bzr-nn (unmodified), Bzr:nn (locally modified), Bzr@nn (locally added), ... see vc-default-mode-line-string. Stefan From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 14:26:00 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 18:26:00 +0000 Received: from localhost ([127.0.0.1]:54689 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIOiU-000674-Hf for submit@debbugs.gnu.org; Thu, 12 Apr 2012 14:25:59 -0400 Received: from hermes.netfonds.no ([80.91.224.195]:34880) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIOiS-00066v-K6 for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 14:25:57 -0400 Received: from cm-84.215.51.58.getinternet.no ([84.215.51.58] helo=stories.gnus.org) by hermes.netfonds.no with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1SIOh7-00070T-7J; Thu, 12 Apr 2012 20:24:33 +0200 From: Lars Magne Ingebrigtsen To: Stefan Monnier Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAKlBMVEW1s6SysK7CwrPS0tLE xMS6uqOoo5DS0qLIyMbOzs+qqYedkU+3rZrR0b38KR5TAAAAwklEQVQ4jWNITBMUlDBGB4bGDEg8 ZWQpBmcM1VAJHOKkSVjikrCYTL4djWCTmzElZoIlJpNgFIkSOAKLenYY4ZIwxS5h2YxLwtkGQ8IE r1F4JKxwSWDagWLUDJClLcCImgzigaMcomOioKCwoSAwNMEBKgiKSpw+NyQ5rKgoYYtLwhyfBHoy mYzLDmG8RjWR6apmXBJowNAYHB/geEEGlqCcBAx2791AsGD1KlAMWoL8tLrcfDfu+MApYYVUyBih SAAAKrfxhZoG/kQAAAAASUVORK5CYII= X-Now-Playing: Various's _Room 40_: "John Chantler - Stockholm Organ" Date: Thu, 12 Apr 2012 20:24:32 +0200 In-Reply-To: (Stefan Monnier's message of "Thu, 12 Apr 2012 14:22:41 -0400") Message-ID: User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1SIOh7-00070T-7J X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1334859874.83348@+mLYhhhloJbPSdm2SudWoA X-Spam-Status: No X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?iso-8859-1?Q?Reich=F6r?= , 9205@debbugs.gnu.org, Peter =?iso-8859-1?Q?M=FCnster?= , Chong Yidong 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: -1.9 (-) Stefan Monnier writes: > The text is supposed to change between Bzr-nn (unmodified), Bzr:nn > (locally modified), Bzr@nn (locally added), ... see > vc-default-mode-line-string. Oh. That's really subtle. :-) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog http://lars.ingebrigtsen.no/ From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 12 14:52:23 2012 Received: (at 9205) by debbugs.gnu.org; 12 Apr 2012 18:52:23 +0000 Received: from localhost ([127.0.0.1]:54705 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIP83-0007YZ-A4 for submit@debbugs.gnu.org; Thu, 12 Apr 2012 14:52:23 -0400 Received: from smtp11.smtpout.orange.fr ([80.12.242.133]:37381 helo=smtp.smtpout.orange.fr) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SIP7x-0007YL-Tm for 9205@debbugs.gnu.org; Thu, 12 Apr 2012 14:52:19 -0400 Received: from micropit.couberia.bzh ([86.214.214.131]) by mwinf5d34 with ME id x6r01i00B2qgFEW036r0sq; Thu, 12 Apr 2012 20:51:02 +0200 Received: by micropit.couberia.bzh (Postfix, from userid 1000) id 57C50500751; Thu, 12 Apr 2012 20:51:00 +0200 (CEST) From: =?utf-8?Q?Peter_M=C3=BCnster?= To: Lars Magne Ingebrigtsen Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> Date: Thu, 12 Apr 2012 20:51:00 +0200 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Thu, 12 Apr 2012 20:24:32 +0200") Message-ID: <87k41kyeaz.fsf@micropit.couberia.bzh> User-Agent: Gnus/5.130004 (Ma Gnus v0.4) Emacs/24.0.95 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?utf-8?Q?Reich=C3=B6r?= , 9205@debbugs.gnu.org, Peter =?utf-8?Q?M=C3=BCnst?= =?utf-8?Q?er?= , Stefan Monnier , Chong Yidong 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: -1.9 (-) On Thu, Apr 12 2012, Lars Magne Ingebrigtsen wrote: > Stefan Monnier writes: > >> The text is supposed to change between Bzr-nn (unmodified), Bzr:nn >> (locally modified), Bzr@nn (locally added), ... see >> vc-default-mode-line-string. > > Oh. That's really subtle. :-) Indeed. Even too subtle. My eyes need something more glaring (e.g. a colored mark ... ;) -- Peter From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 29 20:42:29 2016 Received: (at 9205) by debbugs.gnu.org; 1 Mar 2016 01:42:30 +0000 Received: from localhost ([127.0.0.1]:54388 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZKX-0000BW-Oc for submit@debbugs.gnu.org; Mon, 29 Feb 2016 20:42:29 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:53997) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZKV-0000BO-92 for 9205@debbugs.gnu.org; Mon, 29 Feb 2016 20:42:28 -0500 Received: from 109.179.251.45.tmi.telenormobil.no ([109.179.251.45] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aaZK3-00036F-4S; Tue, 01 Mar 2016 02:42:00 +0100 From: Lars Ingebrigtsen To: Peter =?iso-8859-1?Q?M=FCnster?= Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> Date: Tue, 01 Mar 2016 12:41:47 +1100 In-Reply-To: <87k41kyeaz.fsf@micropit.couberia.bzh> ("Peter \=\?iso-8859-1\?Q\?M\=FCnster\=22's\?\= message of "Thu, 12 Apr 2012 20:51:00 +0200") Message-ID: <87bn6z3rfo.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1aaZK3-00036F-4S X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1457401321.40335@qfVVjR5WnZNf3jPyqvNRcQ X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 9205 Cc: 9205@debbugs.gnu.org, Stefan =?iso-8859-1?Q?Reich=F6r?= , Stefan Monnier , Chong Yidong 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.0 (/) I started to work on this now, but I thought I'd do it with SVGs, since the size of the mode line can vary, and SVGs can be made on the fly. However, I'm having trouble creating an SVG with transparent backgrounds, and it needs to be that, because the mode line changes background colour when the window is selected or not. Doesn't Emacs support SVGs with transparent backgrounds? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 29 20:48:41 2016 Received: (at 9205) by debbugs.gnu.org; 1 Mar 2016 01:48:41 +0000 Received: from localhost ([127.0.0.1]:54399 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZQW-0000Lh-M2 for submit@debbugs.gnu.org; Mon, 29 Feb 2016 20:48:41 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:39208) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZQR-0000LW-9u for 9205@debbugs.gnu.org; Mon, 29 Feb 2016 20:48:39 -0500 Received: from 109.179.251.45.tmi.telenormobil.no ([109.179.251.45] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aaZPz-0003Oz-NQ; Tue, 01 Mar 2016 02:48:08 +0100 From: Lars Ingebrigtsen To: Peter =?iso-8859-1?Q?M=FCnster?= Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> <87bn6z3rfo.fsf@gnus.org> Date: Tue, 01 Mar 2016 12:47:55 +1100 In-Reply-To: <87bn6z3rfo.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 01 Mar 2016 12:41:47 +1100") Message-ID: <877fhn3r5g.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-MailScanner-ID: 1aaZPz-0003Oz-NQ X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1457401688.93296@yKHYsSFnUOj7Xz7Wr64gbA X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 9205 Cc: 9205@debbugs.gnu.org, Stefan =?iso-8859-1?Q?Reich=F6r?= , Stefan Monnier , Chong Yidong 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.0 (/) Lars Ingebrigtsen writes: > I started to work on this now, but I thought I'd do it with SVGs, since > the size of the mode line can vary, and SVGs can be made on the fly. > > However, I'm having trouble creating an SVG with transparent > backgrounds, and it needs to be that, because the mode line changes > background colour when the window is selected or not. > > Doesn't Emacs support SVGs with transparent backgrounds? Apparently not... Anyway, here's as far as I got before I discovered the problem. We could go with an XPM instead, but it would only approximately match the height of the mode line, so I'm not sure it's worth it... diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index 0c1718e..4a7acb8 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -717,6 +717,32 @@ vc-mode-line (force-mode-line-update) backend) +(defun vc--face-color (color) + (concat + "#" + (mapconcat + (lambda (elem) + (format "%02x" (round (* elem 256)))) + (color-name-to-rgb color) + ""))) + +(defun vc--color-status (string color) + (if (not (image-type-available-p 'svg)) + string + (propertize string + 'display + (let* ((height (- (window-font-height nil 'mode-line) 6)) + (svg (svg-create height height))) + (svg-rectangle svg 0 0 height height + :fill-color (vc--face-color + (face-background 'mode-line))) + (svg-circle svg (/ height 2) (/ height 2) (/ height 2) + :fill-color color) + (let ((image (svg-image svg))) + (setf (image-property image :ascent) 80) + (setf (image-property image :scale) 1) + image))))) + (defun vc-default-mode-line-string (backend file) "Return a string for `vc-mode-line' to put in the mode line for FILE. Format: @@ -739,11 +765,11 @@ vc-default-mode-line-string (eq state 'needs-update)) (setq state-echo "Up to date file") (setq face 'vc-up-to-date-state) - (concat backend-name "-" rev)) + (concat backend-name (vc--color-status "-" "green") rev)) ((stringp state) (setq state-echo (concat "File locked by" state)) (setq face 'vc-locked-state) - (concat backend-name ":" state ":" rev)) + (concat backend-name (vc--color-status ":" "orange") state ":" rev)) ((eq state 'added) (setq state-echo "Locally added file") (setq face 'vc-locally-added-state) @@ -751,22 +777,22 @@ vc-default-mode-line-string ((eq state 'conflict) (setq state-echo "File contains conflicts after the last merge") (setq face 'vc-conflict-state) - (concat backend-name "!" rev)) + (concat backend-name (vc--color-status "!" "red") rev)) ((eq state 'removed) (setq state-echo "File removed from the VC system") (setq face 'vc-removed-state) - (concat backend-name "!" rev)) + (concat backend-name (vc--color-status "!" "red") rev)) ((eq state 'missing) (setq state-echo "File tracked by the VC system, but missing from the file system") (setq face 'vc-missing-state) - (concat backend-name "?" rev)) + (concat backend-name (vc--color-status "?" "purple") rev)) (t ;; Not just for the 'edited state, but also a fallback ;; for all other states. Think about different symbols ;; for 'needs-update and 'needs-merge. (setq state-echo "Locally modified file") (setq face 'vc-edited-state) - (concat backend-name ":" rev))) + (concat backend-name (vc--color-status ":" "blue") rev))) 'face face 'help-echo (concat state-echo " under the " backend-name " version control system")))) -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 29 21:06:00 2016 Received: (at 9205) by debbugs.gnu.org; 1 Mar 2016 02:06:00 +0000 Received: from localhost ([127.0.0.1]:54413 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZhF-0000lp-AI for submit@debbugs.gnu.org; Mon, 29 Feb 2016 21:06:00 -0500 Received: from relaycp01.dominioabsoluto.net ([217.116.26.68]:57505) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZh9-0000lW-Q9 for 9205@debbugs.gnu.org; Mon, 29 Feb 2016 21:05:55 -0500 Received: from smtp.movistar.es (smtp09.acens.net [86.109.99.133]) by relaycp01.dominioabsoluto.net (Postfix) with ESMTP id DC9DD443D; Tue, 1 Mar 2016 03:05:45 +0100 (CET) X-CTCH-RefID: str=0001.0A0B0204.56D4F8F9.012E, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-VOD: Unknown X-CTCH-Spam: Unknown Received: from qcore (79.153.146.151) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 56BAF2D40184A44C; Tue, 1 Mar 2016 02:05:45 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: Lars Ingebrigtsen Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> <87bn6z3rfo.fsf@gnus.org> Date: Tue, 01 Mar 2016 03:05:44 +0100 In-Reply-To: <87bn6z3rfo.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 01 Mar 2016 12:41:47 +1100") Message-ID: <87h9grj6kn.fsf@wanadoo.es> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?utf-8?Q?Reich=C3=B6r?= , 9205@debbugs.gnu.org, Peter =?utf-8?Q?M=C3=BCnster?= , Stefan Monnier , Chong Yidong 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 (/) Lars Ingebrigtsen writes: > I started to work on this now, but I thought I'd do it with SVGs, since > the size of the mode line can vary, and SVGs can be made on the fly. I've not read the thread, sorry if I'm off-track. We now have specific faces for the VC states on the modeline. Not as nifty as images, but you can know the VC state at a glance. >From the NEWS entry: *** The VC state indicator in the mode line now has different faces corresponding to each of the possible states. See the `vc-faces' customization group. [snip] From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 29 21:15:23 2016 Received: (at 9205) by debbugs.gnu.org; 1 Mar 2016 02:15:23 +0000 Received: from localhost ([127.0.0.1]:54470 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZqN-0001O4-9q for submit@debbugs.gnu.org; Mon, 29 Feb 2016 21:15:23 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:48494) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZqL-0001MP-Rb for 9205@debbugs.gnu.org; Mon, 29 Feb 2016 21:15:22 -0500 Received: from 109.179.133.80.tmi.telenormobil.no ([109.179.133.80] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aaZpv-0004us-QQ; Tue, 01 Mar 2016 03:14:56 +0100 From: Lars Ingebrigtsen To: =?iso-8859-1?Q?=D3scar?= Fuentes Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> <87bn6z3rfo.fsf@gnus.org> <87h9grj6kn.fsf@wanadoo.es> Date: Tue, 01 Mar 2016 13:14:45 +1100 In-Reply-To: <87h9grj6kn.fsf@wanadoo.es> (=?iso-8859-1?Q?=22=D3scar?= Fuentes"'s message of "Tue, 01 Mar 2016 03:05:44 +0100") Message-ID: <87bn6zymei.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1aaZpv-0004us-QQ X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1457403297.03176@in1AqjJHOdVyLjyDcoV2aA X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?iso-8859-1?Q?Reich=F6r?= , 9205@debbugs.gnu.org, Peter =?iso-8859-1?Q?M=FCnster?= , Stefan Monnier , Chong Yidong 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.0 (/) =D3scar Fuentes writes: >>>From the NEWS entry: > > *** The VC state indicator in the mode line now has different faces > corresponding to each of the possible states. See the `vc-faces' > customization group. These all default to the default face? That's not very handy. The faces should, in my opinion, be nice without having to do any customisation. (defface vc-state-base-face '((default)) "Base face for VC state indicator." :group 'vc-faces :group 'mode-line :version "25.1") (defface vc-up-to-date-state '((default :inherit vc-state-base-face)) "Face for VC modeline state when the file is up to date." :version "25.1" :group 'vc-faces) (etc) --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 29 21:25:08 2016 Received: (at 9205) by debbugs.gnu.org; 1 Mar 2016 02:25:08 +0000 Received: from localhost ([127.0.0.1]:54482 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZzk-0002xS-Om for submit@debbugs.gnu.org; Mon, 29 Feb 2016 21:25:08 -0500 Received: from relaycp04.dominioabsoluto.net ([217.116.26.100]:35883) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaZzg-0002wb-1a for 9205@debbugs.gnu.org; Mon, 29 Feb 2016 21:25:03 -0500 Received: from smtp.movistar.es (smtp22.acens.net [86.109.99.146]) by relaycp04.dominioabsoluto.net (Postfix) with ESMTP id 031E264306; Tue, 1 Mar 2016 03:24:54 +0100 (CET) X-CTCH-RefID: str=0001.0A0B0203.56D4FD75.0111, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-VOD: Unknown X-CTCH-Spam: Unknown Received: from qcore (79.153.146.151) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 56CC79750080FF32; Tue, 1 Mar 2016 02:24:54 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: Lars Ingebrigtsen Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> <87bn6z3rfo.fsf@gnus.org> <87h9grj6kn.fsf@wanadoo.es> <87bn6zymei.fsf@gnus.org> Date: Tue, 01 Mar 2016 03:24:52 +0100 In-Reply-To: <87bn6zymei.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 01 Mar 2016 13:14:45 +1100") Message-ID: <87d1rfj5or.fsf@wanadoo.es> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?utf-8?Q?Reich=C3=B6r?= , 9205@debbugs.gnu.org, Peter =?utf-8?Q?M=C3=BCnster?= , Stefan Monnier , Chong Yidong 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 (/) Lars Ingebrigtsen writes: > These all default to the default face? That's not very handy. The > faces should, in my opinion, be nice without having to do any > customisation. We discussed this on bug#19043. Feel free to assign nice defaults to those faces :-) From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 29 22:06:38 2016 Received: (at 9205) by debbugs.gnu.org; 1 Mar 2016 03:06:38 +0000 Received: from localhost ([127.0.0.1]:54494 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaadu-0003yZ-Jq for submit@debbugs.gnu.org; Mon, 29 Feb 2016 22:06:38 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:52219) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1aaadp-0003yP-Lh for 9205@debbugs.gnu.org; Mon, 29 Feb 2016 22:06:33 -0500 Received: from 109.179.133.80.tmi.telenormobil.no ([109.179.133.80] helo=mouse) by hermes.netfonds.no with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1aaadG-0007HU-SA; Tue, 01 Mar 2016 04:05:55 +0100 From: Lars Ingebrigtsen To: =?iso-8859-1?Q?=D3scar?= Fuentes Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> <87bn6z3rfo.fsf@gnus.org> <87h9grj6kn.fsf@wanadoo.es> <87bn6zymei.fsf@gnus.org> <87d1rfj5or.fsf@wanadoo.es> Date: Tue, 01 Mar 2016 14:05:45 +1100 In-Reply-To: <87d1rfj5or.fsf@wanadoo.es> (=?iso-8859-1?Q?=22=D3scar?= Fuentes"'s message of "Tue, 01 Mar 2016 03:24:52 +0100") Message-ID: <874mcqzyly.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1aaadG-0007HU-SA X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1457406355.96814@GbEECFHqxQeiEQkg5L+jHw X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 9205 Cc: Stefan =?iso-8859-1?Q?Reich=F6r?= , 9205@debbugs.gnu.org, Peter =?iso-8859-1?Q?M=FCnster?= , Stefan Monnier , Chong Yidong 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.0 (/) =D3scar Fuentes writes: > Lars Ingebrigtsen writes: > >> These all default to the default face? That's not very handy. The >> faces should, in my opinion, be nice without having to do any >> customisation. > > We discussed this on bug#19043. Feel free to assign nice defaults to > those faces :-) Oh, it's all coming back to me now... Ok, I'll assign some suitably "fruit salad with a nervous breakdown" colours. :-) --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 09 19:11:18 2016 Received: (at 9205) by debbugs.gnu.org; 10 Mar 2016 00:11:18 +0000 Received: from localhost ([127.0.0.1]:42065 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1adoCE-0007kF-Ez for submit@debbugs.gnu.org; Wed, 09 Mar 2016 19:11:18 -0500 Received: from sub3.mail.dreamhost.com ([69.163.253.7]:37237 helo=homiemail-a101.g.dreamhost.com) by debbugs.gnu.org with esmtp (Exim 4.84) (envelope-from ) id 1adoCC-0007k6-N3 for 9205@debbugs.gnu.org; Wed, 09 Mar 2016 19:11:17 -0500 Received: from homiemail-a101.g.dreamhost.com (localhost [127.0.0.1]) by homiemail-a101.g.dreamhost.com (Postfix) with ESMTP id 586DD117E078 for <9205@debbugs.gnu.org>; Wed, 9 Mar 2016 16:11:13 -0800 (PST) Received: from localhost.linkov.net (62.65.227.103.cable.starman.ee [62.65.227.103]) (Authenticated sender: jurta@jurta.org) by homiemail-a101.g.dreamhost.com (Postfix) with ESMTPA id A695D117E06C for <9205@debbugs.gnu.org>; Wed, 9 Mar 2016 16:11:12 -0800 (PST) From: Juri Linkov To: 9205@debbugs.gnu.org Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line Organization: LINKOV.NET References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> <87bn6z3rfo.fsf@gnus.org> <87h9grj6kn.fsf@wanadoo.es> <87bn6zymei.fsf@gnus.org> <87d1rfj5or.fsf@wanadoo.es> <874mcqzyly.fsf@gnus.org> Date: Thu, 10 Mar 2016 01:49:41 +0200 In-Reply-To: <874mcqzyly.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 01 Mar 2016 14:05:45 +1100") Message-ID: <87a8m7xo53.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.91 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 9205 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 (/) More discussion at https://lists.gnu.org/archive/html/emacs-devel/2016-03/msg00084.html From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 27 12:27:48 2019 Received: (at 9205) by debbugs.gnu.org; 27 Jun 2019 16:27:48 +0000 Received: from localhost ([127.0.0.1]:39396 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgXFU-0008EE-1N for submit@debbugs.gnu.org; Thu, 27 Jun 2019 12:27:48 -0400 Received: from quimby.gnus.org ([80.91.231.51]:45032) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgXFS-0008E4-PS for 9205@debbugs.gnu.org; Thu, 27 Jun 2019 12:27:47 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hgXFK-0007c6-Lb; Thu, 27 Jun 2019 18:27:42 +0200 From: Lars Ingebrigtsen To: =?utf-8?Q?=C3=93scar?= Fuentes Subject: Re: bug#9205: 24.0.50; colored mark in vc mode-line References: <874o25jq5b.fsf@micropit.couberia.bzh> <87vcl64vlk.fsf@gnu.org> <87bomxyqpl.fsf@micropit.couberia.bzh> <87k41kyeaz.fsf@micropit.couberia.bzh> <87bn6z3rfo.fsf@gnus.org> <87h9grj6kn.fsf@wanadoo.es> <87bn6zymei.fsf@gnus.org> <87d1rfj5or.fsf@wanadoo.es> <874mcqzyly.fsf@gnus.org> Date: Thu, 27 Jun 2019 18:27:38 +0200 In-Reply-To: <874mcqzyly.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 01 Mar 2016 14:05:45 +1100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable 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: Lars Ingebrigtsen writes: > Óscar Fuentes writes: > >> Lars Ingebrigtsen writes: >> >>> These all default to the default face? That's not very handy. The >>> faces should, in my opinion, be n [...] 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: 9205 Cc: Peter =?utf-8?Q?M=C3=BCnster?= , 9205@debbugs.gnu.org, Stefan =?utf-8?Q?Reich=C3=B6r?= , Stefan Monnier , Chong Yidong 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 (-) Lars Ingebrigtsen writes: > =C3=93scar Fuentes writes: > >> Lars Ingebrigtsen writes: >> >>> These all default to the default face? That's not very handy. The >>> faces should, in my opinion, be nice without having to do any >>> customisation. >> >> We discussed this on bug#19043. Feel free to assign nice defaults to >> those faces :-) > > Oh, it's all coming back to me now... > > Ok, I'll assign some suitably "fruit salad with a nervous breakdown" > colours. :-) The change wasn't well received at the time (didn't John just revert it or something?), so I'm closing this bug report. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 27 12:27:51 2019 Received: (at control) by debbugs.gnu.org; 27 Jun 2019 16:27:51 +0000 Received: from localhost ([127.0.0.1]:39399 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgXFX-0008EU-CK for submit@debbugs.gnu.org; Thu, 27 Jun 2019 12:27:51 -0400 Received: from quimby.gnus.org ([80.91.231.51]:45048) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hgXFV-0008EM-KA for control@debbugs.gnu.org; Thu, 27 Jun 2019 12:27:49 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=stories) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hgXFT-0007cP-2d for control@debbugs.gnu.org; Thu, 27 Jun 2019 18:27:49 +0200 Date: Thu, 27 Jun 2019 18:27:46 +0200 Message-Id: To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #9205 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 9205 wontfix close 9205 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 9205 wontfix close 9205 quit From unknown Sun Aug 10 11:49:37 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 26 Jul 2019 11:24:05 +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