-----Original Message-----
From: Paul Kinnucan [mailto:[EMAIL PROTECTED]]
Sent: dinsdag 15 oktober 2002 22:08
To: Andy Gallo
Cc: [EMAIL PROTECTED]
Subject: Using JDEE w/ Windows Emacs 21.2.1Andy Gallo writes:
>
> I'm a long-time emacs user and Java programmer, who has decided to check
> out this JDEE package. Do I have a prayer of getting JDEE to work with
> Windows Emacs v21.2.1? The Web page seems to suggest I need to go back
> to v19.x of Win Emacs. I don't want to do that (I'd avoid using JDEE
> altogether if I had to do that).
>
The Requirements section states that the JDEE requires the LATEST
version of Emacs or XEmacs. I would be grateful if you would refer me
to the section of the Web site that states or implies that the JDEE
requires Emacs 19 so that I can correct the section.
> I've downloaded the required packages and byte-compiled them. Here's a
> segment of my .emacs file:
>
> * * * * *
> (add-to-list 'load-path "d:/devtools/emacs/addins/eieio-0.17")
> (add-to-list 'load-path "d:/devtools/emacs/addins/elib-1.0")
> (setq load-path (append (list "d:/devtools/emacs/addins/elib-1.0")
> load-path))
> (setq semantic-load-turn-everything-on t)
> (add-to-list 'load-path "d:/devtools/emacs/addins/semantic-1.4")
> (require 'semantic-load)
>
> (add-to-list 'load-path "d:/devtools/emacs/addins/jde-2.2.9beta12/lisp")
> (require 'jde)
> * * * * *
>
> And on start-up I get this:
>
> > An error has occurred while loading `d:/data/_emacs':
You refer to a .emacs file but the error occurs while loading
_emacs. Are you sure Emacs is loading the initialization file
that you think it is?
> > Symbol's function definition is void: semantic-map-buffers
>
This means that the semantic-util has not been loaded and hence
semantic-map-buffers has not been defined.
semantic-load is a new feature in semantic 1.4. Perhaps Eric has
not got all the dependencies involved in autoloading semantic functions
worked out.
You might have better luck doing
(require 'semantic)
as suggested in the JDEE installation instructions.
>
> I don't get a JDEE drop-down menu. Syntax coloring doesn't work (even
> tho I downloaded and byte-compiled overlay-fix.el).
>
This is because a Lisp error, perhaps the semantic error above, aborted
the jde-mode function before it had a chance to install the JDE menu
or turn on syntax coloring.
Perhaps if you solve the problem with loading semantic, the JDEE itself
will load correctly.
- Paul
> I could use some help... I'm a old-school emacs guy who is resisting
> pressures to move to (yet another) IDE. Colorized syntax would make my
> co-workers (and boss) think that this old dog really has learned new
> tricks...and what they don't know won't hurt them. 8-)
>
>
> Please email me your response ([EMAIL PROTECTED]) as I'm not a
> subscriber to the mailing list...yet. Thanks.
>
> --
> Andy Gallo
> Sr. Java Developer
> (518) 886-0700 x3812
> http://www.commercehub.com
>
Title: Using JDEE w/ Windows Emacs 21.2.1
Paul,
A while ago I noticed that emacs 21.2.1 (at least the NT version)
automatically adds site-lisp and its complete subdirectory tree to the load-path
variable. Only directories with a .nosearch file (which may be empty) in
them are ignored as well as their subdirectories. As your JDEE and XAE
packages have quite a few non-lisp subdirectories, it speeds up emacs enormously
if you could add these .nosearch files in all the immediate subdirectories of
jde and xae except those containing lisp code.
Cheers,
Karel
- Using JDEE w/ Windows Emacs 21.2.1 Andy Gallo
- Using JDEE w/ Windows Emacs 21.2.1 Paul Kinnucan
- Re: Using JDEE w/ Windows Emacs 21.2.1 Florentin Picioroaga
- Sprenger, Karel
