# HG changeset patch # User Kenichi Handa # Date 880632968 0 # Node ID 259194f66d401241733238fde2269f3a7b802721 # Parent 976eed15d6b5b6878ef24ca98207aa243245222a (record_change, record_first_change, record_property_change): Declare it as void. diff -r 976eed15d6b5 -r 259194f66d40 src/undo.c --- a/src/undo.c Thu Nov 27 12:12:50 1997 +0000 +++ b/src/undo.c Thu Nov 27 12:16:08 1997 +0000 @@ -41,6 +41,7 @@ (It is possible to record an insertion before or after the fact because we don't need to record the contents.) */ +void record_insert (beg, length) int beg, length; { @@ -168,6 +169,7 @@ Record the file modification date so that when undoing this entry we can tell whether it is obsolete because the file was saved again. */ +void record_first_change () { Lisp_Object high, low; @@ -191,6 +193,7 @@ /* Record a change in property PROP (whose old value was VAL) for LENGTH characters starting at position BEG in BUFFER. */ +void record_property_change (beg, length, prop, value, buffer) int beg, length; Lisp_Object prop, value, buffer;