aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2004-02-08 22:30:54 +0000
committerAndreas Schwab2004-02-08 22:30:54 +0000
commitd5c0bc40b8b1209decd6c4791819c8893fdddb90 (patch)
tree20addbcfc6fd4b157c7077099288ebe0adab7cf5
parent478a1803bcbc97c6864d6d9f38424e2df803447e (diff)
downloademacs-d5c0bc40b8b1209decd6c4791819c8893fdddb90.tar.gz
emacs-d5c0bc40b8b1209decd6c4791819c8893fdddb90.zip
(tar-parse-octal-integer-safe): Add missing format
string argument.
-rw-r--r--lisp/tar-mode.el4
1 files changed, 2 insertions, 2 deletions
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 @@
1;;; tar-mode.el --- simple editing of tar files from GNU emacs 1;;; tar-mode.el --- simple editing of tar files from GNU emacs
2 2
3;; Copyright (C) 1990,91,93,94,95,96,97,98,99,2000,2001 3;; Copyright (C) 1990,91,93,94,95,96,97,98,99,2000,01,2004
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; Author: Jamie Zawinski <jwz@lucid.com> 6;; Author: Jamie Zawinski <jwz@lucid.com>
@@ -289,7 +289,7 @@ write-date, checksum, link-type, and link-name."
289 (dotimes (i L) 289 (dotimes (i L)
290 (if (or (< (aref string i) ?0) 290 (if (or (< (aref string i) ?0)
291 (> (aref string i) ?7)) 291 (> (aref string i) ?7))
292 (error "`%c' is not an octal digit")))) 292 (error "`%c' is not an octal digit" (aref string i)))))
293 (tar-parse-octal-integer string)) 293 (tar-parse-octal-integer string))
294 294
295 295