From: Andreas Schwab Date: Sun, 8 Feb 2004 22:30:54 +0000 (+0000) Subject: (tar-parse-octal-integer-safe): Add missing format X-Git-Tag: ttn-vms-21-2-B4~7712 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d5c0bc40b8b1209decd6c4791819c8893fdddb90;p=emacs.git (tar-parse-octal-integer-safe): Add missing format string argument. --- diff --git a/lisp/tar-mode.el b/lisp/tar-mode.el index be17e70c785..dccbb6f82df 100644 --- a/lisp/tar-mode.el +++ b/lisp/tar-mode.el @@ -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 @@ -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))