summaryrefslogtreecommitdiff
path: root/lisp/net/zone-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/net/zone-mode.el')
-rw-r--r--lisp/net/zone-mode.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/net/zone-mode.el b/lisp/net/zone-mode.el
index 2a534d8a6d0..d1528aa1794 100644
--- a/lisp/net/zone-mode.el
+++ b/lisp/net/zone-mode.el
@@ -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))