# HG changeset patch # User Kenichi Handa # Date 880633179 0 # Node ID b6c215dec8c83bcf69b02fdae6c5da1b63f2d2c0 # Parent 259194f66d401241733238fde2269f3a7b802721 (record_delete, record_marker_adjustment): Declare them as void. diff -r 259194f66d40 -r b6c215dec8c8 src/undo.c --- a/src/undo.c Thu Nov 27 12:16:08 1997 +0000 +++ b/src/undo.c Thu Nov 27 12:19:39 1997 +0000 @@ -86,6 +86,7 @@ /* Record that a deletion is about to take place, for LENGTH characters at location BEG. */ +void record_delete (beg, length) int beg, length; { @@ -134,6 +135,7 @@ because that's the only case where an automatic marker adjustment won't be inverted automatically by undoing the buffer modification. */ +void record_marker_adjustment (marker, adjustment) Lisp_Object marker; int adjustment; @@ -158,6 +160,7 @@ for LENGTH characters at location BEG. The replacement does not change the number of characters. */ +void record_change (beg, length) int beg, length; {