diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2002-01-09 15:09:20 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2002-01-09 15:09:20 +0000 |
commit | 6febe5e0d76f860fcf29a6a312e5d0f19b13def6 (patch) | |
tree | f430ef3c591aa70994c118a3cd3e0e38cd3bfafb /editors/psgml | |
parent | ad987f58f21dc38ae48c6694a1c71573a0dec44f (diff) |
Notes
Diffstat (limited to 'editors/psgml')
-rw-r--r-- | editors/psgml/files/psgml-startup.el.in | 6 |
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\">") |