summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2015-11-13 10:56:28 +0100
committerJuanma Barranquero <lekktu@gmail.com>2015-11-13 10:59:23 +0100
commit66b9f7bdcfc120e61d01b6f93c9c03e5ed9d17aa (patch)
tree06c13099e3c3d98bec71cc67baac7234eba25d6c
parent2fac30eb8d8737ee3b553d4d8ec56e1f29551f0f (diff)
downloademacs-66b9f7bdcfc120e61d01b6f93c9c03e5ed9d17aa.tar.gz
* src/undo.c: Small fixes for previous change
(run_undoable_change): Mark void argument list. (record_property_change): Remove unused variable `boundary'.
-rw-r--r--src/undo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/undo.c b/src/undo.c
index 009ebc0f959..0a5da853dc0 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -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;