GNU bug report logs - #31032
can't read emacs - unusable

Previous Next

Package: emacs;

Reported by: K Richard Pixley <pixleyr <at> google.com>

Date: Mon, 2 Apr 2018 22:11:01 UTC

Severity: minor

Done: Noam Postavsky <npostavs <at> gmail.com>

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 31032 in the body.
You can then email your comments to 31032 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#31032; Package emacs. (Mon, 02 Apr 2018 22:11:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to K Richard Pixley <pixleyr <at> google.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Mon, 02 Apr 2018 22:11:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: K Richard Pixley <pixleyr <at> google.com>
To: bug-gnu-emacs <at> gnu.org
Cc: K Richard Pixley <rich <at> noir.com>
Subject: can't read emacs - unusable
Date: Mon, 2 Apr 2018 14:07:54 -0700
I'm trying to start emacs on a random machine, some random, unknown 
configuration, and I can't read it because of the color settings.

What's the command line option to tell it to stop using color?

Many people can't discriminate colors unless they're set up by a color 
professional who understands color vision.  Most aren't. And I can't see it.

On my private configurations, I can set them to turn off font-lock mode, 
but from the command line, even --eval='(global-font-lock-mode 0)' 
doesn't seem to be working.

Incredibly frustrating.





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#31032; Package emacs. (Mon, 02 Apr 2018 22:41:02 GMT) Full text and rfc822 format available.

Message #8 received at 31032 <at> debbugs.gnu.org (full text, mbox):

From: Noam Postavsky <npostavs <at> gmail.com>
To: K Richard Pixley <pixleyr <at> google.com>
Cc: K Richard Pixley <rich <at> noir.com>, 31032 <at> debbugs.gnu.org
Subject: Re: bug#31032: can't read emacs - unusable
Date: Mon, 02 Apr 2018 18:40:20 -0400
K Richard Pixley <pixleyr <at> google.com> writes:

> I'm trying to start emacs on a random machine, some random, unknown
> configuration, and I can't read it because of the color settings.
>
> What's the command line option to tell it to stop using color?

Do you mean in the terminal?  Try '--color=never'.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#31032; Package emacs. (Mon, 02 Apr 2018 23:17:02 GMT) Full text and rfc822 format available.

Message #11 received at 31032 <at> debbugs.gnu.org (full text, mbox):

From: K Richard Pixley <pixleyr <at> google.com>
To: Noam Postavsky <npostavs <at> gmail.com>
Cc: K Richard Pixley <rich <at> noir.com>, 31032 <at> debbugs.gnu.org
Subject: Re: bug#31032: can't read emacs - unusable
Date: Mon, 2 Apr 2018 16:01:40 -0700
On 04/02/2018 03:40 PM, Noam Postavsky wrote:
> K Richard Pixley <pixleyr <at> google.com> writes:
>
>> I'm trying to start emacs on a random machine, some random, unknown
>> configuration, and I can't read it because of the color settings.
>>
>> What's the command line option to tell it to stop using color?
> Do you mean in the terminal?  Try '--color=never'.
Didn't help.  Still colored.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#31032; Package emacs. (Mon, 02 Apr 2018 23:32:01 GMT) Full text and rfc822 format available.

Message #14 received at 31032 <at> debbugs.gnu.org (full text, mbox):

From: Noam Postavsky <npostavs <at> gmail.com>
To: K Richard Pixley <pixleyr <at> google.com>
Cc: K Richard Pixley <rich <at> noir.com>, 31032 <at> debbugs.gnu.org
Subject: Re: bug#31032: can't read emacs - unusable
Date: Mon, 02 Apr 2018 19:31:00 -0400
K Richard Pixley <pixleyr <at> google.com> writes:

> On my private configurations, I can set them to turn off font-lock
> mode, but from the command line, even --eval='(global-font-lock-mode
> 0)' doesn't seem to be working.

Perhaps the configuration explicitly enables font-lock?  Why not use -Q
so you don't have to deal with random configurations?

    emacs -Q --eval='(global-font-lock-mode 0)'

I don't there is any command line option to disable colour in graphical
mode.  Possibly you could disable font-lock later, e.g.,

    emacs --eval='(add-hook (quote after-init-hook) (lambda () (global-font-lock-mode 0)))'

To completely get rid of all colour, you could evaluate:

    (dolist (face (face-list))
      (when (face-foreground face)
        (set-face-foreground face 'unspecified))
      (when (face-background face)
        (set-face-background face 'unspecified)))

(again, this would probably have to be done in the after-init-hook, if
the configuration makes its own colour settings to faces)




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#31032; Package emacs. (Tue, 03 Apr 2018 00:10:02 GMT) Full text and rfc822 format available.

Message #17 received at 31032 <at> debbugs.gnu.org (full text, mbox):

From: K Richard Pixley <pixleyr <at> google.com>
To: Noam Postavsky <npostavs <at> gmail.com>
Cc: K Richard Pixley <rich <at> noir.com>, 31032 <at> debbugs.gnu.org
Subject: Re: bug#31032: can't read emacs - unusable
Date: Mon, 2 Apr 2018 17:01:30 -0700
Thank you.

Looks like I needed: emacs -Q -nw --color=never.

I can chase it down from there.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#31032; Package emacs. (Sat, 07 Apr 2018 01:55:02 GMT) Full text and rfc822 format available.

Message #20 received at 31032 <at> debbugs.gnu.org (full text, mbox):

From: Noam Postavsky <npostavs <at> gmail.com>
To: K Richard Pixley <pixleyr <at> google.com>
Cc: K Richard Pixley <rich <at> noir.com>, 31032 <at> debbugs.gnu.org
Subject: Re: bug#31032: can't read emacs - unusable
Date: Fri, 06 Apr 2018 21:53:41 -0400
close 31032
quit

K Richard Pixley <pixleyr <at> google.com> writes:

> Looks like I needed: emacs -Q -nw --color=never.
>
> I can chase it down from there.

Okay, closing.





bug closed, send any further explanations to 31032 <at> debbugs.gnu.org and K Richard Pixley <pixleyr <at> google.com> Request was from Noam Postavsky <npostavs <at> gmail.com> to control <at> debbugs.gnu.org. (Sat, 07 Apr 2018 01:55:03 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. (Sat, 05 May 2018 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 46 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.