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
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')
-rw-r--r--app-emacs/nxml-mode/ChangeLog6
-rw-r--r--app-emacs/nxml-mode/Manifest14
-rw-r--r--app-emacs/nxml-mode/files/80nxml-mode-gentoo.el4
3 files changed, 14 insertions, 10 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/Manifest b/app-emacs/nxml-mode/Manifest
index aa5d44329d25..42e60eca61cd 100644
--- a/app-emacs/nxml-mode/Manifest
+++ b/app-emacs/nxml-mode/Manifest
@@ -1,18 +1,18 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
-MD5 768043138b5b9347bd420c85cfe68c5a ChangeLog 1151
+MD5 570d3035ebe77d1c0ed2e3d3b1b78382 ChangeLog 1277
MD5 978dcb27c1a4a35bdd750de737cb45cc metadata.xml 416
MD5 f52ee31b59c57e6d08ee5bf89d6e910a nxml-mode-20031031.ebuild 986
MD5 7f6a3cca650c0a68d6250b8fe23fb80a nxml-mode-20040910.ebuild 1088
-MD5 c1d6fe5318d3057d3259e6be46a54013 files/digest-nxml-mode-20040910 150
-MD5 eda0e96afdd42cd079edb9e4fd1e863a files/80nxml-mode-gentoo.el 229
+MD5 ca04cb4a463ca0758093963bbba71e02 files/80nxml-mode-gentoo.el 226
MD5 01cabe3620c0754d28c746f3ba6c0f10 files/digest-nxml-mode-20031031 70
+MD5 c1d6fe5318d3057d3259e6be46a54013 files/digest-nxml-mode-20040910 150
MD5 b6c0ed2561e83b43a58c2bd8cae88b55 files/nxml-mode-info-gentoo.patch 412
-----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.2.4 (Darwin)
+Version: GnuPG v1.2.4 (GNU/Linux)
-iD8DBQFBXnfHVWNWqTUmv+0RApRPAKCFHNuROdHRZ2pWAdObWNgc7GCuDQCgsUX+
-eHFLYF8eVdr0Icu83XXl7Sg=
-=4Ds8
+iD8DBQFBY5szVWNWqTUmv+0RAjJlAKCs+4mfDPXTqWBGkcnRWLCOIm2CZACfdQMS
+50jK67hsdUPQ+SLkyUpnFLQ=
+=NMaq
-----END PGP SIGNATURE-----
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))