Some fixes to follow coding conventions.
[bpt/emacs.git] / lisp / net / zone-mode.el
index 2a534d8..d1528aa 100644 (file)
@@ -1,4 +1,4 @@
-;;; zone-mode.el -- major mode for editing DNS zone files.
+;;; zone-mode.el --- major mode for editing DNS zone files
 
 ;; Copyright (C) 1998 Free Software Foundation, Inc.
 
@@ -22,6 +22,8 @@
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
 ;;;
 ;;; See the comments in ``define-derived-mode zone-mode''
 ;;; (the last function in this file)
@@ -52,7 +54,7 @@
               ((not (string= old-date cur-date))
                "00") ;; reset sequeence number
               ((>= old-seq-num 99)
-               (error "Serial number's sequenece cannot increment beyond 99."))
+               (error "Serial number's sequenece cannot increment beyond 99"))
               (t
                (format "%02d" (1+ old-seq-num)))))
             (old-serial (concat old-date old-seq))