summaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-02-11 14:32:22 +0000
committerJim Meyering <jim@meyering.net>2002-02-11 14:32:22 +0000
commit821811d87f094eb35f6dacae7cf108d8c3e4043b (patch)
tree667993d6cc537dccb1840efa2e0eebba8fdf8c43 /src/printf.c
parent57eace9a0f6912e0411be5e813b2da76c1e85ee3 (diff)
downloadcoreutils-821811d87f094eb35f6dacae7cf108d8c3e4043b.tar.xz
From Bruno Haible
(print_esc): Call print_unicode_char with exit_on_error = false.
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index 0487d19f4..d4fa81df6 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -287,7 +287,7 @@ print_esc (const char *escstart)
error (1, 0, _("invalid universal character name \\%c%0*x"),
esc_char, (esc_char == 'u' ? 4 : 8), uni_value);
- print_unicode_char (stdout, uni_value);
+ print_unicode_char (stdout, uni_value, 0);
}
else
error (1, 0, _("\\%c: invalid escape"), *p);