ac 1193 src/editor/edit.c long ac; ac 1199 src/editor/edit.c while ((ac = edit_pop_undo_action (edit)) < KEY_PRESS) ac 1203 src/editor/edit.c switch ((int) ac) ac 1230 src/editor/edit.c if (ac >= 256 && ac < 512) ac 1231 src/editor/edit.c edit_insert_ahead (edit, ac - 256); ac 1232 src/editor/edit.c if (ac >= 0 && ac < 256) ac 1233 src/editor/edit.c edit_insert (edit, ac); ac 1235 src/editor/edit.c if (ac >= MARK_1 - 2 && ac < MARK_2 - 2) ac 1237 src/editor/edit.c edit->mark1 = ac - MARK_1; ac 1241 src/editor/edit.c if (ac >= MARK_2 - 2 && ac < MARK_CURS - 2) ac 1243 src/editor/edit.c edit->mark2 = ac - MARK_2; ac 1247 src/editor/edit.c else if (ac >= MARK_CURS - 2 && ac < KEY_PRESS) ac 1249 src/editor/edit.c edit->end_mark_curs = ac - MARK_CURS; ac 1255 src/editor/edit.c if (edit->start_display > ac - KEY_PRESS) ac 1258 src/editor/edit.c edit_buffer_count_lines (&edit->buffer, ac - KEY_PRESS, edit->start_display); ac 1261 src/editor/edit.c else if (edit->start_display < ac - KEY_PRESS) ac 1264 src/editor/edit.c edit_buffer_count_lines (&edit->buffer, edit->start_display, ac - KEY_PRESS); ac 1267 src/editor/edit.c edit->start_display = ac - KEY_PRESS; // see push and pop above ac 1279 src/editor/edit.c long ac; ac 1287 src/editor/edit.c while ((ac = edit_pop_redo_action (edit)) < KEY_PRESS) ac 1291 src/editor/edit.c switch ((int) ac) ac 1316 src/editor/edit.c if (ac >= 256 && ac < 512) ac 1317 src/editor/edit.c edit_insert_ahead (edit, ac - 256); ac 1318 src/editor/edit.c if (ac >= 0 && ac < 256) ac 1319 src/editor/edit.c edit_insert (edit, ac); ac 1321 src/editor/edit.c if (ac >= MARK_1 - 2 && ac < MARK_2 - 2) ac 1323 src/editor/edit.c edit->mark1 = ac - MARK_1; ac 1327 src/editor/edit.c else if (ac >= MARK_2 - 2 && ac < KEY_PRESS) ac 1329 src/editor/edit.c edit->mark2 = ac - MARK_2; ac 1338 src/editor/edit.c if (edit->start_display > ac - KEY_PRESS) ac 1341 src/editor/edit.c edit_buffer_count_lines (&edit->buffer, ac - KEY_PRESS, edit->start_display); ac 1344 src/editor/edit.c else if (edit->start_display < ac - KEY_PRESS) ac 1347 src/editor/edit.c edit_buffer_count_lines (&edit->buffer, edit->start_display, ac - KEY_PRESS); ac 1350 src/editor/edit.c edit->start_display = ac - KEY_PRESS; // see push and pop above ac 1361 src/editor/edit.c long ac = KEY_PRESS; ac 1364 src/editor/edit.c while (ac != STACK_BOTTOM && ac == cur_ac) ac 1368 src/editor/edit.c ac = get_prev_undo_action (edit); ac 1373 src/editor/edit.c ac = STACK_BOTTOM;