Christian Schmitt writes:
>
> Please enter the details of your bug report here
>
> In our project the jar files moved one folder down in the file
> system. Since then XEmacs crashes whenever I try to do anything that
> involves usage of the classpath, i.e. opening a BSH buffer or doing
> JavaDoc generation. Also typing C-c C-v C-y crashes XEmacs big time.
> I'm suspecting it's got something to do with the length of the
> jde-global-classpath variable. When I shorten it to only one or two
> jar files JDE works OK.
You have set jde-global-classpath incorrectly. You have set
it to be a string of semicolon;separated paths. It's supposed
to be a list of strings with each string being a path, i.e.
'("path1" "path2")
not
'("path1;path2")
This is specified in the doc for jde-global-classpath:
"Specify a common classpath for compile, run, and debug commands.
Use this variable if you want to the JDE to use the same classpath for
compiling, running,and debugging an application. Note that the value
of this variable is a list of strings, each of which specifies a
path. The JDE converts this list to a colon- or semicolon-separated
list before inserting in the compiler or vm command line."
- Paul