Paul,

Thanks for the reply.  I cut my .emacs file down to just the following.  
I still get this error when I load any Java file.
 
 File mode specification error: (wrong-type-argument sequencep #<keymap 0 
entries 0x104a>)

Jon

New .emacs file.  

;; This .emacs file illustrates the minimul setup
;; required to run the JDE.

;; Set the debug option to enable a backtrace when a 
;; problem occurs.
(setq debug-on-error t)

;; Update the Emacs load-path to include the path to
;; the JDE and its required packages.  
(add-to-list 'load-path "/files3/jde/jde-2.1.9/lisp")
(add-to-list 'load-path "/files3/jde/semantic-1.2.1")
(add-to-list 'load-path "/files3/jde/speedbar-0.12")

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

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

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


   >Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
   >Delivered-To: mailing list [EMAIL PROTECTED]
   >X-Sender: [EMAIL PROTECTED]
   >Date: Thu, 03 Aug 2000 16:24:48 +0000
   >To: Jonathan Berry - SunSoft CTE <[EMAIL PROTECTED]>, 
[EMAIL PROTECTED]
   >From: Paul Kinnucan <[EMAIL PROTECTED]>
   >Subject: Re: Error when loading Java source files
   >Mime-Version: 1.0
   >
   >At 03:10 PM 8/3/00 -0400, Jonathan Berry - SunSoft CTE wrote:
   >>Paul,
   >>
   >>I did include a trouble report the first time I posted the problem.  I 
   >>didn't get any responses, so I tried a shorter message the second time.
   >>
   >>Below is the email with the trouble report.
   >>
   >>Thanks in advance for any help you can provide,
   >>Jon
   >>
   >
   >Hi Jonathan,
   >
   >The error you are getting typically is the result of some jde customization
   >variable being set incorrectly. When a user opens a Java file, the JDE
   >rests the JDE variables to any values in the user's .emacs file (or in your
   >case a separate options file). If any of the values stored in the .emacs or
   >options file is of an unacceptable type, a Lisp error can occur.
   >Unfortunately, I cannot examine your options as they were not included in
   >the bug report (not your fault).
   >
   >My suggestion is to start with a mininimal .emacs file (no options) and
   >keep adding stuff until the error occurs.
   >
   >- Paul

Reply via email to