* textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
* files.el (auto-mode-alist): Remove redundant entries.
This commit is contained in:
parent
59d93e8770
commit
05623156f3
3 changed files with 4 additions and 2 deletions
|
@ -4,6 +4,9 @@
|
|||
|
||||
2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* textmodes/dns-mode.el (auto-mode-alist): Add entry for .zone files.
|
||||
* files.el (auto-mode-alist): Remove redundant entries.
|
||||
|
||||
* files.el (auto-save-mode): Move to simple.el to fix bootstrap.
|
||||
* simple.el (auto-save-mode): Move from files.el.
|
||||
* minibuffer.el (completion--common-suffix): Fix copy&paste error.
|
||||
|
|
|
@ -2260,7 +2260,6 @@ ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|7Z\\)\\'" . archive-mode)
|
|||
;; /tmp/Re.... or Message
|
||||
("\\`/tmp/Re" . text-mode)
|
||||
("/Message[0-9]*\\'" . text-mode)
|
||||
("\\.zone\\'" . zone-mode)
|
||||
;; some news reader is reported to use this
|
||||
("\\`/tmp/fol/" . text-mode)
|
||||
("\\.oak\\'" . scheme-mode)
|
||||
|
@ -2294,7 +2293,6 @@ ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|7Z\\)\\'" . archive-mode)
|
|||
("#\\*mail\\*" . mail-mode)
|
||||
("\\.g\\'" . antlr-mode)
|
||||
("\\.ses\\'" . ses-mode)
|
||||
("\\.\\(soa\\|zone\\)\\'" . dns-mode)
|
||||
("\\.docbook\\'" . sgml-mode)
|
||||
("\\.com\\'" . dcl-mode)
|
||||
("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode)
|
||||
|
|
|
@ -151,6 +151,7 @@ Turning on DNS mode runs `dns-mode-hook'."
|
|||
(easy-menu-add dns-mode-menu dns-mode-map))
|
||||
|
||||
;;;###autoload (defalias 'zone-mode 'dns-mode)
|
||||
;;;###autoload (add-to-list 'auto-mode-alist (purecopy '("\\.zone\\'" . zone-mode)))
|
||||
|
||||
;; Tools.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue