GNU bug report logs -
#43837
28.0.50; [NS] Internal border of inactive frame loses color
Previous Next
Reported by: Andrii Kolomoiets <andreyk.mad <at> gmail.com>
Date: Tue, 6 Oct 2020 19:41:01 UTC
Severity: normal
Found in version 28.0.50
Fixed in version 28.1
Done: Stefan Kangas <stefan <at> marxist.se>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 43837 in the body.
You can then email your comments to 43837 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Tue, 06 Oct 2020 19:41:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Andrii Kolomoiets <andreyk.mad <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Tue, 06 Oct 2020 19:41:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
In 'emacs -Q':
1. M-: (setq test-frame (make-frame '((left . 50) (top . 50))))
2. C-x 5 o
3. M-: (set-face-background 'internal-border "blue" test-frame)
4. M-: (modify-frame-parameters test-frame '((background-color . "black")))
Now (face-background 'internal-border test-frame) returns nil.
If we skip step 2, then the internal border color remains.
In GNU Emacs 28.0.50 (build 2, x86_64-apple-darwin19.6.0, NS appkit-1894.60 Version 10.15.6 (Build 19G2021))
Windowing system distributor 'Apple', version 10.3.1894
System Description: Mac OS X 10.15.6
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Tue, 06 Oct 2020 20:38:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 43837 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Tue, Oct 06, 2020 at 10:40:33PM +0300, Andrii Kolomoiets wrote:
> In 'emacs -Q':
>
> 1. M-: (setq test-frame (make-frame '((left . 50) (top . 50))))
> 2. C-x 5 o
> 3. M-: (set-face-background 'internal-border "blue" test-frame)
> 4. M-: (modify-frame-parameters test-frame '((background-color . "black")))
>
> Now (face-background 'internal-border test-frame) returns nil.
> If we skip step 2, then the internal border color remains.
This isn't an NS specific problem. Eli actually spotted the bug last
year and put in a FIXME.
I can't think of a good reason for the code to use the selected frame,
but perhaps I'm missing something.
Patch attached.
--
Alan Third
[0001-Prevent-mixing-of-faces-from-different-frames-bug-43.patch (text/plain, attachment)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 06:47:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 43837 <at> debbugs.gnu.org (full text, mbox):
Alan Third <alan <at> idiocy.org> writes:
> This isn't an NS specific problem. Eli actually spotted the bug last
> year and put in a FIXME.
Sorry, was too lazy to check on other OS :)
> I can't think of a good reason for the code to use the selected frame,
> but perhaps I'm missing something.
>
> Patch attached.
Looks great and works perfect!
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 07:04:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 43837 <at> debbugs.gnu.org (full text, mbox):
> From: Andrii Kolomoiets <andreyk.mad <at> gmail.com>
> Date: Tue, 06 Oct 2020 22:40:33 +0300
>
> In 'emacs -Q':
>
> 1. M-: (setq test-frame (make-frame '((left . 50) (top . 50))))
> 2. C-x 5 o
> 3. M-: (set-face-background 'internal-border "blue" test-frame)
> 4. M-: (modify-frame-parameters test-frame '((background-color . "black")))
>
> Now (face-background 'internal-border test-frame) returns nil.
> If we skip step 2, then the internal border color remains.
I think I fixed this on the master branch now.
Thanks.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 07:20:01 GMT)
Full text and
rfc822 format available.
Message #17 received at 43837 <at> debbugs.gnu.org (full text, mbox):
> Date: Tue, 6 Oct 2020 21:37:15 +0100
> From: Alan Third <alan <at> idiocy.org>
> Cc: 43837 <at> debbugs.gnu.org
>
> > 1. M-: (setq test-frame (make-frame '((left . 50) (top . 50))))
> > 2. C-x 5 o
> > 3. M-: (set-face-background 'internal-border "blue" test-frame)
> > 4. M-: (modify-frame-parameters test-frame '((background-color . "black")))
> >
> > Now (face-background 'internal-border test-frame) returns nil.
> > If we skip step 2, then the internal border color remains.
>
> This isn't an NS specific problem. Eli actually spotted the bug last
> year and put in a FIXME.
It was me?
> I can't think of a good reason for the code to use the selected frame,
> but perhaps I'm missing something.
Heh, I went through the rabbit hole and arrived at the same fix, now
installed on master. Let's see what will it break, and then perhaps
we will understand why the old code used selected-frame there...
Thanks.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 07:43:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 43837 <at> debbugs.gnu.org (full text, mbox):
Eli Zaretskii <eliz <at> gnu.org> writes:
>> From: Alan Third <alan <at> idiocy.org>
>> I can't think of a good reason for the code to use the selected frame,
>> but perhaps I'm missing something.
>
> Heh, I went through the rabbit hole and arrived at the same fix, now
> installed on master. Let's see what will it break, and then perhaps
> we will understand why the old code used selected-frame there...
Well, with recent master:
1. M-: (custom-set-faces '(default ((t :foreground "white" :background "black"))))
2. C-x 5 2
And to fix the colors in the created frame:
M-: (frame-set-background-mode (selected-frame))
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 08:28:01 GMT)
Full text and
rfc822 format available.
Message #23 received at 43837 <at> debbugs.gnu.org (full text, mbox):
> From: Andrii Kolomoiets <andreyk.mad <at> gmail.com>
> Cc: Alan Third <alan <at> idiocy.org>, 43837 <at> debbugs.gnu.org
> Date: Wed, 07 Oct 2020 10:42:13 +0300
>
> Eli Zaretskii <eliz <at> gnu.org> writes:
>
> > Heh, I went through the rabbit hole and arrived at the same fix, now
> > installed on master. Let's see what will it break, and then perhaps
> > we will understand why the old code used selected-frame there...
>
> Well, with recent master:
>
> 1. M-: (custom-set-faces '(default ((t :foreground "white" :background "black"))))
> 2. C-x 5 2
>
> And to fix the colors in the created frame:
> M-: (frame-set-background-mode (selected-frame))
So are you okay with reverting the fix and enduring the lesser problem
we had before?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 08:33:01 GMT)
Full text and
rfc822 format available.
Message #26 received at 43837 <at> debbugs.gnu.org (full text, mbox):
On Wed, Oct 07, 2020 at 10:19:35AM +0300, Eli Zaretskii wrote:
> > Date: Tue, 6 Oct 2020 21:37:15 +0100
> > From: Alan Third <alan <at> idiocy.org>
> > Cc: 43837 <at> debbugs.gnu.org
> >
> > This isn't an NS specific problem. Eli actually spotted the bug last
> > year and put in a FIXME.
>
> It was me?
Yup! 6a1dcf594a8b6aa72820f04b529aa3454cf3fc61 :)
--
Alan Third
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 08:38:01 GMT)
Full text and
rfc822 format available.
Message #29 received at 43837 <at> debbugs.gnu.org (full text, mbox):
> Date: Wed, 07 Oct 2020 11:27:25 +0300
> From: Eli Zaretskii <eliz <at> gnu.org>
> Cc: alan <at> idiocy.org, 43837 <at> debbugs.gnu.org
>
> > From: Andrii Kolomoiets <andreyk.mad <at> gmail.com>
> > Cc: Alan Third <alan <at> idiocy.org>, 43837 <at> debbugs.gnu.org
> > Date: Wed, 07 Oct 2020 10:42:13 +0300
> >
> > 1. M-: (custom-set-faces '(default ((t :foreground "white" :background "black"))))
> > 2. C-x 5 2
> >
> > And to fix the colors in the created frame:
> > M-: (frame-set-background-mode (selected-frame))
>
> So are you okay with reverting the fix and enduring the lesser problem
> we had before?
Never mind, I fixed this now, I think.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Wed, 07 Oct 2020 08:47:01 GMT)
Full text and
rfc822 format available.
Message #32 received at 43837 <at> debbugs.gnu.org (full text, mbox):
Eli Zaretskii <eliz <at> gnu.org> writes:
> Never mind, I fixed this now, I think.
Can confirm.
Thanks!
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#43837
; Package
emacs
.
(Sun, 18 Oct 2020 11:54:02 GMT)
Full text and
rfc822 format available.
Message #35 received at 43837 <at> debbugs.gnu.org (full text, mbox):
close 43837 28.1
thanks
Andrii Kolomoiets <andreyk.mad <at> gmail.com> writes:
> Eli Zaretskii <eliz <at> gnu.org> writes:
>
>> Never mind, I fixed this now, I think.
>
> Can confirm.
It seems like this was fixed, but the bug was never closed. I'm
therefore closing this bug report.
If this conclusion is incorrect and this is still an issue, please reply
to this email (use "Reply to all" in your email client) and we can
reopen the bug report.
bug marked as fixed in version 28.1, send any further explanations to
43837 <at> debbugs.gnu.org and Andrii Kolomoiets <andreyk.mad <at> gmail.com>
Request was from
Stefan Kangas <stefan <at> marxist.se>
to
control <at> debbugs.gnu.org
.
(Sun, 18 Oct 2020 11:54:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 15 Nov 2020 12:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 243 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.