mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
(format-decode): Fix format string.
This commit is contained in:
parent
45ad49ba3b
commit
bb3bd74c03
1 changed files with 2 additions and 2 deletions
|
|
@ -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)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue