Changeset ab9bf01


Ignore:
Timestamp:
Feb 10, 2011, 11:59:03 PM (14 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
Branches:
master, release-1.10, release-1.8, release-1.9
Children:
2c68a93
Parents:
7488f27
git-author:
Anders Kaseorg <andersk@mit.edu> (02/10/11 23:52:37)
git-committer:
Anders Kaseorg <andersk@mit.edu> (02/10/11 23:59:03)
Message:
Disable special handling of START and STOP characters (^Q and ^S)

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.c

    r7488f27 rab9bf01  
    137137  tio.c_cc[VQUIT] = fpathconf(STDIN_FILENO, _PC_VDISABLE);
    138138  tio.c_cc[VSUSP] = fpathconf(STDIN_FILENO, _PC_VDISABLE);
     139  tio.c_cc[VSTART] = fpathconf(STDIN_FILENO, _PC_VDISABLE);
     140  tio.c_cc[VSTOP] = fpathconf(STDIN_FILENO, _PC_VDISABLE);
    139141  tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio);
    140142
Note: See TracChangeset for help on using the changeset viewer.