Lines Matching defs:changed
1716 "touchline(start, count, [changed=True])\n"
1717 "Pretend count lines have been changed, starting with line start.\n"
1719 "If changed is supplied, it specifies whether the affected lines are marked\n"
1720 "as having been changed (changed=True) or unchanged (changed=False).");
1727 int count, int group_right_1, int changed);
1736 int changed = 1;
1745 if (!PyArg_ParseTuple(args, "iii:touchline", &start, &count, &changed)) {
1754 return_value = _curses_window_touchline_impl(self, start, count, group_right_1, changed);
2541 " The number of the color to be changed (0 - (COLORS-1)).\n"
2597 " The number of the color-pair to be changed (1 - (COLOR_PAIRS-1)).\n"
2604 "all occurrences of that color-pair are changed to the new definition.");