Hi,

Today I downloaded all the relevant prerequisites and JDEE and
attempted to install it on CentOS 5.4 (64-bit Linux).  My .emacs looks
like this:


-- ;;; Load paths
(defun add-to-load-path (path)
  "If it exists, add PATH to the LOAD-PATH."
  (if (file-exists-p path)
      (add-to-list 'load-path path)))
(mapc #'add-to-load-path
      '("~/.emacs.d"
        "~/.elisp/speedbar"
        "~/.elisp/eieio"
        "~/.elisp/semantic"
        "~/.elisp/elib"
        "~/.elisp/cedet/common"
        "~/.elisp/jde/lisp"))

(require 'ps-ccrypt "ps-ccrypt")
;(require 'jka-compr-ccrypt "jka-compr-ccrypt")

;;; Prevent line wrapping and display a dollar sign at the end of the
visual part of a line, when a line has been truncated:
(set-default 'truncate-lines t)

;;; Enable syntax highlighting
(global-font-lock-mode t)
(setq font-lock-maximum-decoration t)

(setq-default c-basic-offset 8
              tab-width 8
              indent-tabs-mode t)

(setq java-mode-hook '(lambda () (c-toggle-auto-hungry-state 1)))
(transient-mark-mode t)

;;; Add bindings to make it easier to use speedbar:
(autoload 'speedbar-frame-mode "speedbar" "Popup a speedbar frame" t)
(autoload 'speedbar-get-focus "speedbar" "Jump to speedbar frame" t)

;;; Enable "semantic":
(setq semantic-load-turn-everything-on t)
(require 'semantic-load)

(load-file (expand-file-name "~/.elisp/cedet/common/cedet.el"))
(require 'jde)
--------------------------------------------------------------------------------

The error message/traceback that I got is:

Debugger entered--Lisp error: (void-variable semantic-format-tag-custom-list)
  (custom-declare-variable (quote
semantic-sb-button-format-tag-function) (quote (quote
semantic-format-tag-abbreviate)) "*Function called to create$
  (defcustom semantic-sb-button-format-tag-function (quote
semantic-format-tag-abbreviate) "*Function called to create the text
for a but from a tok$
  eval-buffer(#<buffer  *load*<7>> nil "semantic-sb" nil t)
  
load-with-code-conversion("/cellar/users/ruschein/.elisp/cedet/semantic/semantic-sb.el"
"semantic-sb" nil t)
  require(semantic-sb)
  #[nil "���!\207" [require semantic-sb] 2]()
  run-hooks(speedbar-load-hook)
  eval-buffer(#<buffer  *load*<6>> nil "speedbar" nil t)
  
load-with-code-conversion("/cellar/users/ruschein/.elisp/cedet/speedbar/speedbar.el"
"speedbar" nil t)
  require(speedbar nil)
  inversion-require(speedbar "0.15beta1")
  (progn (inversion-require (quote speedbar) "0.15beta1"))
  (eval-and-compile (inversion-require (quote speedbar) "0.15beta1"))
  eval-buffer(#<buffer  *load*<5>> nil "semantic-sb" nil t)
  
load-with-code-conversion("/cellar/users/ruschein/.elisp/cedet/semantic/semantic-sb.el"
"semantic-sb" nil t)
  require(semantic-sb)
  eval-buffer(#<buffer  *load*<4>> nil "jde-parse" nil t)
  
load-with-code-conversion("/cellar/users/ruschein/.elisp/jde/lisp/jde-parse.el"
"jde-parse" nil t)
  require(jde-parse)
  eval-buffer(#<buffer  *load*<3>> nil "jde-db" nil t)
  load-with-code-conversion("/cellar/users/ruschein/.elisp/jde/lisp/jde-db.el"
"jde-db" nil t)
--------------------------------------------------------------------------------------------------------------------------

And my ~/.elisp directory looks like this:

cedet@            eieio@       elib/      info  jde-2.3.5.1/
semantic-1.4.4/  speedbar-0.14beta4/
cedet-1.0beta3b/  eieio-0.17/  jde@  semantic@     speedbar@
----------------------------------------------------------------------------------------------------------------------------


Any help would be greatly appreciated!

TIA,
--
Johannes

Obligatory current favourite quotes:

"I have more confidence in the methods of science, based on the amazing
record of science and its ability over the centuries to answer
unanswerable questions, than I do in the methods of faith (what are they?)."
 -- David J. Gross "Physics Nobel Laureate"

"Atheism is a religion to the same extent that not collecting stamps is a
 hobby."
 -- seen on Slashdot.org

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
jdee-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jdee-users

Reply via email to