ac               1156 src/editor/edit.c     long ac;
ac               1162 src/editor/edit.c     while ((ac = edit_pop_undo_action (edit)) < KEY_PRESS)
ac               1166 src/editor/edit.c         switch ((int) ac)
ac               1193 src/editor/edit.c         if (ac >= 256 && ac < 512)
ac               1194 src/editor/edit.c             edit_insert_ahead (edit, ac - 256);
ac               1195 src/editor/edit.c         if (ac >= 0 && ac < 256)
ac               1196 src/editor/edit.c             edit_insert (edit, ac);
ac               1198 src/editor/edit.c         if (ac >= MARK_1 - 2 && ac < MARK_2 - 2)
ac               1200 src/editor/edit.c             edit->mark1 = ac - MARK_1;
ac               1204 src/editor/edit.c         if (ac >= MARK_2 - 2 && ac < MARK_CURS - 2)
ac               1206 src/editor/edit.c             edit->mark2 = ac - MARK_2;
ac               1210 src/editor/edit.c         else if (ac >= MARK_CURS - 2 && ac < KEY_PRESS)
ac               1212 src/editor/edit.c             edit->end_mark_curs = ac - MARK_CURS;
ac               1218 src/editor/edit.c     if (edit->start_display > ac - KEY_PRESS)
ac               1221 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, ac - KEY_PRESS, edit->start_display);
ac               1224 src/editor/edit.c     else if (edit->start_display < ac - KEY_PRESS)
ac               1227 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, edit->start_display, ac - KEY_PRESS);
ac               1230 src/editor/edit.c     edit->start_display = ac - KEY_PRESS;  // see push and pop above
ac               1242 src/editor/edit.c     long ac;
ac               1250 src/editor/edit.c     while ((ac = edit_pop_redo_action (edit)) < KEY_PRESS)
ac               1254 src/editor/edit.c         switch ((int) ac)
ac               1279 src/editor/edit.c         if (ac >= 256 && ac < 512)
ac               1280 src/editor/edit.c             edit_insert_ahead (edit, ac - 256);
ac               1281 src/editor/edit.c         if (ac >= 0 && ac < 256)
ac               1282 src/editor/edit.c             edit_insert (edit, ac);
ac               1284 src/editor/edit.c         if (ac >= MARK_1 - 2 && ac < MARK_2 - 2)
ac               1286 src/editor/edit.c             edit->mark1 = ac - MARK_1;
ac               1290 src/editor/edit.c         else if (ac >= MARK_2 - 2 && ac < KEY_PRESS)
ac               1292 src/editor/edit.c             edit->mark2 = ac - MARK_2;
ac               1301 src/editor/edit.c     if (edit->start_display > ac - KEY_PRESS)
ac               1304 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, ac - KEY_PRESS, edit->start_display);
ac               1307 src/editor/edit.c     else if (edit->start_display < ac - KEY_PRESS)
ac               1310 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, edit->start_display, ac - KEY_PRESS);
ac               1313 src/editor/edit.c     edit->start_display = ac - KEY_PRESS;  // see push and pop above
ac               1324 src/editor/edit.c     long ac = KEY_PRESS;
ac               1327 src/editor/edit.c     while (ac != STACK_BOTTOM && ac == cur_ac)
ac               1331 src/editor/edit.c         ac = get_prev_undo_action (edit);
ac               1336 src/editor/edit.c             ac = STACK_BOTTOM;