vt$out (6) --- output a character onto the screen 07/11/84 | _C_a_l_l_i_n_g _I_n_f_o_r_m_a_t_i_o_n subroutine vt$out (ch) character ch | Library: vswtlb (standard Subsystem library) _F_u_n_c_t_i_o_n 'Vt$out' is the very low level routine which does the actual character output to the terminal screen; the character contained in 'ch' is printed on the screen after certain considerations are evaluated. _I_m_p_l_e_m_e_n_t_a_t_i_o_n First, 'vt$out' checks to see if the character would be out- put on the last character position of the last line of the screen; if so, it returns without doing the output operations (thus preventing the screen from scrolling). Next, the character is checked to see if it is printable; if not, then a printed representation is output (if a "shifted" sequence for the unprintable character is defined, i.e. a transparent mode indicator for the terminal, then that sequence is output before the character itself). The inter- nal screen cursor position indicators are updated to reflect that a character was printed. _B_u_g_s Not meant to be called by the normal user. _S_e_e _A_l_s_o other vt?* routines (2) and (6) vt$out (6) - 1 - vt$out (6)