* Re: Undefined color error
[not found] <mailman.842.1099622665.8225.help-gnu-emacs@gnu.org>
@ 2004-11-05 5:31 ` Pascal Bourguignon
2004-11-05 6:38 ` Ken Keefe
[not found] ` <mailman.872.1099637438.8225.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 7+ messages in thread
From: Pascal Bourguignon @ 2004-11-05 5:31 UTC (permalink / raw)
Ken Keefe <kaje@digitalfamily.org> writes:
> Hello, I recently installed the latest Mandrake Linux distro and emacs
> seems to be broken. Here is what happens when I try to start emacs from
> a terminal:
>
> $ emacs
> Undefined color: "black"
>
> And that is all that happens. I have tried reinstalling it, I even
> installed it from the tarball available on gnu.org. Same thing. I am
> guessing that this might be a problem with X or something? I can do
> emacs -nw and it works, but I like the X version. I have completely
> removed my .emacs file, so I don't think it can be that.
My guess is that it's a X problem too. Check the ~/.Xresources file
You may have lines like:
emacs*Background: white
emacs*Foreground: black
emacs*pointerColor: red
emacs*cursorColor: black
X keeps a dictionnary of color names in files named rgb.txt. It seems
emacs has a copy in its etc directory too:
/usr/X11R6/lib/X11/rgb.txt
/usr/share/emacs/21.3/etc/rgb.txt
These files contains RGB values in decimal followed by the name of the
color:
255 255 250 white
255 250 250 snow
248 248 255 ghost white
248 248 255 GhostWhite
245 245 245 white smoke
245 245 245 WhiteSmoke
...
255 0 0 red
...
0 255 0 green
...
0 0 255 blue
...
0 0 0 black
> Thanks ahead of time for your help. I love emacs!! I feel like I have
> been separated from a brother or something!
--
__Pascal Bourguignon__
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Undefined color error
2004-11-05 5:31 ` Undefined color error Pascal Bourguignon
@ 2004-11-05 6:38 ` Ken Keefe
[not found] ` <mailman.872.1099637438.8225.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 7+ messages in thread
From: Ken Keefe @ 2004-11-05 6:38 UTC (permalink / raw)
On Fri, 2004-11-05 at 06:31 +0100, Pascal Bourguignon wrote:
> Ken Keefe <kaje@digitalfamily.org> writes:
>
> > Hello, I recently installed the latest Mandrake Linux distro and emacs
> > seems to be broken. Here is what happens when I try to start emacs from
> > a terminal:
> >
> > $ emacs
> > Undefined color: "black"
> >
> > And that is all that happens. I have tried reinstalling it, I even
> > installed it from the tarball available on gnu.org. Same thing. I am
> > guessing that this might be a problem with X or something? I can do
> > emacs -nw and it works, but I like the X version. I have completely
> > removed my .emacs file, so I don't think it can be that.
>
> My guess is that it's a X problem too. Check the ~/.Xresources file
>
> You may have lines like:
>
> emacs*Background: white
> emacs*Foreground: black
> emacs*pointerColor: red
> emacs*cursorColor: black
>
> X keeps a dictionnary of color names in files named rgb.txt. It seems
> emacs has a copy in its etc directory too:
>
> /usr/X11R6/lib/X11/rgb.txt
> /usr/share/emacs/21.3/etc/rgb.txt
I checked these files and both have RGB definitions for black. Any other
ideas? I recently ran a java program at the command line and received
the same error, so it seems to not be merely an emacs problem...
Thanks,
Ken
>
> These files contains RGB values in decimal followed by the name of the
> color:
>
> 255 255 250 white
> 255 250 250 snow
> 248 248 255 ghost white
> 248 248 255 GhostWhite
> 245 245 245 white smoke
> 245 245 245 WhiteSmoke
> ...
> 255 0 0 red
> ...
> 0 255 0 green
> ...
> 0 0 255 blue
> ...
> 0 0 0 black
>
>
> > Thanks ahead of time for your help. I love emacs!! I feel like I have
> > been separated from a brother or something!
>
^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <mailman.872.1099637438.8225.help-gnu-emacs@gnu.org>]
* Re: Undefined color error
[not found] ` <mailman.872.1099637438.8225.help-gnu-emacs@gnu.org>
@ 2004-11-05 10:55 ` Pascal Bourguignon
2004-11-05 16:58 ` Ken Keefe
[not found] ` <mailman.950.1099674445.8225.help-gnu-emacs@gnu.org>
0 siblings, 2 replies; 7+ messages in thread
From: Pascal Bourguignon @ 2004-11-05 10:55 UTC (permalink / raw)
Ken Keefe <kaje@digitalfamily.org> writes:
> > /usr/X11R6/lib/X11/rgb.txt
> > /usr/share/emacs/21.3/etc/rgb.txt
>
> I checked these files and both have RGB definitions for black. Any other
> ideas? I recently ran a java program at the command line and received
> the same error, so it seems to not be merely an emacs problem...
Then, check whether it's well configured in /etc/X11/XF86Config
(assuming you're using a XFree X server). There should be a section
such as:
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
...
EndSection
(the extension should not be provided, because it can be .txt or .db).
Which makes me think that perhaps the file format of rgb.txt is more
precise. My file has spaces between (or after) numbers, and two
tabulations before the name:
...
255 250 250^I^Isnow
248 248 255^I^Ighost white
...
252 252 252 ^I^Igrey99
255 255 255 ^I^Igray100
255 255 255 ^I^Igrey100
...
You may check quickly with: cat -t /usr/X11R6/lib/X11/rgb.txt
--
__Pascal Bourguignon__
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Undefined color error
2004-11-05 10:55 ` Pascal Bourguignon
@ 2004-11-05 16:58 ` Ken Keefe
[not found] ` <mailman.950.1099674445.8225.help-gnu-emacs@gnu.org>
1 sibling, 0 replies; 7+ messages in thread
From: Ken Keefe @ 2004-11-05 16:58 UTC (permalink / raw)
That was it!! Thank you so much! It turns out my RgbPath was this:
RgbPath "/usr/X11R6/lib/X11/rgb.txt"
I dropped the txt, restarted X, and everything is lovely again. Thanks
again!
Ken
On Fri, 2004-11-05 at 11:55 +0100, Pascal Bourguignon wrote:
> Ken Keefe <kaje@digitalfamily.org> writes:
> > > /usr/X11R6/lib/X11/rgb.txt
> > > /usr/share/emacs/21.3/etc/rgb.txt
> >
> > I checked these files and both have RGB definitions for black. Any other
> > ideas? I recently ran a java program at the command line and received
> > the same error, so it seems to not be merely an emacs problem...
>
> Then, check whether it's well configured in /etc/X11/XF86Config
> (assuming you're using a XFree X server). There should be a section
> such as:
>
> Section "Files"
> RgbPath "/usr/X11R6/lib/X11/rgb"
> ...
> EndSection
>
> (the extension should not be provided, because it can be .txt or .db).
> Which makes me think that perhaps the file format of rgb.txt is more
> precise. My file has spaces between (or after) numbers, and two
> tabulations before the name:
>
> ...
> 255 250 250^I^Isnow
> 248 248 255^I^Ighost white
> ...
> 252 252 252 ^I^Igrey99
> 255 255 255 ^I^Igray100
> 255 255 255 ^I^Igrey100
> ...
>
> You may check quickly with: cat -t /usr/X11R6/lib/X11/rgb.txt
>
^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <mailman.950.1099674445.8225.help-gnu-emacs@gnu.org>]
* Undefined color error
@ 2004-11-05 2:35 Ken Keefe
0 siblings, 0 replies; 7+ messages in thread
From: Ken Keefe @ 2004-11-05 2:35 UTC (permalink / raw)
Hello, I recently installed the latest Mandrake Linux distro and emacs
seems to be broken. Here is what happens when I try to start emacs from
a terminal:
$ emacs
Undefined color: "black"
And that is all that happens. I have tried reinstalling it, I even
installed it from the tarball available on gnu.org. Same thing. I am
guessing that this might be a problem with X or something? I can do
emacs -nw and it works, but I like the X version. I have completely
removed my .emacs file, so I don't think it can be that.
Thanks ahead of time for your help. I love emacs!! I feel like I have
been separated from a brother or something!
Ken Keefe
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2004-12-28 18:28 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.842.1099622665.8225.help-gnu-emacs@gnu.org>
2004-11-05 5:31 ` Undefined color error Pascal Bourguignon
2004-11-05 6:38 ` Ken Keefe
[not found] ` <mailman.872.1099637438.8225.help-gnu-emacs@gnu.org>
2004-11-05 10:55 ` Pascal Bourguignon
2004-11-05 16:58 ` Ken Keefe
[not found] ` <mailman.950.1099674445.8225.help-gnu-emacs@gnu.org>
2004-11-09 17:15 ` Michael Slass
2004-12-28 18:28 ` Tom Morris
2004-11-05 2:35 Ken Keefe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).