Hi all
The following patch to jde-complete.el (jde beta-2.1.6beta17) works for me at
least under the following environemnt:
System: WinNT 4.0/SP3
Cygwin B20.1 with egcs-2.91.66
- cygwin1.dll - cygwin1-19990929.dll.gz
- everything mounted binary,
- CYGWIN = tty title binmode ntea nontsec
Software: Xemacs-21.1.2 - http://www.xemacs.org/
__________________________________________________
diff jde-complete.el.orig jde-complete.el
187c187
< "String[] lst = new String[" (length import) "];\n"
---
> "String[] lst = new String[" (int-to-string (length import)) "];\n"
191c191
< (concat "lst[" count "]=\""
---
> (concat "lst[" (int-to-string count) "]=\""
__________________________________________________
Also the following patch let me browse the Java docs with native Netscape
from cygwin-Xemacs:
diff jde-help.el.orig jde-help.el
171c171,173
< (browse-url (format "file://%s" doc-file))))
---
> (if (eq system-type 'cygwin32)
> (browse-url (concat (getenv "HOMEDRIVE") doc-file))
> (browse-url (format "file://%s" doc-file)))))
__________________________________________________
Ciao
Volker