Re: [PATCH] Jikes bootclasspath

2004-11-11 Thread Len Trigg
Paul Kinnucan wrote:
 jde-jikes-system-classpath
 
 Compiler option used to specify system classpath:
  (*) -bootclasspath
  ( ) -classpath
  
  System classpath:
  INS DEL: /jre/lib/rt.jar
  INS

I had an initial look at this but got stuck in how to turn the
specified jarfiles into a classpath (including allowing dereferencing
the rt.jar w.r.t the currently selected JDK).  So, I've just KISS and
done the part that allows selecting the flag used to supply the
classes (there's probably also some copy-paste reduction possible, but
I'm not really oo-lisp familiar).

Cheers,
Len.



jde-compile.patch
Description: Binary data


Patch: File menu in recent CVS Emacs no longer called 'files

2004-11-11 Thread Paul Kinnucan
Jason Rumney writes:
  
  The File menu has recently been renamed from 'files to 'file in Emacs
  CVS. This has revealed a dependancy in JDEE that can easily be fixed
  by using menu-bar-file-menu (which has existed since at least 19.27)
  which also simplifies the code a little:
  

Hi Jason,

I have applied your patch to the JDEE source. Thanks for providing a
fix for this problem.

Paul

  
  *** jde.el-orig Fri Oct 29 00:43:02 2004
  --- jde.el  Wed Nov 10 23:09:59 2004
  ***
  *** 1247,1258 
  (when (fboundp 'add-submenu)
(add-submenu '(File) val Insert File...)))
  (let* ((mb (assq 'menu-bar global-map))
  -  (files (assq 'files mb))
 (menu (if (fboundp 'easy-menu-create-menu)
   (easy-menu-create-menu
(car val) (cdr val
 (menu-name (car val)))
  ! (define-key-after (cdr (cdr files)) [jde-new]
  (cons menu-name menu)
  'open-file)
  
  --- 1247,1257 
  (when (fboundp 'add-submenu)
(add-submenu '(File) val Insert File...)))
  (let* ((mb (assq 'menu-bar global-map))
 (menu (if (fboundp 'easy-menu-create-menu)
   (easy-menu-create-menu
(car val) (cdr val
 (menu-name (car val)))
  ! (define-key-after menu-bar-file-menu [jde-new]
  (cons menu-name menu)
  'open-file)