From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Fritz Kunze" Subject: org error under vista - File mode specification error: (error "Required feature `mml' was not provided") Date: Wed, 23 Jul 2008 08:34:16 -0700 Message-ID: <4797c47a0807230834y3301951eh259c7f615c37f0c4@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0215097104==" Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KLgM8-0005zv-BM for emacs-orgmode@gnu.org; Wed, 23 Jul 2008 11:34:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KLgM6-0005zh-Lf for emacs-orgmode@gnu.org; Wed, 23 Jul 2008 11:34:19 -0400 Received: from [199.232.76.173] (port=45968 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KLgM6-0005ze-IZ for emacs-orgmode@gnu.org; Wed, 23 Jul 2008 11:34:18 -0400 Received: from wr-out-0506.google.com ([64.233.184.224]:36698) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KLgM6-0004uf-1R for emacs-orgmode@gnu.org; Wed, 23 Jul 2008 11:34:18 -0400 Received: by wr-out-0506.google.com with SMTP id c30so1386268wra.14 for ; Wed, 23 Jul 2008 08:34:17 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --===============0215097104== Content-Type: multipart/alternative; boundary="----=_Part_7161_2866190.1216827256846" ------=_Part_7161_2866190.1216827256846 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, I am just learning how to use org mode. I am trying to run the latest standard distribution - *org-6.05*b. I get the following error when trying to load it: --- error message Loading c:/bin/mksmin/odistr/org-6.05b/lisp/org.el (source)... File mode specification error: (error "Required feature `mml' was not provided") Loading info...done Info-index: No `mml' in index ---- end error message (I am on a 32-bit windows machine running vista - BTW a windows upgrade installer would be most helpful... ) ---- My emacs version: emacs-version is a variable defined in `version.el'. Its value is "22.2.1" ----- ----- Here is the org-specific code I use in my .emacs file: ;; Org-mode settings ;; you can simply run Org directly from the distribution ;; directory by adding the lisp subdirectory to the Emacs ;; load path. To do this, add the following line to ;; .emacs: ;; (setq load-path (cons "~/path/to/orgdir/lisp" load-path)) ;; If you plan to use code from the contrib subdirectory, ;; do a similar step for this directory: ;; (setq load-path (cons "~/path/to/orgdir/contrib/lisp" load-path)) (setq load-path (cons (w32-short-file-name "C:/bin/mksmin/odistr/org-6.05b/lisp") load-path)) (setq load-path (cons (w32-short-file-name "C:/bin/mksmin/odistrs/org-6.05b/contrib/lisp") load-path)) ;; The following lines are always needed. Choose your own keys. (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) ;; ;; Furthermore, you must activate font-lock-mode in Org buffers, because significant functionality depends on font-locking being active. ;; You can do this with either one of the following two lines ;; (global-font-lock-mode 1) ; for all buffers ;; (add-hook 'org-mode-hook 'turn-on-font-lock) ; Org buffers only ;; ;; (add-hook 'org-mode-hook 'turn-on-font-lock) ; Org buffers only (global-font-lock-mode 1) ; for all buffers ;; ;; If you are using CuaMode, you might want to disable the Org Mode keybindings for Shift+arrow keys by adding this line: ;; (setq org-CUA-compatible t) ;; With this change, the following replacements: ;; ;; ;; ;; * S-RET --> C-S-RET ;; * S-up --> M-p ;; * S-down --> M-n ;; * S-left --> M-- ;; * S-right --> M-+ (setq org-CUA-compatible t) ---------------- end of code in my .emacs file ------=_Part_7161_2866190.1216827256846 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi,
  I am just learning how to use org mode.  I am trying to run the latest standard distribution - org-6.05b.  I get the following error when trying to load it:

--- error message
Loading c:/bin/mksmin/odistr/org-6.05b/lisp/org.el (source)...
File mode specification error: (error "Required feature `mml' was not provided")
Loading info...done
Info-index: No `mml' in index

---- end error message

(I am on a 32-bit windows machine running vista - BTW a windows upgrade installer would be most helpful... )


---- My emacs version:
emacs-version is a variable defined in `version.el'.
Its value is "22.2.1"

-----

----- Here is the org-specific code I use in my .emacs file:

;; Org-mode settings
;; you can simply run Org directly from the distribution
;; directory by adding the lisp subdirectory to the Emacs
;; load path.  To do this, add the following line to
;; .emacs:

;;    (setq load-path (cons "~/path/to/orgdir/lisp" load-path))

;; If you plan to use code from the contrib subdirectory,
;; do a similar step for this directory:

;;     (setq load-path (cons "~/path/to/orgdir/contrib/lisp" load-path))

(setq load-path (cons (w32-short-file-name "C:/bin/mksmin/odistr/org-6.05b/lisp") load-path))
(setq load-path (cons (w32-short-file-name "C:/bin/mksmin/odistrs/org-6.05b/contrib/lisp") load-path))


;; The following lines are always needed.  Choose your own keys.
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
;;
;; Furthermore, you must activate font-lock-mode in Org buffers, because significant functionality depends on font-locking being active.
;; You can do this with either one of the following two lines
;;   (global-font-lock-mode 1)                     ; for all buffers
;;   (add-hook 'org-mode-hook 'turn-on-font-lock)  ; Org buffers only
;;
;; (add-hook 'org-mode-hook 'turn-on-font-lock)  ; Org buffers only

(global-font-lock-mode 1)                     ; for all buffers

;;
;; If you are using CuaMode, you might want to disable the Org Mode keybindings for Shift+arrow keys by adding this line:
;; (setq org-CUA-compatible t)
;; With this change, the following replacements:
;;
;;
;;
;;  * S-RET --> C-S-RET
;;  * S-up --> M-p
;;  * S-down --> M-n
;;  * S-left --> M--
;;  * S-right --> M-+

(setq org-CUA-compatible t)

----------------  end of code in my .emacs file
------=_Part_7161_2866190.1216827256846-- --===============0215097104== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode --===============0215097104==--