]> git.eshelyaron.com Git - emacs.git/commitdiff
(tar-parse-octal-integer-safe): Add missing format
authorAndreas Schwab <schwab@suse.de>
Sun, 8 Feb 2004 22:30:54 +0000 (22:30 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 8 Feb 2004 22:30:54 +0000 (22:30 +0000)
string argument.

lisp/tar-mode.el

index be17e70c7855dc5986c6e1e7c858405994f64772..dccbb6f82dfa41187799e30e8c98fe3bdb105793 100644 (file)
@@ -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 @@ write-date, checksum, link-type, and link-name."
     (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))