help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

nxml-mode autoload?


From: Arturius mac Aidan
Subject: nxml-mode autoload?
Date: Sat, 29 Oct 2005 22:40:39 -0400
User-agent: KNode/0.9.2

These entries are in my .emacs
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; autoinsert.el
;;http://www.linuxgazette.com/issue39/marsden.html

(setq auto-mode-alist
      (append '(("\\.h$" . c++-mode)
                ("\\.cpp\\'" . c++-mode)
                ("\\.moc\\'" . c++-mode))
              auto-mode-alist))

(add-hook 'find-file-hooks 'auto-insert)
(setq-default auto-insert-query nil)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; www.thaiopensource.com/nxml-mode
;; per the ~/.emacs.d/lisp/nxml-mode-20041004/README
(load "~/.emacs.d/lisp/nxml-mode-20041004/rng-auto.el")
(setq auto-mode-alist
      (append '(("\\.xml\\'" . nxml-mode)
                ("\\.xsl\\'" . nxml-mode)
                ("\\.rng\\'" . nxml-mode)
                ("\\.xhtml\\'" . nxml-mode))
              auto-mode-alist))
;;;;;;;;;;;;;;;;;EOF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


The first auto-mode-alist entries (for c++) work as expected.  the ones for
nxml-mode do not work.  I can, however, start the mode with `M-x
nxml-mode<ret>'. Does anybody know why this is not working?


M-x version<ret>
GNU Emacs 22.0.50.2 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of
2005-10-18 on ljosalfr
-- 
.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]