* *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*

macros and SCM_DEFINE macros to match GNU coding standards.
This commit is contained in:
Greg J. Badros 2000-01-05 19:25:37 +00:00
commit 3b3b36ddb7
61 changed files with 730 additions and 730 deletions

View file

@ -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