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 | |
parent | add vis5d+ 1.2.1 (diff) |
Add xml-mode to auto-mode-alist.
PR: ports/33573
Submitted by: Kimura Fuyuki <fuyuki@mj.0038.net>
Notes
Notes:
svn path=/head/; revision=52817
Diffstat (limited to 'editors')
-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\">") |