diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-01-27 10:14:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-01-27 10:14:01 +0000 |
commit | a9d755661b74c081f57e249027a9bcea5b079031 (patch) | |
tree | 36712cf65f1ce58058afaaabf483fbe9a71d2873 /locale | |
parent | a25f2023916cf86dca8a1dc89df5518dcbefa11a (diff) | |
download | glibc-a9d755661b74c081f57e249027a9bcea5b079031.tar.gz glibc-a9d755661b74c081f57e249027a9bcea5b079031.tar.xz glibc-a9d755661b74c081f57e249027a9bcea5b079031.zip |
Update.
* locale/programs/locale-spec.c (locale_special): Take care of possible trigraph sequence. Patch by Zack Weinberg <zack@rabi.columbia.edu>.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/programs/locale-spec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/locale/programs/locale-spec.c b/locale/programs/locale-spec.c index 9c432e3ead..16272e8880 100644 --- a/locale/programs/locale-spec.c +++ b/locale/programs/locale-spec.c @@ -1,5 +1,5 @@ /* Handle special requests. - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996. @@ -80,7 +80,7 @@ locale_special (const char *name, int show_category_name, if (ch != EOF) putchar (ch); else - fputs ("<???>", stdout); + fputs ("<???\>", stdout); } putchar ('"'); |