ac               1177 src/editor/edit.c     long ac;
ac               1183 src/editor/edit.c     while ((ac = edit_pop_undo_action (edit)) < KEY_PRESS)
ac               1187 src/editor/edit.c         switch ((int) ac)
ac               1214 src/editor/edit.c         if (ac >= 256 && ac < 512)
ac               1215 src/editor/edit.c             edit_insert_ahead (edit, ac - 256);
ac               1216 src/editor/edit.c         if (ac >= 0 && ac < 256)
ac               1217 src/editor/edit.c             edit_insert (edit, ac);
ac               1219 src/editor/edit.c         if (ac >= MARK_1 - 2 && ac < MARK_2 - 2)
ac               1221 src/editor/edit.c             edit->mark1 = ac - MARK_1;
ac               1225 src/editor/edit.c         if (ac >= MARK_2 - 2 && ac < MARK_CURS - 2)
ac               1227 src/editor/edit.c             edit->mark2 = ac - MARK_2;
ac               1231 src/editor/edit.c         else if (ac >= MARK_CURS - 2 && ac < KEY_PRESS)
ac               1233 src/editor/edit.c             edit->end_mark_curs = ac - MARK_CURS;
ac               1239 src/editor/edit.c     if (edit->start_display > ac - KEY_PRESS)
ac               1242 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, ac - KEY_PRESS, edit->start_display);
ac               1245 src/editor/edit.c     else if (edit->start_display < ac - KEY_PRESS)
ac               1248 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, edit->start_display, ac - KEY_PRESS);
ac               1251 src/editor/edit.c     edit->start_display = ac - KEY_PRESS;       /* see push and pop above */
ac               1263 src/editor/edit.c     long ac;
ac               1271 src/editor/edit.c     while ((ac = edit_pop_redo_action (edit)) < KEY_PRESS)
ac               1275 src/editor/edit.c         switch ((int) ac)
ac               1300 src/editor/edit.c         if (ac >= 256 && ac < 512)
ac               1301 src/editor/edit.c             edit_insert_ahead (edit, ac - 256);
ac               1302 src/editor/edit.c         if (ac >= 0 && ac < 256)
ac               1303 src/editor/edit.c             edit_insert (edit, ac);
ac               1305 src/editor/edit.c         if (ac >= MARK_1 - 2 && ac < MARK_2 - 2)
ac               1307 src/editor/edit.c             edit->mark1 = ac - MARK_1;
ac               1311 src/editor/edit.c         else if (ac >= MARK_2 - 2 && ac < KEY_PRESS)
ac               1313 src/editor/edit.c             edit->mark2 = ac - MARK_2;
ac               1322 src/editor/edit.c     if (edit->start_display > ac - KEY_PRESS)
ac               1325 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, ac - KEY_PRESS, edit->start_display);
ac               1328 src/editor/edit.c     else if (edit->start_display < ac - KEY_PRESS)
ac               1331 src/editor/edit.c             edit_buffer_count_lines (&edit->buffer, edit->start_display, ac - KEY_PRESS);
ac               1334 src/editor/edit.c     edit->start_display = ac - KEY_PRESS;       /* see push and pop above */
ac               1346 src/editor/edit.c     long ac = KEY_PRESS;
ac               1349 src/editor/edit.c     while (ac != STACK_BOTTOM && ac == cur_ac)
ac               1353 src/editor/edit.c         ac = get_prev_undo_action (edit);
ac               1358 src/editor/edit.c             ac = STACK_BOTTOM;