Mercurial > emacs
changeset 53862:a1177e068d43
(format-decode): Fix format string.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sun, 08 Feb 2004 22:37:02 +0000 |
parents | 8af44ca54bdf |
children | 3c9fc6a0a6db |
files | lisp/format.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <boris@gnu.org> @@ -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)))