aboutsummaryrefslogtreecommitdiff
path: root/editors/psgml
diff options
context:
space:
mode:
authorShigeyuki Fukushima <shige@FreeBSD.org>2002-01-09 15:09:20 +0000
committerShigeyuki Fukushima <shige@FreeBSD.org>2002-01-09 15:09:20 +0000
commit6febe5e0d76f860fcf29a6a312e5d0f19b13def6 (patch)
treef430ef3c591aa70994c118a3cd3e0e38cd3bfafb /editors/psgml
parentad987f58f21dc38ae48c6694a1c71573a0dec44f (diff)
downloadports-6febe5e0d76f860fcf29a6a312e5d0f19b13def6.tar.gz
ports-6febe5e0d76f860fcf29a6a312e5d0f19b13def6.zip
Notes
Diffstat (limited to 'editors/psgml')
-rw-r--r--editors/psgml/files/psgml-startup.el.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/editors/psgml/files/psgml-startup.el.in b/editors/psgml/files/psgml-startup.el.in
index 3460d69ff988..759d4d7d7ff0 100644
--- a/editors/psgml/files/psgml-startup.el.in
+++ b/editors/psgml/files/psgml-startup.el.in
@@ -13,8 +13,10 @@
(autoload 'xml-mode "psgml" "Major mode to edit XML files." t)
(setq auto-mode-alist
- (append (list '("\\.s?html?\\'" . sgml-mode))
- auto-mode-alist))
+ (append '(
+ ("\\.s?html?\\'" . sgml-mode)
+ ("\\.xml\\'" . xml-mode)
+ ) auto-mode-alist))
(setq sgml-custom-dtd
'(("HTML" "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML//EN\">")