diff options
author | Jim Meyering <jim@meyering.net> | 2000-01-31 08:42:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-01-31 08:42:45 +0000 |
commit | 70ac08368abd763cd1b61c35a3fa391d22886315 (patch) | |
tree | 2c7cf05530b031dda534babe9897fdbec57c7023 /lib | |
parent | 26310e4984d9367bf67d78278c483b20cf72f39d (diff) | |
download | coreutils-70ac08368abd763cd1b61c35a3fa391d22886315.tar.xz |
fix typo. sheesh
Diffstat (limited to 'lib')
-rw-r--r-- | lib/quotearg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/quotearg.c b/lib/quotearg.c index 47e4c1425..3cdbfbd2d 100644 --- a/lib/quotearg.c +++ b/lib/quotearg.c @@ -75,7 +75,7 @@ # define ISASCII(c) isascii (c) #endif /* Undefine to protect against the definition in wctype.h of solaris2.6. */ -#undef ISASCII +#undef ISPRINT #define ISPRINT(c) (ISASCII (c) && isprint (c)) struct quoting_options |