diff options
Diffstat (limited to 'term')
-rw-r--r-- | term/ChangeLog | 2 | ||||
-rw-r--r-- | term/term.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/term/ChangeLog b/term/ChangeLog index aceb513b..986cf2e6 100644 --- a/term/ChangeLog +++ b/term/ChangeLog @@ -1,5 +1,7 @@ Mon Aug 12 11:04:28 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + * term.h (CTRL_BIT): Correct value is 0x40, not 0x20. + * munge.c (poutput): Compute tab width using the same loop strategy as output_character and output_width. diff --git a/term/term.h b/term/term.h index 44a5e248..b30ac826 100644 --- a/term/term.h +++ b/term/term.h @@ -40,7 +40,7 @@ #define CHAR_USER_QUOTE '\377' /* break quoting, etc. */ /* This bit specifies control */ -#define CTRL_BIT 0x20 +#define CTRL_BIT 0x40 /* XXX These belong in <termios.h> */ #define ILCASE (1 << 14) |