Hi Nic, 

You want to do something like the following from my .emacs.


;; PREPEND to load-path
;; ** if you don't do a prepend,  the newer versions
;; of emacs already contains speedbar so it will be found first which is 
;; not what you want. You instead want to find the one below first
(setq load-path (cons (expand-file-name "~/.elisp/speedbar-0.11.1") load-p
ath))
(setq load-path (cons (expand-file-name "~/.elisp/semantic-1.2.1") load-pa
th))

;; ADD TO THE END of load-path
(setq load-path
  (append load-path
    (mapcar 'expand-file-name
            '("~/.elisp/"
              "~/.elisp/javatools"
              "~/.elisp/jde-2.1.9/lisp"
             )
     )
    )
)

John Syre

> ----------
> From:         Kevin_D'[EMAIL PROTECTED][SMTP:Kevin_D'[EMAIL PROTECTED]]
> Sent:         Monday, July 17, 2000 8:23 AM
> To:   Nic Ferrier
> Cc:   [EMAIL PROTECTED]
> Subject:      Re: Speedbar problem with JDE-2.1.9
> 
> 
> 
> Nick -
> 
>      Do you still have the version of speedbar which comes with emacs?  That one
> will get loaded before before the one shipped with jde (they haven't merged the
> one with jde with the one that ships with emacs, I don't think).  There are two
> solutions:
> 
>      1. rm/cp the speedbar.el[c] in the distribution directories
>      2. change your loadpath to pick up the ones in the jde directory first
> 
> 

Reply via email to