mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 23:50:19 +02:00
* *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*
macros and SCM_DEFINE macros to match GNU coding standards.
This commit is contained in:
parent
cbaee92a8b
commit
3b3b36ddb7
61 changed files with 730 additions and 730 deletions
|
@ -392,7 +392,7 @@ SCM_DEFINE (scm_set_object_procedure_x, "set-object-procedure!", 2, 0, 0,
|
|||
obj,
|
||||
SCM_ARG1,
|
||||
FUNC_NAME);
|
||||
SCM_VALIDATE_PROC(2,proc);
|
||||
SCM_VALIDATE_PROC (2,proc);
|
||||
if (SCM_I_ENTITYP (obj))
|
||||
SCM_ENTITY_PROCEDURE (obj) = proc;
|
||||
else
|
||||
|
@ -443,8 +443,8 @@ SCM_DEFINE (scm_make_class_object, "make-class-object", 2, 0, 0,
|
|||
#define FUNC_NAME s_scm_make_class_object
|
||||
{
|
||||
unsigned long flags = 0;
|
||||
SCM_VALIDATE_STRUCT(1,metaclass);
|
||||
SCM_VALIDATE_STRING(2,layout);
|
||||
SCM_VALIDATE_STRUCT (1,metaclass);
|
||||
SCM_VALIDATE_STRING (2,layout);
|
||||
if (metaclass == scm_metaclass_operator)
|
||||
flags = SCM_CLASSF_OPERATOR;
|
||||
return scm_i_make_class_object (metaclass, layout, flags);
|
||||
|
@ -457,8 +457,8 @@ SCM_DEFINE (scm_make_subclass_object, "make-subclass-object", 2, 0, 0,
|
|||
#define FUNC_NAME s_scm_make_subclass_object
|
||||
{
|
||||
SCM pl;
|
||||
SCM_VALIDATE_STRUCT(1,class);
|
||||
SCM_VALIDATE_STRING(2,layout);
|
||||
SCM_VALIDATE_STRUCT (1,class);
|
||||
SCM_VALIDATE_STRING (2,layout);
|
||||
pl = SCM_STRUCT_DATA (class)[scm_vtable_index_layout];
|
||||
/* Convert symbol->string */
|
||||
pl = scm_makfromstr (SCM_CHARS (pl), (scm_sizet) SCM_LENGTH (pl), 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue