# HG changeset patch # User Andreas Schwab # Date 1076279454 0 # Node ID 252f42ef56fcf0531a5718d233fac9057463a637 # Parent 9f8bd1b673a821a58957c8a09c24cc9b2e378422 (tar-parse-octal-integer-safe): Add missing format string argument. diff -r 9f8bd1b673a8 -r 252f42ef56fc lisp/tar-mode.el --- 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 @@ -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))