diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-08-12 18:31:04 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-08-12 18:31:04 +0000 |
commit | 9474c6318ad2effa3e80246d1012cb111e726bf0 (patch) | |
tree | b1f5dbfbd38913dcc4ebf721f81443472937dec0 /term | |
parent | 4b4fc640461f0f6e152204deda38a4e9272fe9e1 (diff) |
*** empty log message ***
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) |