Lines Matching full:force
135 /* Set fake sc_width to force only pfx chars to be read. */
210 * "force" means display the n lines even if we hit end of file.
216 public void forw(int n, POSITION pos, lbool force, lbool only_last, int nblank)
256 force = TRUE;
272 force = TRUE;
312 * is still empty, or "force" is true.
313 * Even if force is true, stop when the last
316 if (!force && position(TOP) != NULL_POSITION)
393 public void back(int n, POSITION pos, lbool force, lbool only_last)
417 * Beginning of file: stop here unless "force" is true.
419 if (!force)
458 public void forward(int n, lbool force, lbool only_last)
474 if (pos == NULL_POSITION && (!force || empty_lines(2, sc_height-1)))
499 forw(n, pos, force, only_last, 0);
506 public void backward(int n, lbool force, lbool only_last)
511 if (pos == NULL_POSITION && (!force || position(BOTTOM) == 0))
516 back(n, pos, force, only_last);