* src/undo.c: Small fixes for previous change
(run_undoable_change): Mark void argument list. (record_property_change): Remove unused variable `boundary'.
This commit is contained in:
parent
2fac30eb8d
commit
66b9f7bdcf
1 changed files with 1 additions and 2 deletions
|
@ -35,7 +35,7 @@ static ptrdiff_t last_boundary_position;
|
|||
static Lisp_Object pending_boundary;
|
||||
|
||||
void
|
||||
run_undoable_change ()
|
||||
run_undoable_change (void)
|
||||
{
|
||||
call0 (Qundo_auto__undoable_change);
|
||||
}
|
||||
|
@ -235,7 +235,6 @@ record_property_change (ptrdiff_t beg, ptrdiff_t length,
|
|||
{
|
||||
Lisp_Object lbeg, lend, entry;
|
||||
struct buffer *obuf = current_buffer, *buf = XBUFFER (buffer);
|
||||
bool boundary = false;
|
||||
|
||||
if (EQ (BVAR (buf, undo_list), Qt))
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue