private void csi_DCH(String p) { int[] ps = vt100_parse_params(p, new int[] {1}); scroll_line_left(cy, cx, Math.max(1, ps[0])); }
private void scroll_line_left(int y, int x) { scroll_line_left(y, x, 1); }