示例#1
0
文件: testxmc.c 项目: idunham/dtextra
/*
 * Force a glitch on cursor movement when we're in standout mode and not at the
 * end of a line.
 */
void Jump_XMC(register TScreen *screen)
{
	if (!screen->move_sgr_ok
	 && screen->cur_col <= CurMaxCol(screen, screen->cur_row)) {
		Mark_XMC(screen, -1);
	}
}
示例#2
0
文件: testxmc.c 项目: aosm/X11apps
/*
 * Force a glitch on cursor movement when we're in standout mode and not at the
 * end of a line.
 */
void
Jump_XMC(XtermWidget xw)
{
    TScreen *screen = TScreenOf(xw);
    if (!screen->move_sgr_ok
	&& screen->cur_col <= LineMaxCol(screen,
					 getLineData(screen, screen->cur_row))) {
	Mark_XMC(xw, -1);
    }
}