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:
Ilia Maslakov 2012-09-03 11:31:46 +04:00 committed by Slava Zanko
parent fbc013421c
commit fa7a8dcbeb
2 changed files with 4 additions and 4 deletions

View File

@ -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);

View File

@ -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;