Does anybody know why I am missing the library eldoc? Or where I'm could get it? I get theese errors when I start emacs with -debug-init I have installed JDE: (but cant get it to work) Below is my output from -debug-init and my .emacs file * output - debug-init ------------------------------------------- Signaling: (file-error "Cannot open load file" "eldoc") signal(file-error ("Cannot open load file" "eldoc")) load("eldoc" nil t nil) require(eldoc) (progn (require (quote eldoc)) (require (quote semantic-ctxt))) ) (eval-when-compile (require (quote eldoc)) (require (quote semantic-ctxt))) ) load-internal("senator" nil t nil undecided) load("senator" nil t nil) require(senator) (progn (require (quote speedbar)) (require (quote senator))) ) (eval-when-compile (require (quote speedbar)) (require (quote senator))) ) load-internal("semantic-bnf" nil t nil undecided) load("semantic-bnf" nil t nil) require(semantic-bnf) load-internal("jde-parse" nil t nil undecided) load("jde-parse" nil t nil) require(jde-parse) load-internal("jde-db" nil t nil undecided) load("jde-db" nil t nil) require(jde-db) load-internal("jde" nil t nil undecided) load("jde" nil t nil) require(jde) load-internal("~\\.emacs" t t t undecided) load("~\\.emacs" t t t) load-user-init-file("") load-init-file() command-line() normal-top-level() ------------------------------------------- * This is my .emacs file: (setq load-path (cons "~/emacsdir" load-path)) ;; Eieio (add-to-list 'load-path "~/emacsdir/eieio-0.16") ;; end Eioio ;; Speedbar (add-to-list 'load-path "~/emacsdir/speedbar-0.13a") (autoload 'speedbar-frame-mode "speedbar" "Popup a speedbar frame" t) (autoload 'speedbar-get-focus "speedbar" "Jump to speedbar frame" t) ;; End - Speedbar ;; Semantic (add-to-list 'load-path "~/emacsdir/semantic-1.4beta5") (setq semantic-load-turn-everything-on t) (require 'semantic-load) ;; end - semantic ;; elib GNU Emacs lisp (add-to-list 'load-path "~/emacsdir/elib-1.0") ;; end - elib GNU Emacs lisp ;; JDE (add-to-list 'load-path "~/emacsdir/jde-2.2.8/lisp") (require 'jde) ;; End - Jde (setq tab-width 4) (setq default-tab-width 4) (setq standard-indent 4) (setq user-mail-address "joakims@JOAKIMS") (setq query-user-mail-address nil) (standard-display-european t) ; turn on ��� (setq make-backup-files nil) ; turn off backupfiles (column-number-mode t) ; shows column-position in bar (line-number-mode t) ; shows line-position in bar (font-lock-mode t) ; shows colors (global-set-key [(control tab)] 'dabbrev-expand) ;; Autoload f�r jsp till html (setq auto-mode-alist (append '(("\\.\\(htm\\|html\\|jsp\\|asp\\)$" . html3-mode)) auto-mode-alist)) ;; Load html-helper-mode (autoload 'hhm-config "hhm-config" "hhm-config" t) (autoload 'html-helper-mode "html-helper-mode" "html-helper-mode" t) ;; Load VB mode on Basic stuff (autoload 'visual-basic-mode "visual-basic-mode" "Visual Basic mode." t) (setq auto-mode-alist (append '(("\\.\\(frm\\|bas\\|cls\\|asp\\|inc\\|vbs\\)$" . visual-basic-mode)) auto-mode-alist)) ;;; Ps-print setup (setq ps-print-color-p nil) (setq ps-paper-type 'ps-a4) (put 'eval-expression 'disabled nil) (put 'upcase-region 'disabled nil) (put 'downcase-region 'disabled nil) F� ut mesta m�jliga av webben. H�mta MSN Explorer UTAN KOSTNAD p�: http://explorer.msn.se |
