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 | d788e66f549a83a087b7cb0f8d80545fe7a2e3fb (patch) | |
tree | 9eea49ae1e4125ba091701729d3618623cbdafd9 /app-emacs/nxml-mode/files | |
parent | Fixing #66445 (diff) | |
download | historical-d788e66f549a83a087b7cb0f8d80545fe7a2e3fb.tar.gz historical-d788e66f549a83a087b7cb0f8d80545fe7a2e3fb.tar.bz2 historical-d788e66f549a83a087b7cb0f8d80545fe7a2e3fb.zip |
Added .xsd to auto-mode-alist; bug #65836.
Diffstat (limited to 'app-emacs/nxml-mode/files')
-rw-r--r-- | app-emacs/nxml-mode/files/80nxml-mode-gentoo.el | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |