diff options
author | Pavel Platto <hinidu@gmail.com> | 2014-06-05 17:11:10 +0300 |
---|---|---|
committer | Pavel Platto <hinidu@gmail.com> | 2014-08-02 09:16:59 +0300 |
commit | 77cb6551a69108dc734608a18d2305fe57ebd2f2 (patch) | |
tree | 2ddb93fa9ea0aa51bbe0662074c24336ae940485 /src/nvim/ascii.h | |
parent | 8991609393e8f6ae1248cc312aece546f718e0ec (diff) | |
download | rneovim-77cb6551a69108dc734608a18d2305fe57ebd2f2.tar.gz rneovim-77cb6551a69108dc734608a18d2305fe57ebd2f2.tar.bz2 rneovim-77cb6551a69108dc734608a18d2305fe57ebd2f2.zip |
Remove EBCDIC: Remove IF_EB macros
Diffstat (limited to 'src/nvim/ascii.h')
-rw-r--r-- | src/nvim/ascii.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h index 258b798e5b..d9d9eac04d 100644 --- a/src/nvim/ascii.h +++ b/src/nvim/ascii.h @@ -8,14 +8,7 @@ #ifndef NVIM_ASCII_H #define NVIM_ASCII_H -/* - * Definitions of various common control characters. - * For EBCDIC we have to use different values. - */ - - -/* IF_EB(ASCII_constant, EBCDIC_constant) */ -#define IF_EB(a, b) a +// Definitions of various common control characters. #define CharOrd(x) ((x) < 'a' ? (x) - 'A' : (x) - 'a') #define CharOrdLow(x) ((x) - 'a') |