aboutsummaryrefslogtreecommitdiffstats
path: root/src/undo.c
diff options
context:
space:
mode:
authorKenichi Handa1997-11-27 12:19:39 +0000
committerKenichi Handa1997-11-27 12:19:39 +0000
commitff1aa840a4a72621bb5c0ece261e42c181757ea2 (patch)
treef4f3096e37c10b7c003ec3b4a1638ab358164657 /src/undo.c
parent90dd3e4f462bfd4b220e400335a5d439b937942b (diff)
downloademacs-ff1aa840a4a72621bb5c0ece261e42c181757ea2.tar.gz
emacs-ff1aa840a4a72621bb5c0ece261e42c181757ea2.zip
(record_delete, record_marker_adjustment): Declare them as void.
Diffstat (limited to 'src/undo.c')
-rw-r--r--src/undo.c3
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)
86/* Record that a deletion is about to take place, 86/* Record that a deletion is about to take place,
87 for LENGTH characters at location BEG. */ 87 for LENGTH characters at location BEG. */
88 88
89void
89record_delete (beg, length) 90record_delete (beg, length)
90 int beg, length; 91 int beg, length;
91{ 92{
@@ -134,6 +135,7 @@ record_delete (beg, length)
134 because that's the only case where an automatic marker adjustment 135 because that's the only case where an automatic marker adjustment
135 won't be inverted automatically by undoing the buffer modification. */ 136 won't be inverted automatically by undoing the buffer modification. */
136 137
138void
137record_marker_adjustment (marker, adjustment) 139record_marker_adjustment (marker, adjustment)
138 Lisp_Object marker; 140 Lisp_Object marker;
139 int adjustment; 141 int adjustment;
@@ -158,6 +160,7 @@ record_marker_adjustment (marker, adjustment)
158 for LENGTH characters at location BEG. 160 for LENGTH characters at location BEG.
159 The replacement does not change the number of characters. */ 161 The replacement does not change the number of characters. */
160 162
163void
161record_change (beg, length) 164record_change (beg, length)
162 int beg, length; 165 int beg, length;
163{ 166{