Running Windows NT4.0, GNU Emacs 21.2.1, JDE 2.3.3, Ant 1.5.1
I get the following in the compilation buffer
cd ~/Documents/Projects/EVR1500/com/avocent/gui/panels/
ant -Dant.home=c:/ant1_5_1 -buildfile 'c:/Documents and
Settings/DHALL/Documents/Projects/EVR1500/build.xml' -emacs jar
Buildfile: 'c:\Documents does not exist!
Build failed
Previous version (JDE 2.3.2) worked fine.
Hacked around a bit, although I'm not terribly familiar with lisp, and
found this starting on or around line 248 of jde-ant.el
(delimiter (if (or
(string= (car jde-ant-invocation-method) "Java")
(and (string= (car jde-ant-invocation-method)
"Script")
(not (featurep 'xemacs))))
"'"
"\""))
The corresponding lines in the 1.54 revision of the same file are
(delimiter (if (string= (car jde-ant-invocation-method) "Java")
"'"
"\""))
When I replace the new version with the old, everything seems to work.
I tend to use Script, as even with the old code, the other two choices do
not work. I can get the 'Java' choice to work by replacing this with
(delimiter "\"")
Dave Hall