Error in init file: Symbol's function definition is void: defgroup

Here is the significant portion of my .emacs:

;; to load proper speedbar!!
(setq load-path (cons (expand-file-name 
"/home/bhaidri/bin/jde-2.1.6/speedbar-0.11") load-path))
(setq load-path (cons (expand-file-name 
"/home/bhaidri/bin/jde-2.1.6/semantic-1.1") load-path))
(setq load-path (cons (expand-file-name "/home/bhaidri/bin/jde-2.1.6/lisp") 
load-path))

;; Tell Emacs to load the entire JDE package at startup (only once).
(require 'jde)

;; Sets the basic indentation for Java source files
;; to two spaces.
(defun my-jde-mode-hook ()
   (setq c-basic-offset 2))

(add-hook 'jde-mode-hook 'my-jde-mode-hook)


Reply via email to