mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
removed obsolete params from edit_push_undo_action/edit_push_redo_action
Signed-off-by: Ilia Maslakov <il.smind@gmail.com>
This commit is contained in:
parent
fbc013421c
commit
fa7a8dcbeb
@ -215,8 +215,8 @@ int edit_delete (WEdit * edit, const int byte_delete);
|
||||
int edit_backspace (WEdit * edit, const int byte_delete);
|
||||
void edit_insert (WEdit * edit, int c);
|
||||
void edit_cursor_move (WEdit * edit, off_t increment);
|
||||
void edit_push_undo_action (WEdit * edit, long c, ...);
|
||||
void edit_push_redo_action (WEdit * edit, long c, ...);
|
||||
void edit_push_undo_action (WEdit * edit, long c);
|
||||
void edit_push_redo_action (WEdit * edit, long c);
|
||||
void edit_push_key_press (WEdit * edit);
|
||||
void edit_insert_ahead (WEdit * edit, int c);
|
||||
off_t edit_write_stream (WEdit * edit, FILE * f);
|
||||
|
@ -2447,7 +2447,7 @@ edit_set_codeset (WEdit * edit)
|
||||
*/
|
||||
|
||||
void
|
||||
edit_push_undo_action (WEdit * edit, long c, ...)
|
||||
edit_push_undo_action (WEdit * edit, long c)
|
||||
{
|
||||
unsigned long sp = edit->undo_stack_pointer;
|
||||
unsigned long spm1;
|
||||
@ -2534,7 +2534,7 @@ edit_push_undo_action (WEdit * edit, long c, ...)
|
||||
}
|
||||
|
||||
void
|
||||
edit_push_redo_action (WEdit * edit, long c, ...)
|
||||
edit_push_redo_action (WEdit * edit, long c)
|
||||
{
|
||||
unsigned long sp = edit->redo_stack_pointer;
|
||||
unsigned long spm1;
|
||||
|
Loading…
Reference in New Issue
Block a user