Searched refs:rl_undo_list (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/libreadline/
H A Dundo.c63 UNDO_LIST *rl_undo_list = (UNDO_LIST *)NULL; variable
100 temp->next = rl_undo_list;
101 rl_undo_list = temp;
110 orig_list = rl_undo_list;
111 while (rl_undo_list)
113 release = rl_undo_list;
114 rl_undo_list = rl_undo_list->next;
121 rl_undo_list = (UNDO_LIST *)NULL;
174 if (!rl_undo_list)
[all...]
H A Dmisc.c342 if (temp && ((UNDO_LIST *)(temp->data) != rl_undo_list))
344 temp = replace_history_entry (where_history (), rl_line_buffer, (histdata_t)rl_undo_list);
358 /* Can't call with `1' because rl_undo_list might point to an undo
361 rl_undo_list = (UNDO_LIST *)_rl_saved_line_for_history->data;
380 _rl_saved_line_for_history->data = (char *)rl_undo_list;
420 /* Can't call with `1' because rl_undo_list might point to an undo list
423 rl_undo_list = (UNDO_LIST *)entry->data;
H A Dreadline.c391 if (entry && rl_undo_list)
404 if (rl_undo_list)
1165 sp->ul = rl_undo_list;
1199 rl_undo_list = sp->ul;
H A Dtext.c101 rl_undo_list &&
102 (rl_undo_list->what == UNDO_INSERT) &&
103 (rl_undo_list->end == rl_point) &&
104 (rl_undo_list->end - rl_undo_list->start < 20))
105 rl_undo_list->end++;
H A Dsearch.c207 rl_undo_list = 0;
H A Dvi_mode.c683 /* Now, the text between rl_undo_list->next->start and
684 rl_undo_list->next->end is what was inserted while in insert
689 _rl_vi_save_insert (rl_undo_list->next);
694 if ((_rl_vi_last_key_before_insert == 'i' || _rl_vi_last_key_before_insert == 'a') && rl_undo_list)
695 _rl_vi_save_insert (rl_undo_list);
H A Dreadline.h67 extern UNDO_LIST *rl_undo_list;
H A Ddisplay.c494 if (_rl_mark_modified_lines && current_history () && rl_undo_list)

Completed in 80 milliseconds