640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
|
* Connect the terminal to the backend for resize purposes.
*/
term_provide_resize_fn(term, back->size, backhandle);
/*
* Set up a line discipline.
*/
ldisc = ldisc_create(term, back, backhandle, NULL);
session_closed = FALSE;
/*
* Prepare the mouse handler.
*/
lastact = MA_NOTHING;
|
|
|
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
|
* Connect the terminal to the backend for resize purposes.
*/
term_provide_resize_fn(term, back->size, backhandle);
/*
* Set up a line discipline.
*/
ldisc = ldisc_create(&cfg, term, back, backhandle, NULL);
session_closed = FALSE;
/*
* Prepare the mouse handler.
*/
lastact = MA_NOTHING;
|