summaryrefslogtreecommitdiff
path: root/lib/libedit/makelist
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2016-04-11 00:22:48 +0000
committerchristos <christos@NetBSD.org>2016-04-11 00:22:48 +0000
commit7169dd3deff539889888fea21c7c665093f740cc (patch)
tree984461a396b824f2a95595cfe1549ceb7967f2ad /lib/libedit/makelist
parent6f3d6dc8b30052a2527e714778ba021fcf429cf7 (diff)
more macro WIDECHAR undoing from Ingo Schwarze.
Diffstat (limited to 'lib/libedit/makelist')
-rw-r--r--lib/libedit/makelist8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libedit/makelist b/lib/libedit/makelist
index 0445b5ac0cf..93fbed5bf07 100644
--- a/lib/libedit/makelist
+++ b/lib/libedit/makelist
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $NetBSD: makelist,v 1.25 2016/03/23 22:27:48 christos Exp $
+# $NetBSD: makelist,v 1.26 2016/04/11 00:22:48 christos Exp $
#
# Copyright (c) 1992, 1993
# The Regents of the University of California. All rights reserved.
@@ -114,16 +114,16 @@ _EOF
fname = fname s;
}
- printf(" { %-30.30s %-30.30s\n","STR(\"" fname "\"),", uname ",");
+ printf(" { %-30.30s %-30.30s\n","L\"" fname "\",", uname ",");
ok = 1;
}
}
/^ \*/ {
if (ok) {
- printf(" STR(\"");
+ printf(" L\"");
for (i = 2; i < NF; i++)
printf("%s ", $i);
- printf("%s\") },\n", $i);
+ printf("%s\" },\n", $i);
ok = 0;
}
}