in disable_flow_control() and enable_flow_control(), only turn off flow
control on input, as it might be needed for output on slow terminals git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2760 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
b2ca88cc74
commit
5e50e2f51e
|
@ -242,6 +242,9 @@ CVS code -
|
||||||
disable_extended_input()
|
disable_extended_input()
|
||||||
- Disable extended output processing as well as extended input
|
- Disable extended output processing as well as extended input
|
||||||
processing, and rename to disable_extended_io(). (DLR)
|
processing, and rename to disable_extended_io(). (DLR)
|
||||||
|
disable_flow_control(), enable_flow_control()
|
||||||
|
- Only turn off flow control on output, as it might be needed
|
||||||
|
for input on slow terminals. (DLR)
|
||||||
- nano.h:
|
- nano.h:
|
||||||
- Add macro charset(), a wrapper that calls memset(). (DLR)
|
- Add macro charset(), a wrapper that calls memset(). (DLR)
|
||||||
- Readd #defines for the isblank() and iswblank() equivalents.
|
- Readd #defines for the isblank() and iswblank() equivalents.
|
||||||
|
|
|
@ -3744,7 +3744,7 @@ void disable_flow_control(void)
|
||||||
struct termios term;
|
struct termios term;
|
||||||
|
|
||||||
tcgetattr(0, &term);
|
tcgetattr(0, &term);
|
||||||
term.c_iflag &= ~(IXON|IXOFF);
|
term.c_iflag &= ~IXON;
|
||||||
tcsetattr(0, TCSANOW, &term);
|
tcsetattr(0, TCSANOW, &term);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3753,7 +3753,7 @@ void enable_flow_control(void)
|
||||||
struct termios term;
|
struct termios term;
|
||||||
|
|
||||||
tcgetattr(0, &term);
|
tcgetattr(0, &term);
|
||||||
term.c_iflag |= (IXON|IXOFF);
|
term.c_iflag |= IXON;
|
||||||
tcsetattr(0, TCSANOW, &term);
|
tcsetattr(0, TCSANOW, &term);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue