changeset 20372:259194f66d40

(record_change, record_first_change, record_property_change): Declare it as void.
author Kenichi Handa <handa@m17n.org>
date Thu, 27 Nov 1997 12:16:08 +0000
parents 976eed15d6b5
children b6c215dec8c8
files src/undo.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;