summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Quinson <mquinson@debian.org>2004-07-13 22:24:52 +0000
committerMartin Quinson <mquinson@debian.org>2004-07-13 22:24:52 +0000
commite90a0c6a1c3b1ad5110a8dbc904a3cc4bb9b327f (patch)
tree7b3acc757d22f289296673ba7e0b3b832c2a55a2
parente44cd82b93a436664201b87757270b9fecc72e07 (diff)
downloadquilt-e90a0c6a1c3b1ad5110a8dbc904a3cc4bb9b327f.tar.gz
Track down two string expensions in printf $"" left
-rw-r--r--quilt/edit.in4
-rwxr-xr-xscripts/rpatch.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/quilt/edit.in b/quilt/edit.in
index 21cf65d..43f5c0e 100644
--- a/quilt/edit.in
+++ b/quilt/edit.in
@@ -14,9 +14,9 @@ usage()
if [ x$1 = x-h ]
then
printf $"
-Edit the specified file(s) in $EDITOR after adding it (them) to the
+Edit the specified file(s) in %s after adding it (them) to the
topmost patch.
-"
+" "$EDITOR"
exit 0
else
exit 1
diff --git a/scripts/rpatch.in b/scripts/rpatch.in
index 3282d1c..6f859f7 100755
--- a/scripts/rpatch.in
+++ b/scripts/rpatch.in
@@ -19,7 +19,7 @@ fi
usage()
{
- printf $"Usage: $0 [-fRq] patchname\n"
+ printf $"Usage: %s [-fRq] patchname\n" "$0"
exit 1
}