diff --git a/edit/edit.c b/edit/edit.c
index ff2b2e7..14e701a 100644
a
|
b
|
edit_move_backward_lots (WEdit *edit, long increment) |
1099 | 1099 | int edit_cursor_move (WEdit * edit, long increment) |
1100 | 1100 | { |
1101 | 1101 | /* this is the same as a combination of two of the above routines, with only one push onto the undo stack */ |
1102 | | int c; |
| 1102 | int c = -3; |
1103 | 1103 | |
1104 | 1104 | #ifdef FAST_MOVE_CURSOR |
1105 | 1105 | if (increment < -256) { |
… |
… |
int edit_cursor_move (WEdit * edit, long increment) |
1132 | 1132 | } |
1133 | 1133 | } |
1134 | 1134 | |
1135 | | return c; |
1136 | 1135 | } else if (increment > 0) { |
1137 | 1136 | for (; increment > 0; increment--) { |
1138 | 1137 | if (!edit->curs2) |
… |
… |
int edit_cursor_move (WEdit * edit, long increment) |
1156 | 1155 | edit->force |= REDRAW_LINE_ABOVE; |
1157 | 1156 | } |
1158 | 1157 | } |
| 1158 | } |
1159 | 1159 | return c; |
1160 | | } else |
1161 | | return -3; |
1162 | 1160 | } |
1163 | 1161 | |
1164 | 1162 | /* These functions return positions relative to lines */ |