# HG changeset patch # User Andreas Schwab # Date 1076279822 0 # Node ID a1177e068d43ad3bcfe7f14290b54c2428f0f04e # Parent 8af44ca54bdf07d9e8d4e9829fcdd1abb3f1803c (format-decode): Fix format string. diff -r 8af44ca54bdf -r a1177e068d43 lisp/format.el --- a/lisp/format.el Sun Feb 08 22:36:31 2004 +0000 +++ b/lisp/format.el Sun Feb 08 22:37:02 2004 +0000 @@ -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 @@ -287,7 +287,7 @@ (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)))