* color-theme problem
@ 2003-03-15 7:34 Konstantin
0 siblings, 0 replies; 7+ messages in thread
From: Konstantin @ 2003-03-15 7:34 UTC (permalink / raw)
hi
I start use color-theme.el. It's great thing but I have one problem
with it :( I make C-x 5 f (find-file-other-frame) or just M-x make-frame
and then I have my old face on new frame.
I try follow in my .emacs
(add-hook 'before-make-frame-hook
'(lambda ()
(color-theme-pierson)
))
but it dos't help.
Do I miss sth? thanks.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: color-theme problem
[not found] <mailman.3230.1047713715.21513.help-gnu-emacs@gnu.org>
@ 2003-03-17 20:20 ` Peter Lee
0 siblings, 0 replies; 7+ messages in thread
From: Peter Lee @ 2003-03-17 20:20 UTC (permalink / raw)
Konstantin <ks@land81.nsu.ru> writes:
> I try follow in my .emacs
>
> (add-hook 'before-make-frame-hook
> '(lambda ()
> (color-theme-pierson)
> ))
I simply have the following two lines at the bottom of my .emacs file:
(require 'color-theme)
(color-theme-taylor)
I haven't had any problems with the scheme reverting on frame switches.
^ permalink raw reply [flat|nested] 7+ messages in thread
* color-theme problem
@ 2004-12-27 14:51 Ohadi, Hamid
2004-12-27 17:27 ` Neon Absentius
2004-12-27 18:36 ` Ohadi, Hamid
0 siblings, 2 replies; 7+ messages in thread
From: Ohadi, Hamid @ 2004-12-27 14:51 UTC (permalink / raw)
Hello there,
I have got the color-theme.el in my load directory and I'm able to pick up a
color theme and install it by loading the library and then selecting a
theme in emacs. However when I put the
(load 'color-theme)
in my .emacs configuration file to install a theme permanently I'm given this error:
setq: Symbol's function definition is void: color-theme-filter
Sorry to bother you guys but I Googled it and it came up with nothing.
Regards
Hamid
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: color-theme problem
2004-12-27 14:51 color-theme problem Ohadi, Hamid
@ 2004-12-27 17:27 ` Neon Absentius
2004-12-27 18:36 ` Ohadi, Hamid
1 sibling, 0 replies; 7+ messages in thread
From: Neon Absentius @ 2004-12-27 17:27 UTC (permalink / raw)
On Mon, Dec 27, 2004 at 02:51:49PM +0000, Ohadi, Hamid wrote:
> Hello there,
>
> I have got the color-theme.el in my load directory and I'm able to
> pick up a
> color theme and install it by loading the library and then selecting
> a
> theme in emacs. However when I put the
>
> (load 'color-theme)
>
> in my .emacs configuration file to install a theme permanently I'm
> given this error:
>
> setq: Symbol's function definition is void: color-theme-filter
>
> Sorry to bother you guys but I Googled it and it came up with
> nothing.
>
I have the following at the end of my .emacs and it works fine.
;; Load the color-theme library and select a theme
(require 'color-theme)
(color-theme-wheat)
In the second line you can, of course, have any color theme.
> Regards
> Hamid
--
absent a.in.circle sdf period lonestar period org
SDF Public Access UNIX System - http://sdf.lonestar.org
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: color-theme problem
2004-12-27 14:51 color-theme problem Ohadi, Hamid
2004-12-27 17:27 ` Neon Absentius
@ 2004-12-27 18:36 ` Ohadi, Hamid
2004-12-27 18:46 ` Neon Absentius
1 sibling, 1 reply; 7+ messages in thread
From: Ohadi, Hamid @ 2004-12-27 18:36 UTC (permalink / raw)
I have something like that in my .emacs as well. But I still get that error.
On Mon, Dec 27, 2004 at 02:51:49PM +0000, Ohadi, Hamid wrote:
> Hello there,
>
> I have got the color-theme.el in my load directory and I'm able to pick up a
> color theme and install it by loading the library and then selecting a
> theme in emacs. However when I put the
>
> (load 'color-theme)
>
> in my .emacs configuration file to install a theme permanently I'm given this error:
>
> setq: Symbol's function definition is void: color-theme-filter
>
> Sorry to bother you guys but I Googled it and it came up with nothing.
>
> Regards
> Hamid
>
>
> _______________________________________________
> Help-gnu-emacs mailing list
> Help-gnu-emacs@gnu.org
> http://lists.gnu.org/mailman/listinfo/help-gnu-emacs
--
Hamid Ohadi
Imperial College London
Phone: +44 20 759 47884/47588 (lab/office)
E-mail: hamid.ohadi@imperial.ac.uk
Website: http://www.qols.ph.imperial.ac.uk/~ho1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: color-theme problem
2004-12-27 18:36 ` Ohadi, Hamid
@ 2004-12-27 18:46 ` Neon Absentius
2004-12-27 20:13 ` Peter Dyballa
0 siblings, 1 reply; 7+ messages in thread
From: Neon Absentius @ 2004-12-27 18:46 UTC (permalink / raw)
On Mon, Dec 27, 2004 at 06:36:22PM +0000, Ohadi, Hamid wrote:
> I have something like that in my .emacs as well. But I still get that error.
>
You have (load 'color-theme). I am suggesting to put
^^^^
(require 'color-theme)
^^^^^^^
instead. Did you try that?
--
Charity in capitalism is like urinating to extinguish a forest fire.
-- Neon Absentius
absent a.in.cirle sdf period lonestar period org
SDF Public Access UNIX System - http://sdf.lonestar.org
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: color-theme problem
2004-12-27 18:46 ` Neon Absentius
@ 2004-12-27 20:13 ` Peter Dyballa
0 siblings, 0 replies; 7+ messages in thread
From: Peter Dyballa @ 2004-12-27 20:13 UTC (permalink / raw)
Cc: help-gnu-emacs
Am 27.12.2004 um 19:46 schrieb Neon Absentius:
> You have (load 'color-theme). I am suggesting to put
> ^^^^
> (require 'color-theme)
> ^^^^^^^
> instead. Did you try that?
(load 'something) is incorrect syntax too. It's either (load something)
or (load "something"). With optional arguments.
--
Greetings
Pete
--
Mit friedvollen Grüßen
Pete
Windows, c'est un peu comme le beaujolais nouveau: a chaque nouvelle
cuvée on sait que ce sera dégueulasse, mais on en prend quand même, par
masochisme.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2004-12-27 20:13 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-27 14:51 color-theme problem Ohadi, Hamid
2004-12-27 17:27 ` Neon Absentius
2004-12-27 18:36 ` Ohadi, Hamid
2004-12-27 18:46 ` Neon Absentius
2004-12-27 20:13 ` Peter Dyballa
[not found] <mailman.3230.1047713715.21513.help-gnu-emacs@gnu.org>
2003-03-17 20:20 ` Peter Lee
-- strict thread matches above, loose matches on Subject: below --
2003-03-15 7:34 Konstantin
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).