diff options
author | Kenichi Handa <handa@m17n.org> | 1997-11-27 12:19:39 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 1997-11-27 12:19:39 +0000 |
commit | ff1aa840a4a72621bb5c0ece261e42c181757ea2 (patch) | |
tree | f4f3096e37c10b7c003ec3b4a1638ab358164657 /src/undo.c | |
parent | 90dd3e4f462bfd4b220e400335a5d439b937942b (diff) | |
download | emacs-ff1aa840a4a72621bb5c0ece261e42c181757ea2.tar.gz |
(record_delete, record_marker_adjustment): Declare them 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 52ec3d676ff..fc888381711 100644 --- a/src/undo.c +++ b/src/undo.c @@ -86,6 +86,7 @@ record_insert (beg, length) /* 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 @@ record_delete (beg, length) 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 @@ record_marker_adjustment (marker, adjustment) for LENGTH characters at location BEG. The replacement does not change the number of characters. */ +void record_change (beg, length) int beg, length; { |