summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/less/charset.h5
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))