X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/5f09724dbf7335f829e435ecf104071074e309e1..595195a10e5dd568bf249f5fb6778ae3d7037cd5:/lisp/textmodes/dns-mode.el?ds=inline diff --git a/lisp/textmodes/dns-mode.el b/lisp/textmodes/dns-mode.el index 45ebc07d8b..521b1f3358 100644 --- a/lisp/textmodes/dns-mode.el +++ b/lisp/textmodes/dns-mode.el @@ -1,7 +1,6 @@ ;;; dns-mode.el --- a mode for viewing/editing Domain Name System master files -;; Copyright (C) 2000, 2001, 2004, 2005, 2006, 2007, 2008, 2009, 2010 -;; Free Software Foundation, Inc. +;; Copyright (C) 2000-2001, 2004-2016 Free Software Foundation, Inc. ;; Author: Simon Josefsson ;; Keywords: DNS master zone file SOA comm @@ -28,11 +27,6 @@ ;; C-c C-s Increment SOA serial. ;; Understands YYYYMMDDNN, Unix time, and serial number formats, ;; and complains if it fail to find SOA serial. -;; -;; Put something similar to the following in your ~/.emacs to use this file: -;; -;; (load "~/path/to/dns-mode.el") -;; (setq auto-mode-alist (cons '("\\.soa\\'" . dns-mode) auto-mode-alist)) ;;; References: @@ -151,7 +145,6 @@ 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. @@ -223,8 +216,6 @@ This function is run from `before-save-hook'." ;; We return nil in case this is used in write-contents-functions. nil))) -;;;###autoload(add-to-list 'auto-mode-alist (purecopy '("\\.soa\\'" . dns-mode))) - (provide 'dns-mode) ;;; dns-mode.el ends here