Hello,

    I've recently installe the JDE. It works fine, but I have a couple
of problems:

    1.  I can browse only files using the speedbar. When I press the +
button I get the following message:

        Symbol's function definition is
void: speedbar-fetch-dynamic-imenu

    2.  When I set jde-run-option-application-args in my .emacs the
arguments are not passed to the application, but when I enter the
argumens interactively(jde-run-read-app-arg is true) it works fine.

    I use the following environment:

        Solaris2.5.1
        JDE 2.1.6beta2
        XEmacs20.4
        My .emacs is attached.

    Thank you for your help

            Vitali




(setq minibuffer-max-depth nil)
(custom-set-variables
 '(Info-additional-search-directory-list (quote ("/usr/local2/info" 
"/usr/local2/src/gnu/libg++-2.7.1/libg++")))
 '(jde-run-read-app-args t)
 '(jde-global-classpath (quote ("/home/vitali/java")))
 '(tab-width 4)
 '(c-default-style "linux")
 '(toolbar-news-reader (quote gnus))
 '(toolbar-mail-reader (quote gnus))
 '(jde-compile-option-command-line-args "-g")
 '(jde-compile-option-classpath (quote ("/home/vitali/java")))
 '(line-number-mode t)
 '(jde-run-option-application-args (quote ("-root /home/vitali/java/Jigsaw")))
 '(jde-db-source-directories (quote ("/home/vitali/java")))
 '(user-mail-address "[EMAIL PROTECTED]" t)
 '(query-user-mail-address nil))
(custom-set-faces
 '(font-lock-comment-face ((t (:foreground "gray35"))) t))
(require 'tex-site)

(add-hook 'c-mode-hook 'my-c-mode-hook)
(add-hook 'c++-mode-hook 'my-c-mode-hook)
(add-hook 'java-mode-hook 'my-java-mode-hook)


(defun my-c-mode-hook ()
  (interactive)
  (setq c-basic-offset 4)
  (set-face-foreground 'font-lock-keyword-face "red4")
  (set-face-foreground 'font-lock-comment-face "gray35")
  )
(defun my-java-mode-hook ()
  (interactive)
  (my-c-mode-hook)
  (setq compile-command "make")
  )


;; Options Menu Settings
;; =====================
(cond
 ((and (string-match "XEmacs" emacs-version)
       (boundp 'emacs-major-version)
       (or (and
            (= emacs-major-version 19)
            (>= emacs-minor-version 14))
           (= emacs-major-version 20))
       (fboundp 'load-options-file))
  (load-options-file "/home/vitali/.xemacs-options")))
;; ============================
;; End of Options Menu Settings



;;; load JDE
(setq load-path 
          (nconc '("~/elisp/jde-2.1.6") 
                         load-path))
(require 'jde)

(put 'narrow-to-region 'disabled nil)
begin:vcard 
n:Sokhin;Vitali
tel;fax:972-4-8323041 (for Vitali Sokhin)
tel;work:972-4-8293220
x-mozilla-html:FALSE
org:Technion, IIT;Computer Networks Laboratory
adr:;;;;;;
version:2.1
email;internet:[EMAIL PROTECTED]
note:Room: cs378 (Fishbach Building)
x-mozilla-cpt:;26000
fn:Vitali Sokhin
end:vcard

Reply via email to