I can't seem to get this to work.  I need my code indentation to be based on
tabs, where a single tab is exactly four spaces wide.  The default for JDE
appears to be five and I can't seem to override it.  Here is the latest
thing I have tried:

(setq defer-loading-jde t)

(if defer-loading-jde
    (progn
      (autoload 'jde-mode "jde" "JDE mode." t)
      (setq auto-mode-alist
            (append
             '(("\\.java\\'" . jde-mode))
             auto-mode-alist)))
  (require 'jde))

(defun my-jde-mode-hook ()
  (setq c-basic-offset 4)
  (setq tab-width 4))

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


Any help would be greatly appriciated.

-Steve Maring
Tarpon Springs, FL

Reply via email to