diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2016-01-09 17:34:44 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2016-01-09 17:34:44 +0000 |
commit | d8ae6be3990eacf86a3d865246c712a58b51a4dd (patch) | |
tree | 6da1e6625aaf8e87046e093b7b39262c617ccf19 /usr.bin/less | |
parent | 6931a4d8ecbf92e66631f7146c59fd9dc44636e7 (diff) |
Remove superfluous and barely used macro aliases for wctype.h functions.
ok nicm@
Diffstat (limited to 'usr.bin/less')
-rw-r--r-- | usr.bin/less/cvt.c | 4 | ||||
-rw-r--r-- | usr.bin/less/less.h | 9 |
2 files changed, 2 insertions, 11 deletions
diff --git a/usr.bin/less/cvt.c b/usr.bin/less/cvt.c index 3fb95344b95..6422a5274c5 100644 --- a/usr.bin/less/cvt.c +++ b/usr.bin/less/cvt.c @@ -85,8 +85,8 @@ cvt_text(char *odst, char *osrc, int *chpos, int *lenp, int ops) break; } else { /* Just copy the char to the destination buffer. */ - if ((ops & CVT_TO_LC) && IS_UPPER(ch)) - ch = TO_LOWER(ch); + if ((ops & CVT_TO_LC) && iswupper(ch)) + ch = towlower(ch); put_wchar(&dst, ch); /* Record the original position of the char. */ if (chpos != NULL) diff --git a/usr.bin/less/less.h b/usr.bin/less/less.h index d97533cc628..1bf2b56a340 100644 --- a/usr.bin/less/less.h +++ b/usr.bin/less/less.h @@ -38,18 +38,9 @@ * (before options are parsed which might tell us what charset to use). */ -#undef IS_UPPER -#undef IS_LOWER -#undef TO_UPPER -#undef TO_LOWER #undef IS_SPACE #undef IS_DIGIT -#define IS_UPPER(c) iswupper(c) -#define IS_LOWER(c) iswlower(c) -#define TO_UPPER(c) towupper(c) -#define TO_LOWER(c) towlower(c) - #define IS_SPACE(c) isspace((unsigned char)(c)) #define IS_DIGIT(c) isdigit((unsigned char)(c)) |