changeset 53854:252f42ef56fc

(tar-parse-octal-integer-safe): Add missing format string argument.
author Andreas Schwab <schwab@suse.de>
date Sun, 08 Feb 2004 22:30:54 +0000
parents 9f8bd1b673a8
children 7ebb0f4b6c1f
files lisp/tar-mode.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/tar-mode.el	Sun Feb 08 22:30:29 2004 +0000
+++ b/lisp/tar-mode.el	Sun Feb 08 22:30:54 2004 +0000
@@ -1,6 +1,6 @@
 ;;; tar-mode.el --- simple editing of tar files from GNU emacs
 
-;; Copyright (C) 1990,91,93,94,95,96,97,98,99,2000,2001
+;; Copyright (C) 1990,91,93,94,95,96,97,98,99,2000,01,2004
 ;; Free Software Foundation, Inc.
 
 ;; Author: Jamie Zawinski <jwz@lucid.com>
@@ -289,7 +289,7 @@
     (dotimes (i L)
        (if (or (< (aref string i) ?0)
 	       (> (aref string i) ?7))
-	   (error "`%c' is not an octal digit"))))
+	   (error "`%c' is not an octal digit" (aref string i)))))
   (tar-parse-octal-integer string))