summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMamoru Komachi <usata@gentoo.org>2004-10-06 07:19:50 +0000
committerMamoru Komachi <usata@gentoo.org>2004-10-06 07:19:50 +0000
commitd788e66f549a83a087b7cb0f8d80545fe7a2e3fb (patch)
tree9eea49ae1e4125ba091701729d3618623cbdafd9 /app-emacs/nxml-mode/files
parentFixing #66445 (diff)
downloadhistorical-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.el4
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))