aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/net')
-rw-r--r--lisp/net/zone-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/zone-mode.el b/lisp/net/zone-mode.el
index c7999616375..0189b2d1eca 100644
--- a/lisp/net/zone-mode.el
+++ b/lisp/net/zone-mode.el
@@ -60,7 +60,7 @@
60 (old-serial (concat old-date old-seq)) 60 (old-serial (concat old-date old-seq))
61 (new-serial (concat cur-date new-seq))) 61 (new-serial (concat cur-date new-seq)))
62 (if (string-lessp new-serial old-serial) 62 (if (string-lessp new-serial old-serial)
63 (error (format "Serial numbers want to move backwards from %s to %s" old-serial new-serial)) 63 (error "Serial numbers want to move backwards from %s to %s" old-serial new-serial)
64 (replace-match (concat cur-date new-seq old-flag) t t)))))) 64 (replace-match (concat cur-date new-seq old-flag) t t))))))
65 65
66;;;###autoload 66;;;###autoload