Only include strings.h where it is actually needed.
[bpt/guile.git] / libguile / srcprop.c
index 06442b9..c0845b3 100644 (file)
 #include <stdio.h>
 #include "_scm.h"
 #include "smob.h"
-#include "genio.h"
 #include "alist.h"
 #include "debug.h"
 #include "hashtab.h"
 #include "hash.h"
+#include "ports.h"
 #include "weaks.h"
 
-#include "scm_validate.h"
+#include "validate.h"
 #include "srcprop.h"
 \f
 /* {Source Properties}
@@ -281,7 +281,7 @@ SCM_DEFINE (scm_set_source_property_x, "set-source-property!", 3, 0, 0,
     }
   else if (scm_sym_line == key)
     {
-      SCM_VALIDATE_INUM(3,datum);
+      SCM_VALIDATE_INUM (3,datum);
       if (SRCPROPSP (p))
        SETSRCPROPLINE (p, SCM_INUM (datum));
       else
@@ -291,7 +291,7 @@ SCM_DEFINE (scm_set_source_property_x, "set-source-property!", 3, 0, 0,
     }
   else if (scm_sym_column == key)
     {
-      SCM_VALIDATE_INUM(3,datum);
+      SCM_VALIDATE_INUM (3,datum);
       if (SRCPROPSP (p))
        SETSRCPROPCOL (p, SCM_INUM (datum));
       else