diff options
| author | Andreas Schwab | 2004-02-08 22:37:02 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2004-02-08 22:37:02 +0000 |
| commit | bb3bd74c03ee10c78d0fd128577680cf31269929 (patch) | |
| tree | b6aa63a01f0e43e7b6e7b3ef9c8e3aac611649ec /lisp | |
| parent | 45ad49ba3bbfdcce66f9d6c42a94fd7935498c2a (diff) | |
| download | emacs-bb3bd74c03ee10c78d0fd128577680cf31269929.tar.gz emacs-bb3bd74c03ee10c78d0fd128577680cf31269929.zip | |
(format-decode): Fix format string.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/format.el | 4 |
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 @@ | |||
| 1 | ;;; format.el --- read and save files in multiple formats | 1 | ;;; format.el --- read and save files in multiple formats |
| 2 | 2 | ||
| 3 | ;; Copyright (c) 1994, 1995, 1997, 1999 Free Software Foundation | 3 | ;; Copyright (c) 1994, 1995, 1997, 1999, 2004 Free Software Foundation |
| 4 | 4 | ||
| 5 | ;; Author: Boris Goldowsky <boris@gnu.org> | 5 | ;; Author: Boris Goldowsky <boris@gnu.org> |
| 6 | 6 | ||
| @@ -287,7 +287,7 @@ For most purposes, consider using `format-decode-region' instead." | |||
| 287 | (let ((do format) f) | 287 | (let ((do format) f) |
| 288 | (while do | 288 | (while do |
| 289 | (or (setq f (assq (car do) format-alist)) | 289 | (or (setq f (assq (car do) format-alist)) |
| 290 | (error "Unknown format" (car do))) | 290 | (error "Unknown format %s" (car do))) |
| 291 | ;; Decode: | 291 | ;; Decode: |
| 292 | (if (nth 3 f) | 292 | (if (nth 3 f) |
| 293 | (setq end (format-decode-run-method (nth 3 f) begin end))) | 293 | (setq end (format-decode-run-method (nth 3 f) begin end))) |