]> git.eshelyaron.com Git - emacs.git/commitdiff
(format-decode): Fix format string.
authorAndreas Schwab <schwab@suse.de>
Sun, 8 Feb 2004 22:37:02 +0000 (22:37 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 8 Feb 2004 22:37:02 +0000 (22:37 +0000)
lisp/format.el

index aeadb68d60fbcb8d1e6c789a62c8c0c2753d5e88..90047e98a6cfcdd7c65968de32af55a37f4ac892 100644 (file)
@@ -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)))