* org error under vista - File mode specification error: (error "Required feature `mml' was not provided")
@ 2008-07-23 15:34 Fritz Kunze
2008-07-23 17:08 ` Carsten Dominik
0 siblings, 1 reply; 3+ messages in thread
From: Fritz Kunze @ 2008-07-23 15:34 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 2435 bytes --]
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
[-- Attachment #1.2: Type: text/html, Size: 3166 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
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
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: org error under vista - File mode specification error: (error "Required feature `mml' was not provided")
2008-07-23 15:34 org error under vista - File mode specification error: (error "Required feature `mml' was not provided") Fritz Kunze
@ 2008-07-23 17:08 ` Carsten Dominik
2008-07-24 6:57 ` Giovanni Ridolfi
0 siblings, 1 reply; 3+ messages in thread
From: Carsten Dominik @ 2008-07-23 17:08 UTC (permalink / raw)
To: Fritz Kunze; +Cc: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 3018 bytes --]
The string "mml" does not occur anywhere in the Org distribution, so I
have no
idea what might be causing this. Maybe you can make a backtrace?
- Carsten
On Jul 23, 2008, at 8:34 AM, Fritz Kunze wrote:
> 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
> _______________________________________________
> 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
[-- Attachment #1.2: Type: text/html, Size: 3811 bytes --]
[-- Attachment #2: Type: text/plain, Size: 204 bytes --]
_______________________________________________
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
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: org error under vista - File mode specification error: (error "Required feature `mml' was not provided")
2008-07-23 17:08 ` Carsten Dominik
@ 2008-07-24 6:57 ` Giovanni Ridolfi
0 siblings, 0 replies; 3+ messages in thread
From: Giovanni Ridolfi @ 2008-07-24 6:57 UTC (permalink / raw)
To: emacs-orgmode
-- Mer 23/7/08, Carsten Dominik <dominik@uva.nl> ha scritto:
> The string "mml" does not occur anywhere in the
> Org distribution
"The MML language is very simple. It looks a bit like an SGML application, but it's not." (emacs manual)
Please, Fritz , chek your MML installation, perhaps in your .emacs
you don't have a
(require ' mml)
but you do define some fuction for it.
(setq mml-function-unknown t)
> Fritz Kunze wrote:
> On Jul 23, 2008, at 8:34 AM, unze wrote:
> > (I am on a 32-bit windows machine running vista - BTW
> a windows
> > upgrade installer would be most helpful... )
if you dig the list archives, you'll find some nice triks,
and batch files, that have been proposed to upgrade org-mode
under Wndws.
Cheers,
Giovanni
Posta, news, sport, oroscopo: tutto in una sola pagina.
Crea l'home page che piace a te!
www.yahoo.it/latuapagina
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-07-24 6:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-23 15:34 org error under vista - File mode specification error: (error "Required feature `mml' was not provided") Fritz Kunze
2008-07-23 17:08 ` Carsten Dominik
2008-07-24 6:57 ` Giovanni Ridolfi
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).