|
|
Up |
|
|
  |
Author: AnkurAnkur Date: Jul 24, 2007 05:07
Hi
I am using Emacs 22.1 on Windows XP. I downloaded color-theme v6.6 and
extracted in emacs load-path directory. Now, I started Emacs and did
load-library color-theme RET
It executed successfully; further I did color-theme-select.
Now when I press RET on any color-theme in the list, I get the
following error :
Symbol's function definition is void : color-theme-arjen.
Could someone help me resolving this problem.
Regards
Ankur Jain
http://ankurjain.org
|
| |
|
| | 10 Comments |
|
  |
Author: Arjen WiersmaArjen Wiersma Date: Jul 24, 2007 06:10
Ankur gmail.com> writes:
> Now when I press RET on any color-theme in the list, I get the
> following error :
>
> Symbol's function definition is void : color-theme-arjen.
>
> Could someone help me resolving this problem.
Good choice for a color theme ;).... personally I add both color-theme
and color-theme/themes to my load-path and also load
color-theme-library.el in order to get it to work.
Having just:
(require 'color-theme)
(color-theme-arjen)
gives me the same error, however using color-theme-select works just
fine. (?)...
I settled on loading color-theme-library.el (byte compiled of course)
and that has worked for me...
Regards
Arjen
|
| |
|
| | no comments |
|
  |
Author: Exal de Jesus Garcia CarrilloExal de Jesus Garcia Carrillo Date: Jul 24, 2007 10:40
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Ankur gmail.com> writes:
> I am using Emacs 22.1 on Windows XP. I downloaded color-theme v6.6 and
> extracted in emacs load-path directory. Now, I started Emacs and did
>
> load-library color-theme RET
[...]
Try with this in your .emacs file:
(require 'color-theme)
(color-theme-what-you-want)
- --
Spam protection:
In my e-mail remplace the words `no-spam' with `exal'.
.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ < http://mailcrypt.sourceforge.net/>
|
| Show full article (0.72Kb) |
| no comments |
|
  |
Author: Amy TempletonAmy Templeton Date: Jul 24, 2007 21:56
Arjen Wiersma credmp.org> wrote:
> Ankur gmail.com> writes:
>> Now when I press RET on any color-theme in the list, I get the
>> following error :
>>
>> Symbol's function definition is void : color-theme-arjen.
>>
>> Could someone help me resolving this problem.
> Good choice for a color theme ;).... personally I add both
> color-theme and color-theme/themes to my load-path and also load
> color-theme-library.el in order to get it to work.
> Having just:
> (require 'color-theme)
> (color-theme-arjen)
> gives me the same error, however using color-theme-select works just
> fine. (?)...
> I settled on loading color-theme-library.el (byte compiled of course)
> and that has worked for me...
Personally, I've found that...
|
| Show full article (1.23Kb) |
| no comments |
|
  |
Author: AnkurAnkur Date: Jul 24, 2007 22:54
On Jul 25, 9:56 am, Amy Templeton gmail.com> wrote:
> Arjen Wiersma credmp.org> wrote:
>> Ankur gmail.com> writes:
>>> Now when I press RET on any color-theme in the list, I get the
>>> following error :
>
>>> Symbol's function definition is void : color-theme-arjen.
>
>>> Could someone help me resolving this problem.
>> Good choice for a color theme ;).... personally I add both
>> color-theme and color-theme/themes to my load-path and also load
>> color-theme-library.el in order to get it to work.
>> Having just:
>> (require 'color-theme)
>> (color-theme-arjen)
>> gives me the same error, however using color-theme-select works just
>> fine. (?)...
>> I settled on loading color-theme-library.el (byte compiled of course)
>> and that has worked for me...
> ...
|
| Show full article (2.59Kb) |
| no comments |
|
  |
Author: Peter DyballaPeter Dyballa Date: Jul 25, 2007 01:08
Am 25.07.2007 um 07:54 schrieb Ankur:
> Any idea?
Have you found where the function color-theme-matrix is defined? What
is its definition?
--
Greetings
Pete
"Give a man a fish, and you've fed him for a day. Teach him to fish,
and you've depleted the lake."
|
| |
| no comments |
|
  |
Author: AnkurAnkur Date: Jul 25, 2007 06:33
On Jul 25, 1:08 pm, Peter Dyballa wrote:
> Am 25.07.2007 um 07:54 schrieb Ankur:
>
>> Any idea?
>
> Have you found where the function color-theme-matrix is defined? What
> is its definition?
>
> --
> Greetings
>
> Pete
>
> "Give a man a fish, and you've fed him for a day. Teach him to fish,
> and you've depleted the lake."
color-theme-matrix function is defined in color-theme-library.el
bundled with color-theme package. Given below is the code for the
function :
(defun color-theme-matrix ()
"Color theme by walterh@ rocketmail.com, created 2003-10-16."
(interactive)
(color-theme-install
'(color-theme-matrix
((background-color . "black")
(background...
|
| Show full article (27.65Kb) |
| no comments |
|
  |
Author: Mark HarrisonMark Harrison Date: Jul 25, 2007 07:11
> (require 'color-theme)
> (color-theme-initialize)
> (color-theme-matrix)
>
> and started emacs. I received the following error:
>
> Debugger entered--Lisp error: (void-function color-theme-matrix)
Make sure you have color-theme.el in a directory that is in your load
path, and also themes/color-theme-library.el in the same directory.
(i.e. a themes directory in the same dir that you have color-theme.el
in, and the color-theme-library.el inside that themes directory). That
is what I needed to do to get the above to work.
Mark
|
| |
| no comments |
|
  |
Author: Peter DyballaPeter Dyballa Date: Jul 25, 2007 07:17
Am 25.07.2007 um 15:33 schrieb Ankur:
> Symbol's function definition is void : .
So you need to find if and where this function is defined ...
--
Greetings
Pete
_o o o o
_<< \\_/\_, \\_ \\_/\_,
(*)/(*) (*) (*) (*) `- (*)
|
| |
| no comments |
|
  |
|
|
  |
Author: AnkurAnkur Date: Jul 25, 2007 08:59
On Jul 25, 7:11 pm, Mark Harrison gmail.com> wrote:
>> (require 'color-theme)
>> (color-theme-initialize)
>> (color-theme-matrix)
>
>> and started emacs. I received the following error:
>
>> Debugger entered--Lisp error: (void-function color-theme-matrix)
>
> Make sure you have color-theme.el in a directory that is in your load
> path, and also themes/color-theme-library.el in the same directory.
> (i.e. a themes directory in the same dir that you have color-theme.el
> in, and the color-theme-library.el inside that themes directory). That
> is what I needed to do to get the above to work.
>
> Mark
Thanks a LOT Mark!!!
|
| Show full article (0.81Kb) |
| no comments |
|
|
|
|