From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 13 11:39:44 2014 Received: (at submit) by debbugs.gnu.org; 13 Nov 2014 16:39:44 +0000 Received: from localhost ([127.0.0.1]:59572 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XoxQt-0001Z8-Sj for submit@debbugs.gnu.org; Thu, 13 Nov 2014 11:39:44 -0500 Received: from eggs.gnu.org ([208.118.235.92]:54028) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XoxQq-0001Yy-Ka for submit@debbugs.gnu.org; Thu, 13 Nov 2014 11:39:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XoxQj-0002g7-5c for submit@debbugs.gnu.org; Thu, 13 Nov 2014 11:39:40 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:42717) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoxQj-0002g2-2q for submit@debbugs.gnu.org; Thu, 13 Nov 2014 11:39:33 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55636) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoxQc-0002nq-Pe for bug-gnu-emacs@gnu.org; Thu, 13 Nov 2014 11:39:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XoxQW-0002bf-E9 for bug-gnu-emacs@gnu.org; Thu, 13 Nov 2014 11:39:26 -0500 Received: from smtp22.acens.net ([86.109.99.146]:65298 helo=smtp.movistar.es) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XoxQW-0002as-4S for bug-gnu-emacs@gnu.org; Thu, 13 Nov 2014 11:39:20 -0500 X-CTCH-RefID: str=0001.0A0B0208.5464DEB5.0224, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-Spam: Unknown Received: from qcore (80.26.206.186) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 545397C00075340E for bug-gnu-emacs@gnu.org; Thu, 13 Nov 2014 16:39:17 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: bug-gnu-emacs@gnu.org Subject: 25.0.50; [PATCH]: faces for VC modeline state indicator Date: Thu, 13 Nov 2014 17:39:16 +0100 Message-ID: <87fvdnt5qj.fsf@telefonica.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: -5.0 (-----) --=-=-= Content-Type: text/plain 2014-11-13 Oscar Fuentes Add faces for the VC modeline state indicator. * lisp/vc/vc-hooks.el: (vc-state-faces, vc-state-base-face) (vc-up-to-date-state, vc-needs-update-state) (vc-locked-state, vc-locally-added-state) (vc-conflict-state, vc-removed-state) (vc-missing-state, vc-edited-state): New faces. (vc-default-mode-line-string): Use them --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=vc-faces-upstream.patch diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el index df660d1..6359e19 100644 --- a/lisp/vc/vc-hooks.el +++ b/lisp/vc/vc-hooks.el @@ -32,6 +32,69 @@ (eval-when-compile (require 'cl-lib)) +;; Faces + +(defgroup vc-state-faces nil + "Faces used in the mode line by the VC state indicator." + :group 'vc-faces + :group 'mode-line + :version "25.1") + +(defface vc-state-base-face + '((default :inherit mode-line)) + "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) + +(defface vc-needs-update-state + '((default :inherit vc-state-base-face)) + "Face for VC modeline state when the file needs update." + :version "25.1" + :group 'vc-faces) + +(defface vc-locked-state + '((default :inherit vc-state-base-face)) + "Face for VC modeline state when the file locked." + :version "25.1" + :group 'vc-faces) + +(defface vc-locally-added-state + '((default :inherit vc-state-base-face)) + "Face for VC modeline state when the file is locally added." + :version "25.1" + :group 'vc-faces) + +(defface vc-conflict-state + '((default :inherit vc-state-base-face)) + "Face for VC modeline state when the file contains merge conflicts." + :version "25.1" + :group 'vc-faces) + +(defface vc-removed-state + '((default :inherit vc-state-base-face)) + "Face for VC modeline state when the file was removed from the VC system." + :version "25.1" + :group 'vc-faces) + +(defface vc-missing-state + '((default :inherit vc-state-base-face)) + "Face for VC modeline state when the file is missing from the file system." + :version "25.1" + :group 'vc-faces) + +(defface vc-edited-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) + ;; Customization Variables (the rest is in vc.el) (defcustom vc-ignore-dir-regexp @@ -800,33 +863,42 @@ This function assumes that the file is registered." (let* ((backend-name (symbol-name backend)) (state (vc-state file backend)) (state-echo nil) + (face nil) (rev (vc-working-revision file backend))) (propertize (cond ((or (eq state 'up-to-date) (eq state 'needs-update)) (setq state-echo "Up to date file") + (setq face 'vc-up-to-date-state) (concat backend-name "-" rev)) ((stringp state) (setq state-echo (concat "File locked by" state)) + (setq face 'vc-locked-state) (concat backend-name ":" state ":" rev)) ((eq state 'added) (setq state-echo "Locally added file") + (setq face 'vc-locally-added-state) (concat backend-name "@" rev)) ((eq state 'conflict) (setq state-echo "File contains conflicts after the last merge") + (setq face 'vc-conflict-state) (concat backend-name "!" rev)) ((eq state 'removed) (setq state-echo "File removed from the VC system") + (setq face 'vc-removed-state) (concat backend-name "!" 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)) (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))) + 'face face 'help-echo (concat state-echo " under the " backend-name " version control system")))) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 13 23:18:23 2014 Received: (at 19043) by debbugs.gnu.org; 14 Nov 2014 04:18:23 +0000 Received: from localhost ([127.0.0.1]:60014 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xp8L1-0002gX-3v for submit@debbugs.gnu.org; Thu, 13 Nov 2014 23:18:23 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:41024) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xp8Kz-0002gP-0O for 19043@debbugs.gnu.org; Thu, 13 Nov 2014 23:18:21 -0500 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 1Xp8Kg-00019p-Hi; Fri, 14 Nov 2014 05:18:02 +0100 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?=D3scar?= Fuentes Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> X-Now-Playing: Depeche Mode's _Music For The Masses_: "Nothing" X-Hashcash: 1:23:141114:19043@debbugs.gnu.org::4HlwBBTiO2/7CU2B:0000000000000000000000000000000000000000X2OZ X-Hashcash: 1:23:141114:ofv@wanadoo.es::rANNX/YRApw29nrn:000u8jF Date: Fri, 14 Nov 2014 05:18:02 +0100 In-Reply-To: <87fvdnt5qj.fsf@telefonica.net> (=?iso-8859-1?Q?=22=D3scar?= Fuentes"'s message of "Thu, 13 Nov 2014 17:39:16 +0100") Message-ID: User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1Xp8Kg-00019p-Hi X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1416543483.05724@s+AsUDgFyB6FzFQbNFYyVA X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19043 Cc: 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: > 2014-11-13 Oscar Fuentes > > Add faces for the VC modeline state indicator. > * lisp/vc/vc-hooks.el: > (vc-state-faces, vc-state-base-face) > (vc-up-to-date-state, vc-needs-update-state) > (vc-locked-state, vc-locally-added-state) > (vc-conflict-state, vc-removed-state) > (vc-missing-state, vc-edited-state): > New faces. > (vc-default-mode-line-string): Use them I tried applying this, but I didn't see anything different in the mode lines of VC-covered files.=20=20 --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Thu Nov 13 23:39:07 2014 Received: (at 19043) by debbugs.gnu.org; 14 Nov 2014 04:39:07 +0000 Received: from localhost ([127.0.0.1]:60018 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xp8f2-0003Cy-0u for submit@debbugs.gnu.org; Thu, 13 Nov 2014 23:39:07 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:40947) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xp8ew-0003CW-EN for 19043@debbugs.gnu.org; Thu, 13 Nov 2014 23:39:02 -0500 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 1Xp8ec-0001N2-P7; Fri, 14 Nov 2014 05:38:38 +0100 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?=D3scar?= Fuentes Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAElBMVEU4UokADkMACj4ACT0A CDwADD+C3i9YAAACfklEQVQ4jT1UgZXrIAwjf4KYKwNgYICj6QAHzgCQeP9Vvpy05V5zryjGsiTq CMvzWSv7yHmvm+xP1amOruUjURj4N3MvJehRPsDAI1IIPHPloT8fYBbGcyXOtf9OvPA5iutwzi0U qhZ8DfqpOOPqbPmeWqShLABsI/O174LkxoEOuYHVbc0tq50VH02L6gUQDX+C0QVQZg165g+Q6VHJ rQBKimHws7sRSDV1khrdam+psUfFUNKU/36EaVkxiYcIeooBQ2eOZ8eEbqwh1DpKBsCq3IUEn3X5 xTFJuFgFChT9pEpc/YjWPWl+0wWtlmokDiVQliRiQDDBfU21xCwlermXMyUVr/EWEnNUZulb38AK Ug5KG8fAAPC35asCY5Thxdiufl18lt42A6YWno9N4uLcP/OSmB75psvDwyjT0Ax2Z0u9sUPniZiw AebBuqSbFRedxFzpttBMu4FkLnO/K257Ryllc0UHGDPfFr+BWtj8GGDM6/csRKbNijnCsNGc/5SQ nzVbfNRiFJcQ723Ym5qwM0FCAXBXLJiQQKo56EOzImXv7pfje29uMsYdSPq7w4JgZ0EAFUS1zPwF IKhIf7nZ6YfLlL8PQIXr0dTNF8aDikj1YoFDvWrAjTJSuFosRLeMYfIezpcBeGW2XnV1yC+ITGyN C3juUJShylRalnAMmgCIjleZrXAiZ+OHlkbYEGqywSeXdPUXV5FJyldKMDhDhdwwC8IavwDvz6fI BktxpRd0M7XcdUUlV6hg2sV/eHwBPebWdZrV8edbgf1wHKm2KwR/OAoGnQD0HjFdId9xyQRtrULH /dvA1mMHH7ECAOO6kOG5vaw5QXOYLvIfWvOxLtPqDYAAAAAASUVORK5CYII= X-Now-Playing: Joni Mitchell's _Blue_: "Little Green" X-Hashcash: 1:23:141114:19043@debbugs.gnu.org::4Wgt2eVVruI0AtHg:00000000000000000000000000000000000000000mmK X-Hashcash: 1:23:141114:ofv@wanadoo.es::RGNaBNxOwwTzK+RD:000AkQE Date: Fri, 14 Nov 2014 05:38:38 +0100 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Fri, 14 Nov 2014 05:18:02 +0100") Message-ID: User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1Xp8ec-0001N2-P7 X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1416544718.99427@7s9JqkdUFNHZO76MNctQeA X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19043 Cc: 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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 Magne Ingebrigtsen writes: > =D3scar Fuentes writes: > >> 2014-11-13 Oscar Fuentes >> >> Add faces for the VC modeline state indicator. >> * lisp/vc/vc-hooks.el: >> (vc-state-faces, vc-state-base-face) >> (vc-up-to-date-state, vc-needs-update-state) >> (vc-locked-state, vc-locally-added-state) >> (vc-conflict-state, vc-removed-state) >> (vc-missing-state, vc-edited-state): >> New faces. >> (vc-default-mode-line-string): Use them > > I tried applying this, but I didn't see anything different in the mode > lines of VC-covered files.=20=20 Oh, right. All the faces remain as the default face, but the user can customize them. Perhaps they should be something else by default, too? --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 14 03:55:18 2014 Received: (at 19043) by debbugs.gnu.org; 14 Nov 2014 08:55:18 +0000 Received: from localhost ([127.0.0.1]:60180 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpCew-0002op-2g for submit@debbugs.gnu.org; Fri, 14 Nov 2014 03:55:18 -0500 Received: from smtp11.acens.net ([86.109.99.135]:32311 helo=smtp.movistar.es) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpCep-0002oX-3b for 19043@debbugs.gnu.org; Fri, 14 Nov 2014 03:55:12 -0500 X-CTCH-RefID: str=0001.0A0B0208.5465C369.0091, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-Spam: Unknown Received: from qcore (80.26.207.197) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 54615F2D001AF842; Fri, 14 Nov 2014 08:55:05 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: Lars Magne Ingebrigtsen Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> Date: Fri, 14 Nov 2014 09:55:03 +0100 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Fri, 14 Nov 2014 05:38:38 +0100") Message-ID: <874mu2tb4o.fsf@wanadoo.es> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 2.7 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Lars Magne Ingebrigtsen writes: >> I tried applying this, but I didn't see anything different in the mode >> lines of VC-covered files. > > Oh, right. All the faces remain as the default face, but the user can > customize them. Perhaps they should be something else by default, too? [...] Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (ofv[at]wanadoo.es) 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [86.109.99.135 listed in psbl.surriel.com] X-Debbugs-Envelope-To: 19043 Cc: 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 2.7 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Lars Magne Ingebrigtsen writes: >> I tried applying this, but I didn't see anything different in the mode >> lines of VC-covered files. > > Oh, right. All the faces remain as the default face, but the user can > customize them. Perhaps they should be something else by default, too? [...] Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [86.109.99.135 listed in psbl.surriel.com] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (ofv[at]wanadoo.es) Lars Magne Ingebrigtsen writes: >> I tried applying this, but I didn't see anything different in the mode >> lines of VC-covered files. > > Oh, right. All the faces remain as the default face, but the user can > customize them. Perhaps they should be something else by default, too? I hope that just providing the possibility of customizing the VC modeline face is seen as uncontroversial. Changing the default appearance is something else altogether and it is not the goal of this patch. You can assing different defaults on a subsequent patch, but that's your battle, not mine ;-) From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 14 10:31:52 2014 Received: (at 19043) by debbugs.gnu.org; 14 Nov 2014 15:31:52 +0000 Received: from localhost ([127.0.0.1]:60894 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpIql-0000Gq-So for submit@debbugs.gnu.org; Fri, 14 Nov 2014 10:31:52 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:42516) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpIqi-0000Gh-Ht for 19043@debbugs.gnu.org; Fri, 14 Nov 2014 10:31:49 -0500 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 1XpIqQ-0006uu-Lq; Fri, 14 Nov 2014 16:31:30 +0100 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?=D3scar?= Fuentes Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> <874mu2tb4o.fsf@wanadoo.es> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX9wrjSgoc2HiwVCxX2 qaV/TVsHAQj+3NJt0xTkAAACJ0lEQVQ4jU3UwW7jIBAGYLoi4prxwu45WOS+RvHZroh6BpcniOSz D5X8+vsP4CQoqZL5wsxgjyv2fd/Ea+1iJqKcswDsJSRDEIq/hCIFeBPiWBM+MkTTQEgZpqmIaKlU hcD5d4WNM+XIkGNNLEOt3moDciaauPILyAAsLxePuAjhHez3E1AiJ0Qa6CAbnDhqe9+gnKHAR/nu G7gwZ4c2Ik0CQV7Coutkc30D9dJgQEdBzAgiilfqG3jrSIOkyWXZJwyDzZpLV2olAFiDjcR9zaD0 Dm/0VoPDnnvOXCuYNxhcsu2S8XXqX5A1LhCfd3C41Cb58VHA4iRBUiqdcs40rg/Bmb5xDtzsI70f 0sjgccJ6h+fS7Lqu3voK5zYT++b9CFhLjcHpvwfsXQWugbhS6oCt90+IKDA9wS4FVsBZiK2BVB+2 bzDeFI9l+33s3PXYceF5m7+q6H4YD0CrmKYzVO3bffGPBm5SPKEBUVyYzrUNq4iATZYHQIZ7Nv6A ACgPh9p/yNDy3KHLs4Kl1X66GT++dqDExDdVi9MFQ3V9wcYzPidHC8B1bzs41d3aaONyo3htgAv7 w0MAILKxu3xWwIzv3FRiMGRuWpYtPPmcaQYQdc7Gs/isqXAAwZl6BxguGv8KxgpCyZlQ4oLJ8f++ kOJ3hYC3Ni5FrY113P2pwoSm5s73aCr5G2HHLwY85EJqWnCLif9qHOBPg2nm3w6YW48dkyT0O/4H zpEGCj95YicAAAAASUVORK5CYII= X-Now-Playing: Joni Mitchell's _Chalk Mark In A Rain Storm_: "The Beat of Black Wings" X-Hashcash: 1:23:141114:ofv@wanadoo.es::RUlCwRKXgEDp8+U4:000S13W X-Hashcash: 1:23:141114:19043@debbugs.gnu.org::e78YHg2nPiNoPqly:0000000000000000000000000000000000000000/6cy Date: Fri, 14 Nov 2014 16:31:30 +0100 In-Reply-To: <874mu2tb4o.fsf@wanadoo.es> (=?iso-8859-1?Q?=22=D3scar?= Fuentes"'s message of "Fri, 14 Nov 2014 09:55:03 +0100") Message-ID: User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1XpIqQ-0006uu-Lq X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1416583890.88629@ChSR5j1AAukqrWNiOPfqzQ X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19043 Cc: 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: > I hope that just providing the possibility of customizing the VC > modeline face is seen as uncontroversial. Changing the default > appearance is something else altogether and it is not the goal of this > patch. You can assing different defaults on a subsequent patch, but > that's your battle, not mine ;-) I think we should push defaults (since they are what will be used by almost everyone) that are good. (Or "best".) Since you did this patch, you probably think that the defaults could be better. So I think we should push a change that includes these better defaults... --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 14 12:00:11 2014 Received: (at 19043) by debbugs.gnu.org; 14 Nov 2014 17:00:11 +0000 Received: from localhost ([127.0.0.1]:32793 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpKEA-0005KH-W8 for submit@debbugs.gnu.org; Fri, 14 Nov 2014 12:00:11 -0500 Received: from smtp11.acens.net ([86.109.99.135]:18946 helo=smtp.movistar.es) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpKE1-0005J5-Q8 for 19043@debbugs.gnu.org; Fri, 14 Nov 2014 12:00:05 -0500 X-CTCH-RefID: str=0001.0A0B0207.5466350C.0140, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-Spam: Unknown Received: from qcore (80.26.207.197) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 54615F2D001ED2DC; Fri, 14 Nov 2014 16:59:56 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: Lars Magne Ingebrigtsen Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> <874mu2tb4o.fsf@wanadoo.es> Date: Fri, 14 Nov 2014 17:59:54 +0100 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Fri, 14 Nov 2014 16:31:30 +0100") Message-ID: <87zjbtsool.fsf@wanadoo.es> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 2.7 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Lars Magne Ingebrigtsen writes: > I think we should push defaults (since they are what will be used by > almost everyone) that are good. (Or "best".) Since you did this patch, > you probably think that the defaults could be better. [...] Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (ofv[at]wanadoo.es) 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [86.109.99.135 listed in psbl.surriel.com] X-Debbugs-Envelope-To: 19043 Cc: 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 2.7 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Lars Magne Ingebrigtsen writes: > I think we should push defaults (since they are what will be used by > almost everyone) that are good. (Or "best".) Since you did this patch, > you probably think that the defaults could be better. [...] Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [86.109.99.135 listed in psbl.surriel.com] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (ofv[at]wanadoo.es) Lars Magne Ingebrigtsen writes: > I think we should push defaults (since they are what will be used by > almost everyone) that are good. (Or "best".) Since you did this patch, > you probably think that the defaults could be better. That's true, I use values that are better *IMO*. Preparing the patch consisted on removing those values for achieving a neutral impact on appearance. > So I think we should push a change that includes these better > defaults... In my experience, contributing a patch to Emacs is difficult enough when only technical issues are considered. It is a nightmare when personal opinion is a key part. Please let's not block this feature just because it does not address an orthogonal aspect that we can take care of later. Just to convince you to stop asking me for default values, I'll mention that on my setup edited files are shown with bright red text ;-) From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 14 12:08:11 2014 Received: (at 19043) by debbugs.gnu.org; 14 Nov 2014 17:08:12 +0000 Received: from localhost ([127.0.0.1]:32802 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpKLz-0005Xu-Js for submit@debbugs.gnu.org; Fri, 14 Nov 2014 12:08:11 -0500 Received: from ironport2-out.teksavvy.com ([206.248.154.181]:35565) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpKLy-0005Xn-5R for 19043@debbugs.gnu.org; Fri, 14 Nov 2014 12:08:10 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AscIAGA2ZVRLd+sd/2dsb2JhbABbgw6KYsdygxoEAgKBHBcBAQEBAQF8hAMBAQMBViMFCws0EhQYDSSISwnRBAEBAQEBAQEDAQEBAQEdkRQHhEsFjAuTWpEpghSBdoQaH4J7AQEB X-IPAS-Result: AscIAGA2ZVRLd+sd/2dsb2JhbABbgw6KYsdygxoEAgKBHBcBAQEBAQF8hAMBAQMBViMFCws0EhQYDSSISwnRBAEBAQEBAQEDAQEBAQEdkRQHhEsFjAuTWpEpghSBdoQaH4J7AQEB X-IronPort-AV: E=Sophos;i="5.07,380,1413259200"; d="scan'208";a="97024273" Received: from 75-119-235-29.dsl.teksavvy.com (HELO pastel.home) ([75.119.235.29]) by ironport2-out.teksavvy.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 14 Nov 2014 12:08:09 -0500 Received: by pastel.home (Postfix, from userid 20848) id 7EAD585E5; Fri, 14 Nov 2014 12:08:09 -0500 (EST) From: Stefan Monnier To: =?windows-1252?Q?=D3scar?= Fuentes Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator Message-ID: References: <87fvdnt5qj.fsf@telefonica.net> <874mu2tb4o.fsf@wanadoo.es> Date: Fri, 14 Nov 2014 12:08:09 -0500 In-Reply-To: <874mu2tb4o.fsf@wanadoo.es> (=?windows-1252?Q?=22=D3scar?= Fuentes"'s message of "Fri, 14 Nov 2014 09:55:03 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 19043 Cc: Lars Magne Ingebrigtsen , 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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.3 (/) > I hope that just providing the possibility of customizing the VC > modeline face is seen as uncontroversial. Very wise, indeed. I think I'm OK with your proposed patch. Stefan From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 14 12:18:15 2014 Received: (at 19043) by debbugs.gnu.org; 14 Nov 2014 17:18:15 +0000 Received: from localhost ([127.0.0.1]:32821 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpKVj-0005oR-5F for submit@debbugs.gnu.org; Fri, 14 Nov 2014 12:18:15 -0500 Received: from smtp21.acens.net ([86.109.99.145]:22437 helo=smtp.movistar.es) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XpKVh-0005oJ-Jx for 19043@debbugs.gnu.org; Fri, 14 Nov 2014 12:18:14 -0500 X-CTCH-RefID: str=0001.0A0B020C.54663954.01F1, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-Spam: Unknown Received: from qcore (80.26.207.197) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 54430CAB00DA6308; Fri, 14 Nov 2014 17:18:12 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: Stefan Monnier Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> <874mu2tb4o.fsf@wanadoo.es> Date: Fri, 14 Nov 2014 18:18:11 +0100 In-Reply-To: (Stefan Monnier's message of "Fri, 14 Nov 2014 12:08:09 -0500") Message-ID: <87vbmhsnu4.fsf@wanadoo.es> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19043 Cc: Lars Magne Ingebrigtsen , 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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 (/) Stefan Monnier writes: > I think I'm OK with your proposed patch. Thanks. Now I need someone with a kind soul and commit rights for applying the change. From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 16 09:14:32 2014 Received: (at 19043) by debbugs.gnu.org; 16 Nov 2014 14:14:32 +0000 Received: from localhost ([127.0.0.1]:34460 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq0b2-0006mk-Gm for submit@debbugs.gnu.org; Sun, 16 Nov 2014 09:14:32 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:58968) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq0b0-0006mZ-OM for 19043@debbugs.gnu.org; Sun, 16 Nov 2014 09:14:31 -0500 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 1Xq0af-0003Qx-Sz; Sun, 16 Nov 2014 15:14:09 +0100 From: Lars Magne Ingebrigtsen To: =?iso-8859-1?Q?=D3scar?= Fuentes Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> <874mu2tb4o.fsf@wanadoo.es> <87vbmhsnu4.fsf@wanadoo.es> X-Now-Playing: Leila's _Feeling_: "Feeling (Vidmix)" X-Hashcash: 1:23:141116:monnier@iro.umontreal.ca::NbKRkyZ28tQbQfkb:00000000000000000000000000000000000001csY X-Hashcash: 1:23:141116:19043@debbugs.gnu.org::+PaWFlBOFBp6Vifw:00000000000000000000000000000000000000005lUE X-Hashcash: 1:23:141116:ofv@wanadoo.es::N1hMskJT/J8Hn/3H:0014NN2 Date: Sun, 16 Nov 2014 15:14:09 +0100 In-Reply-To: <87vbmhsnu4.fsf@wanadoo.es> (=?iso-8859-1?Q?=22=D3scar?= Fuentes"'s message of "Fri, 14 Nov 2014 18:18:11 +0100") Message-ID: User-Agent: Gnus/5.130012 (Ma Gnus v0.12) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-MailScanner-ID: 1Xq0af-0003Qx-Sz X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1416752050.35472@QNZamP5AhvUd1QsNMsUgOw X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19043 Cc: Stefan Monnier , 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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: > Stefan Monnier writes: > >> I think I'm OK with your proposed patch. > > Thanks. Now I need someone with a kind soul and commit rights for > applying the change. I've applied it to trunk. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 16 09:14:38 2014 Received: (at control) by debbugs.gnu.org; 16 Nov 2014 14:14:38 +0000 Received: from localhost ([127.0.0.1]:34463 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq0b7-0006n3-TK for submit@debbugs.gnu.org; Sun, 16 Nov 2014 09:14:38 -0500 Received: from hermes.netfonds.no ([80.91.224.195]:58971) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq0b5-0006ma-Mq for control@debbugs.gnu.org; Sun, 16 Nov 2014 09:14:36 -0500 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 1Xq0aj-0003R9-Fj for control@debbugs.gnu.org; Sun, 16 Nov 2014 15:14:13 +0100 Date: Sun, 16 Nov 2014 15:14:13 +0100 Message-Id: To: control@debbugs.gnu.org From: Lars Magne Ingebrigtsen Subject: control message for bug #19043 X-MailScanner-ID: 1Xq0aj-0003R9-Fj X-Netfonds-MailScanner: Found to be clean X-Netfonds-MailScanner-From: larsi@gnus.org MailScanner-NULL-Check: 1416752053.54315@4XFti9ebdPimTQXWD4ls0g X-Spam-Status: No X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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 (/) tags 19043 fixed close 19043 25.1 From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 16 09:53:42 2014 Received: (at 19043) by debbugs.gnu.org; 16 Nov 2014 14:53:42 +0000 Received: from localhost ([127.0.0.1]:34495 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq1Cs-0000dH-60 for submit@debbugs.gnu.org; Sun, 16 Nov 2014 09:53:41 -0500 Received: from smtp11.acens.net ([86.109.99.135]:23214 helo=smtp.movistar.es) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq1Cl-0000d2-Uo for 19043@debbugs.gnu.org; Sun, 16 Nov 2014 09:53:36 -0500 X-CTCH-RefID: str=0001.0A0B020C.5468BA6A.0176, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-Spam: Unknown Received: from qcore (79.158.48.132) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 54615F2D002D78BD; Sun, 16 Nov 2014 14:53:30 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: Lars Magne Ingebrigtsen Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> <874mu2tb4o.fsf@wanadoo.es> <87vbmhsnu4.fsf@wanadoo.es> Date: Sun, 16 Nov 2014 15:53:28 +0100 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Sun, 16 Nov 2014 15:14:09 +0100") Message-ID: <87fvdjryc7.fsf@wanadoo.es> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 2.7 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Lars Magne Ingebrigtsen writes: > Óscar Fuentes writes: > >> Thanks. Now I need someone with a kind soul and commit rights for >> applying the change. > > I've applied it to trunk. Thank you Lars, but it was already applied by me. Now there is an extra Changelog entry that you commit created. I'll delete it. [...] Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (ofv[at]wanadoo.es) 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [86.109.99.135 listed in psbl.surriel.com] X-Debbugs-Envelope-To: 19043 Cc: Stefan Monnier , 19043@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 2.7 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Lars Magne Ingebrigtsen writes: > Óscar Fuentes writes: > >> Thanks. Now I need someone with a kind soul and commit rights for >> applying the change. > > I've applied it to trunk. Thank you Lars, but it was already applied by me. Now there is an extra Changelog entry that you commit created. I'll delete it. [...] Content analysis details: (2.7 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 2.7 RCVD_IN_PSBL RBL: Received via a relay in PSBL [86.109.99.135 listed in psbl.surriel.com] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (ofv[at]wanadoo.es) Lars Magne Ingebrigtsen writes: > =C3=93scar Fuentes writes: > >> Thanks. Now I need someone with a kind soul and commit rights for >> applying the change. > > I've applied it to trunk. Thank you Lars, but it was already applied by me. Now there is an extra Changelog entry that you commit created. I'll delete it. It is my fault for not closing the PR after the commit, sorry. From debbugs-submit-bounces@debbugs.gnu.org Sun Nov 16 09:54:15 2014 Received: (at 19043-done) by debbugs.gnu.org; 16 Nov 2014 14:54:15 +0000 Received: from localhost ([127.0.0.1]:34499 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq1DT-0000eW-4Y for submit@debbugs.gnu.org; Sun, 16 Nov 2014 09:54:15 -0500 Received: from smtp09.acens.net ([86.109.99.133]:49745 helo=smtp.movistar.es) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Xq1DQ-0000eN-Lb for 19043-done@debbugs.gnu.org; Sun, 16 Nov 2014 09:54:13 -0500 X-CTCH-RefID: str=0001.0A0B0205.5468BA93.0220, ss=1, re=0.000, recu=0.000, reip=0.000, cl=1, cld=1, fgs=0 X-CTCH-Spam: Unknown Received: from qcore (79.158.48.132) by smtp.movistar.es (8.6.122.03) (authenticated as 981711563$telefonica.net) id 543BDE63011D2B05 for 19043-done@debbugs.gnu.org; Sun, 16 Nov 2014 14:54:11 +0000 From: =?utf-8?Q?=C3=93scar_Fuentes?= To: 19043-done@debbugs.gnu.org Subject: Re: bug#19043: 25.0.50; [PATCH]: faces for VC modeline state indicator References: <87fvdnt5qj.fsf@telefonica.net> <874mu2tb4o.fsf@wanadoo.es> <87vbmhsnu4.fsf@wanadoo.es> Date: Sun, 16 Nov 2014 15:54:10 +0100 In-Reply-To: (Lars Magne Ingebrigtsen's message of "Sun, 16 Nov 2014 15:14:09 +0100") Message-ID: <878ujbryb1.fsf@wanadoo.es> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 19043-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 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 (/) From unknown Mon Jun 16 23:48:55 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, 15 Dec 2014 12:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator