mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Remove extraneous semicolon after `SCM_ARRAY_IMPLEMENTATION' & co.
* libguile/bitvectors.c, libguile/srfi-4.c, libguile/strings.c, libguile/vectors.c: Remove extraneous semicolon after `SCM_ARRAY_IMPLEMENTATION' and `SCM_VECTOR_IMPLEMENTATION' invocations.
This commit is contained in:
parent
1bf291e497
commit
f65e0168d5
5 changed files with 9 additions and 9 deletions
|
@ -1129,7 +1129,7 @@ array_get_handle (SCM array, scm_t_array_handle *h)
|
|||
SCM_ARRAY_IMPLEMENTATION (SCM_SMOB_TYPE_BITS (scm_i_tc16_array),
|
||||
SCM_SMOB_TYPE_MASK,
|
||||
array_handle_ref, array_handle_set,
|
||||
array_get_handle);
|
||||
array_get_handle)
|
||||
|
||||
void
|
||||
scm_init_arrays ()
|
||||
|
|
|
@ -881,8 +881,8 @@ bitvector_get_handle (SCM bv, scm_t_array_handle *h)
|
|||
SCM_ARRAY_IMPLEMENTATION (SCM_SMOB_TYPE_BITS (scm_tc16_bitvector),
|
||||
SCM_SMOB_TYPE_MASK,
|
||||
bitvector_handle_ref, bitvector_handle_set,
|
||||
bitvector_get_handle);
|
||||
SCM_VECTOR_IMPLEMENTATION (SCM_ARRAY_ELEMENT_TYPE_BIT, scm_make_bitvector);
|
||||
bitvector_get_handle)
|
||||
SCM_VECTOR_IMPLEMENTATION (SCM_ARRAY_ELEMENT_TYPE_BIT, scm_make_bitvector)
|
||||
|
||||
void
|
||||
scm_init_bitvectors ()
|
||||
|
|
|
@ -886,7 +886,7 @@ uvec_get_handle (SCM v, scm_t_array_handle *h)
|
|||
SCM_ARRAY_IMPLEMENTATION (SCM_SMOB_TYPE_BITS (scm_tc16_uvec),
|
||||
SCM_SMOB_TYPE_MASK,
|
||||
uvec_handle_ref, uvec_handle_set,
|
||||
uvec_get_handle);
|
||||
uvec_get_handle)
|
||||
|
||||
void
|
||||
scm_init_srfi_4 (void)
|
||||
|
|
|
@ -1893,8 +1893,8 @@ string_get_handle (SCM v, scm_t_array_handle *h)
|
|||
|
||||
SCM_ARRAY_IMPLEMENTATION (scm_tc7_string, 0x7f & ~2,
|
||||
string_handle_ref, string_handle_set,
|
||||
string_get_handle);
|
||||
SCM_VECTOR_IMPLEMENTATION (SCM_ARRAY_ELEMENT_TYPE_CHAR, scm_make_string);
|
||||
string_get_handle)
|
||||
SCM_VECTOR_IMPLEMENTATION (SCM_ARRAY_ELEMENT_TYPE_CHAR, scm_make_string)
|
||||
|
||||
void
|
||||
scm_init_strings ()
|
||||
|
|
|
@ -627,11 +627,11 @@ vector_get_handle (SCM v, scm_t_array_handle *h)
|
|||
|
||||
SCM_ARRAY_IMPLEMENTATION (scm_tc7_vector, 0x7f & ~2,
|
||||
vector_handle_ref, vector_handle_set,
|
||||
vector_get_handle);
|
||||
vector_get_handle)
|
||||
SCM_ARRAY_IMPLEMENTATION (scm_tc7_wvect, 0x7f & ~2,
|
||||
vector_handle_ref, vector_handle_set,
|
||||
vector_get_handle);
|
||||
SCM_VECTOR_IMPLEMENTATION (SCM_ARRAY_ELEMENT_TYPE_SCM, scm_make_vector);
|
||||
vector_get_handle)
|
||||
SCM_VECTOR_IMPLEMENTATION (SCM_ARRAY_ELEMENT_TYPE_SCM, scm_make_vector)
|
||||
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue