diff options
author | Kenichi Handa <handa@m17n.org> | 1997-11-27 12:16:08 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-11-27 12:16:08 +0000 |
commit | 90dd3e4f462bfd4b220e400335a5d439b937942b (patch) | |
tree | 030a48670e354dd0d465cea2146de7bd46cdc4d4 /src/undo.c | |
parent | c9667ae1a905f9597e012e092bc8aaef1aa49dd7 (diff) | |
download | emacs-90dd3e4f462bfd4b220e400335a5d439b937942b.tar.gz |
(record_change, record_first_change,
record_property_change): Declare it as void.
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/undo.c b/src/undo.c index b8b1146a956..52ec3d676ff 100644 --- a/src/undo.c +++ b/src/undo.c @@ -41,6 +41,7 @@ Lisp_Object pending_boundary; (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_change (beg, length) 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_first_change () /* 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; |