diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-10-06 07:19:50 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-10-06 07:19:50 +0000 |
commit | 5dca531183a3817c8434b09f0cfa6a5e055090b0 (patch) | |
tree | 7d9a4a2b701a9b1b7710dbf2396e9181ecac17de /app-emacs | |
parent | Fixing #66445 (Manifest recommit) (diff) | |
download | gentoo-2-5dca531183a3817c8434b09f0cfa6a5e055090b0.tar.gz gentoo-2-5dca531183a3817c8434b09f0cfa6a5e055090b0.tar.bz2 gentoo-2-5dca531183a3817c8434b09f0cfa6a5e055090b0.zip |
Added .xsd to auto-mode-alist; bug #65836.
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/nxml-mode/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/nxml-mode/files/80nxml-mode-gentoo.el | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-emacs/nxml-mode/ChangeLog b/app-emacs/nxml-mode/ChangeLog index 395d9caa8842..7a6099867c6c 100644 --- a/app-emacs/nxml-mode/ChangeLog +++ b/app-emacs/nxml-mode/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/nxml-mode # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-mode/ChangeLog,v 1.6 2004/10/02 09:41:16 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/nxml-mode/ChangeLog,v 1.7 2004/10/06 07:19:49 usata Exp $ + + 06 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> + files/80nxml-mode-gentoo.el: + Added .xsd to auto-mode-alist; bug #65836. *nxml-mode-20040910 (02 Oct 2004) diff --git a/app-emacs/nxml-mode/files/80nxml-mode-gentoo.el b/app-emacs/nxml-mode/files/80nxml-mode-gentoo.el index d0b42bd678a4..dd9dd81c816c 100644 --- a/app-emacs/nxml-mode/files/80nxml-mode-gentoo.el +++ b/app-emacs/nxml-mode/files/80nxml-mode-gentoo.el @@ -1,9 +1,9 @@ ;;; nxml site-lisp configuration -(setq load-path (cons "@SITELISP@" load-path)) +(add-to-list 'load-path "@SITELISP@") (load "@SITELISP@/rng-auto.el") (setq auto-mode-alist - (cons '("\\.\\(xml\\|xsl\\|rng\\|xhtml\\)\\'" . nxml-mode) + (cons '("\\.\\(xml\\|xsl\\|xsd\\|rng\\|xhtml\\)\\'" . nxml-mode) auto-mode-alist)) |