diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1994-05-11 15:09:10 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1994-05-11 15:09:10 +0000 |
| commit | 3d311343019bbc51e1ddbd00d36807a8a5f889d8 (patch) | |
| tree | 5c1ddcdf41c8ea6ff309d9dfb48f32b6839a9369 /gnu/lib | |
| parent | 3c7d1225989c64222340ee86c937c04ec646569a (diff) | |
Notes
Diffstat (limited to 'gnu/lib')
| -rw-r--r-- | gnu/lib/libreadline/readline/chardefs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libreadline/readline/chardefs.h b/gnu/lib/libreadline/readline/chardefs.h index 63017e18335d..c9dcff3ac80b 100644 --- a/gnu/lib/libreadline/readline/chardefs.h +++ b/gnu/lib/libreadline/readline/chardefs.h @@ -31,9 +31,9 @@ extern char *xmalloc (); /* Some character stuff. */ #define control_character_threshold 0x020 /* Smaller than this is control. */ -#define meta_character_threshold 255 /* Larger than this is Meta. */ +#define meta_character_threshold 0x07f /* Larger than this is Meta. */ #define control_character_bit 0x40 /* 0x000000, must be off. */ -#define meta_character_bit 0x100 /* x0000000, must be on. */ +#define meta_character_bit 0x080 /* x0000000, must be on. */ #define largest_char 255 /* Largest character value. */ #define META_CHAR(c) ((c) > meta_character_threshold && (c) <= largest_char) |
