diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2019-05-09 10:54:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2019-05-09 10:54:00 +0000 |
commit | 656378e1ef0c1fcf50978a0ead4006809c566f9e (patch) | |
tree | 0d0f76c10fb99d04820131d8024fdc719494aeb9 /usr.bin/less/charset.h | |
parent | ec39ce910cbd28208609bd58c475f1d25dd47cce (diff) |
delete five unused macros
Diffstat (limited to 'usr.bin/less/charset.h')
-rw-r--r-- | usr.bin/less/charset.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/usr.bin/less/charset.h b/usr.bin/less/charset.h index 73455d0ab6b..44fc03bd9da 100644 --- a/usr.bin/less/charset.h +++ b/usr.bin/less/charset.h @@ -11,10 +11,5 @@ #define IS_ASCII_OCTET(c) (((c) & 0x80) == 0) #define IS_UTF8_TRAIL(c) (((c) & 0xC0) == 0x80) -#define IS_UTF8_LEAD2(c) (((c) & 0xE0) == 0xC0) -#define IS_UTF8_LEAD3(c) (((c) & 0xF0) == 0xE0) -#define IS_UTF8_LEAD4(c) (((c) & 0xF8) == 0xF0) -#define IS_UTF8_LEAD5(c) (((c) & 0xFC) == 0xF8) -#define IS_UTF8_LEAD6(c) (((c) & 0xFE) == 0xFC) #define IS_UTF8_INVALID(c) (((c) & 0xFE) == 0xFE) #define IS_UTF8_LEAD(c) (((c) & 0xC0) == 0xC0 && !IS_UTF8_INVALID(c)) |