diff options
| author | Juanma Barranquero | 2005-06-16 14:40:46 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-16 14:40:46 +0000 |
| commit | ec3ec9cc722cafd2f6ff51d0290404eee48284e5 (patch) | |
| tree | 5c3031b63056a94bf17373c13400693da93d2fdb /lisp/net | |
| parent | 2ae2e81e9b38bd414fd902e2bdeac1de877d0c22 (diff) | |
| download | emacs-ec3ec9cc722cafd2f6ff51d0290404eee48284e5.tar.gz emacs-ec3ec9cc722cafd2f6ff51d0290404eee48284e5.zip | |
(zone-mode-update-serial): Don't use `format' on `error' arguments.
Diffstat (limited to 'lisp/net')
| -rw-r--r-- | lisp/net/zone-mode.el | 2 |
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 |