aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1997-11-27 12:16:08 +0000
committerKenichi Handa1997-11-27 12:16:08 +0000
commit90dd3e4f462bfd4b220e400335a5d439b937942b (patch)
tree030a48670e354dd0d465cea2146de7bd46cdc4d4 /src
parentc9667ae1a905f9597e012e092bc8aaef1aa49dd7 (diff)
downloademacs-90dd3e4f462bfd4b220e400335a5d439b937942b.tar.gz
emacs-90dd3e4f462bfd4b220e400335a5d439b937942b.zip
(record_change, record_first_change,
record_property_change): Declare it as void.
Diffstat (limited to 'src')
-rw-r--r--src/undo.c3
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;
41 (It is possible to record an insertion before or after the fact 41 (It is possible to record an insertion before or after the fact
42 because we don't need to record the contents.) */ 42 because we don't need to record the contents.) */
43 43
44void
44record_insert (beg, length) 45record_insert (beg, length)
45 int beg, length; 46 int beg, length;
46{ 47{
@@ -168,6 +169,7 @@ record_change (beg, length)
168 Record the file modification date so that when undoing this entry 169 Record the file modification date so that when undoing this entry
169 we can tell whether it is obsolete because the file was saved again. */ 170 we can tell whether it is obsolete because the file was saved again. */
170 171
172void
171record_first_change () 173record_first_change ()
172{ 174{
173 Lisp_Object high, low; 175 Lisp_Object high, low;
@@ -191,6 +193,7 @@ record_first_change ()
191/* Record a change in property PROP (whose old value was VAL) 193/* Record a change in property PROP (whose old value was VAL)
192 for LENGTH characters starting at position BEG in BUFFER. */ 194 for LENGTH characters starting at position BEG in BUFFER. */
193 195
196void
194record_property_change (beg, length, prop, value, buffer) 197record_property_change (beg, length, prop, value, buffer)
195 int beg, length; 198 int beg, length;
196 Lisp_Object prop, value, buffer; 199 Lisp_Object prop, value, buffer;