* How to setup a simple face in 24.2
@ 2012-08-21 16:28 Thierry Volpiatto
2012-08-21 16:37 ` Andreas Schwab
2012-08-21 17:49 ` Glenn Morris
0 siblings, 2 replies; 8+ messages in thread
From: Thierry Volpiatto @ 2012-08-21 16:28 UTC (permalink / raw)
To: emacs-devel
Hi, the title says all.
I have this face that behave differently in customize interface
depending the emacs version I use:
#+BEGIN_SRC lisp
(defface helm-grep-file
'((t (:foreground "BlueViolet"
:underline t)))
"Face used to highlight grep results filenames."
:group 'helm-grep)
#+END_SRC
emacs-24.1:
--8<---------------cut here---------------start------------->8---
Hide Helm Grep File face: [sample]
State : STANDARD.
Face used to highlight grep results filenames.
[X] Underline: Value Menu On
[X] Foreground: BlueViolet Choose (sample)
Show All Attributes
--8<---------------cut here---------------end--------------->8---
emacs-24.2:
--8<---------------cut here---------------start------------->8---
Hide Helm Grep File face: [sample]
State : STANDARD.
Face used to highlight grep results filenames.
Lisp expression:
((t
(:underline t :foreground "BlueViolet")))
--8<---------------cut here---------------end--------------->8---
Thanks.
--
Thierry
Get my Gnupg key:
gpg --keyserver pgp.mit.edu --recv-keys 59F29997
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: How to setup a simple face in 24.2
2012-08-21 16:28 How to setup a simple face in 24.2 Thierry Volpiatto
@ 2012-08-21 16:37 ` Andreas Schwab
2012-08-21 16:53 ` Thierry Volpiatto
2012-08-21 17:49 ` Glenn Morris
1 sibling, 1 reply; 8+ messages in thread
From: Andreas Schwab @ 2012-08-21 16:37 UTC (permalink / raw)
To: Thierry Volpiatto; +Cc: emacs-devel
Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
> I have this face that behave differently in customize interface
> depending the emacs version I use:
>
> #+BEGIN_SRC lisp
> (defface helm-grep-file
> '((t (:foreground "BlueViolet"
> :underline t)))
> "Face used to highlight grep results filenames."
> :group 'helm-grep)
>
> #+END_SRC
Worksforme.
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: How to setup a simple face in 24.2
2012-08-21 16:37 ` Andreas Schwab
@ 2012-08-21 16:53 ` Thierry Volpiatto
2012-08-21 17:40 ` Drew Adams
2012-08-21 20:05 ` Andreas Schwab
0 siblings, 2 replies; 8+ messages in thread
From: Thierry Volpiatto @ 2012-08-21 16:53 UTC (permalink / raw)
To: Andreas Schwab; +Cc: emacs-devel
Andreas Schwab <schwab@linux-m68k.org> writes:
> Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
>
>> I have this face that behave differently in customize interface
>> depending the emacs version I use:
>>
>> #+BEGIN_SRC lisp
>> (defface helm-grep-file
>> '((t (:foreground "BlueViolet"
>> :underline t)))
>> "Face used to highlight grep results filenames."
>> :group 'helm-grep)
>>
>> #+END_SRC
>
> Worksforme.
Please develop, I don't know what mean worksforme.
--
Thierry
Get my Gnupg key:
gpg --keyserver pgp.mit.edu --recv-keys 59F29997
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: How to setup a simple face in 24.2
2012-08-21 16:53 ` Thierry Volpiatto
@ 2012-08-21 17:40 ` Drew Adams
2012-08-21 18:55 ` Thierry Volpiatto
2012-08-21 20:05 ` Andreas Schwab
1 sibling, 1 reply; 8+ messages in thread
From: Drew Adams @ 2012-08-21 17:40 UTC (permalink / raw)
To: 'Thierry Volpiatto', 'Andreas Schwab'; +Cc: emacs-devel
> >> I have this face that behave differently in customize interface
> >> depending the emacs version I use:
> >>
> >> (defface helm-grep-file
> >> '((t (:foreground "BlueViolet"
> >> :underline t)))
> >> "Face used to highlight grep results filenames."
> >> :group 'helm-grep)
> >
> > Worksforme.
> Please develop, I don't know what mean worksforme.
FWIW, in the latest Windows build that I have (there is no Windows 24.2 build
available yet, AFAIK), I see the same thing Thierry reported. Looks like a
regression - works fine in 24.1 and prior.
If you get rid of the `:underline t' part then it works as it should.
In GNU Emacs 24.1.50.1 (i386-mingw-nt5.1.2600) of 2012-08-13 on MARVIN
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: How to setup a simple face in 24.2
2012-08-21 17:40 ` Drew Adams
@ 2012-08-21 18:55 ` Thierry Volpiatto
0 siblings, 0 replies; 8+ messages in thread
From: Thierry Volpiatto @ 2012-08-21 18:55 UTC (permalink / raw)
To: Drew Adams; +Cc: 'Andreas Schwab', emacs-devel
"Drew Adams" <drew.adams@oracle.com> writes:
>> >> I have this face that behave differently in customize interface
>> >> depending the emacs version I use:
>> >>
>> >> (defface helm-grep-file
>> >> '((t (:foreground "BlueViolet"
>> >> :underline t)))
>> >> "Face used to highlight grep results filenames."
>> >> :group 'helm-grep)
>> >
>> > Worksforme.
>> Please develop, I don't know what mean worksforme.
>
> FWIW, in the latest Windows build that I have (there is no Windows 24.2 build
> available yet, AFAIK), I see the same thing Thierry reported. Looks like a
> regression - works fine in 24.1 and prior.
>
> If you get rid of the `:underline t' part then it works as it should.
Yes, same here, thanks.
> In GNU Emacs 24.1.50.1 (i386-mingw-nt5.1.2600) of 2012-08-13 on MARVIN
>
--
Thierry
Get my Gnupg key:
gpg --keyserver pgp.mit.edu --recv-keys 59F29997
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: How to setup a simple face in 24.2
2012-08-21 16:53 ` Thierry Volpiatto
2012-08-21 17:40 ` Drew Adams
@ 2012-08-21 20:05 ` Andreas Schwab
1 sibling, 0 replies; 8+ messages in thread
From: Andreas Schwab @ 2012-08-21 20:05 UTC (permalink / raw)
To: Thierry Volpiatto; +Cc: emacs-devel
Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
> Andreas Schwab <schwab@linux-m68k.org> writes:
>
>> Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:
>>
>>> I have this face that behave differently in customize interface
>>> depending the emacs version I use:
>>>
>>> #+BEGIN_SRC lisp
>>> (defface helm-grep-file
>>> '((t (:foreground "BlueViolet"
>>> :underline t)))
>>> "Face used to highlight grep results filenames."
>>> :group 'helm-grep)
>>>
>>> #+END_SRC
>>
>> Worksforme.
> Please develop, I don't know what mean worksforme.
Did you really mean 24.2?
Andreas.
--
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: How to setup a simple face in 24.2
2012-08-21 16:28 How to setup a simple face in 24.2 Thierry Volpiatto
2012-08-21 16:37 ` Andreas Schwab
@ 2012-08-21 17:49 ` Glenn Morris
2012-08-21 18:54 ` Thierry Volpiatto
1 sibling, 1 reply; 8+ messages in thread
From: Glenn Morris @ 2012-08-21 17:49 UTC (permalink / raw)
To: Thierry Volpiatto; +Cc: emacs-devel
Thierry Volpiatto wrote:
> Hi, the title says all.
You already reported this to the right place.
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11805
Sorry no-one's done anything about it yet and all.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-08-21 20:05 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-21 16:28 How to setup a simple face in 24.2 Thierry Volpiatto
2012-08-21 16:37 ` Andreas Schwab
2012-08-21 16:53 ` Thierry Volpiatto
2012-08-21 17:40 ` Drew Adams
2012-08-21 18:55 ` Thierry Volpiatto
2012-08-21 20:05 ` Andreas Schwab
2012-08-21 17:49 ` Glenn Morris
2012-08-21 18:54 ` Thierry Volpiatto
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.