diff lisp/net/zone-mode.el @ 63490:65b21147737a

(zone-mode-update-serial): Don't use `format' on `error' arguments.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 16 Jun 2005 14:40:46 +0000
parents df55e63482c4
children e32d37b16b0e
line wrap: on
line diff
--- a/lisp/net/zone-mode.el	Thu Jun 16 14:38:12 2005 +0000
+++ b/lisp/net/zone-mode.el	Thu Jun 16 14:40:46 2005 +0000
@@ -60,7 +60,7 @@
 	     (old-serial (concat old-date old-seq))
 	     (new-serial (concat cur-date new-seq)))
 	(if (string-lessp new-serial old-serial)
-	    (error (format "Serial numbers want to move backwards from %s to %s" old-serial new-serial))
+	    (error "Serial numbers want to move backwards from %s to %s" old-serial new-serial)
 	  (replace-match (concat cur-date new-seq old-flag) t t))))))
 
 ;;;###autoload