summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2004-02-08 22:37:02 +0000
committerAndreas Schwab <schwab@suse.de>2004-02-08 22:37:02 +0000
commitbb3bd74c03ee10c78d0fd128577680cf31269929 (patch)
treeb6aa63a01f0e43e7b6e7b3ef9c8e3aac611649ec
parent45ad49ba3bbfdcce66f9d6c42a94fd7935498c2a (diff)
downloademacs-bb3bd74c03ee10c78d0fd128577680cf31269929.tar.gz
(format-decode): Fix format string.
-rw-r--r--lisp/format.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/format.el b/lisp/format.el
index aeadb68d60f..90047e98a6c 100644
--- a/lisp/format.el
+++ b/lisp/format.el
@@ -1,6 +1,6 @@
;;; format.el --- read and save files in multiple formats
-;; Copyright (c) 1994, 1995, 1997, 1999 Free Software Foundation
+;; Copyright (c) 1994, 1995, 1997, 1999, 2004 Free Software Foundation
;; Author: Boris Goldowsky <boris@gnu.org>
@@ -287,7 +287,7 @@ For most purposes, consider using `format-decode-region' instead."
(let ((do format) f)
(while do
(or (setq f (assq (car do) format-alist))
- (error "Unknown format" (car do)))
+ (error "Unknown format %s" (car do)))
;; Decode:
(if (nth 3 f)
(setq end (format-decode-run-method (nth 3 f) begin end)))