| 1315 | |
| 1316 | |
| 1317 | private void |
| 1318 | tty_setup_flags(EditLine *el, struct termios *tios, int mode) |
| 1319 | { |
| 1320 | int kind; |
| 1321 | for (kind = MD_INP; kind <= MD_LIN; kind++) { |
| 1322 | tcflag_t *f = tty__get_flag(tios, kind); |
| 1323 | *f = tty_update_flag(el, *f, mode, kind); |
| 1324 | } |
| 1325 | } |
no test coverage detected