mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-23 12:00:21 +02:00
* Various minor improvements, for example signedness fixes.
This commit is contained in:
parent
0c02b40803
commit
5843e5c988
6 changed files with 73 additions and 48 deletions
|
@ -149,10 +149,9 @@ SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0,
|
|||
"@code{#f}.")
|
||||
#define FUNC_NAME s_scm_fluid_ref
|
||||
{
|
||||
long n;
|
||||
unsigned long int n;
|
||||
|
||||
SCM_VALIDATE_FLUID (1, fluid);
|
||||
|
||||
n = SCM_FLUID_NUM (fluid);
|
||||
|
||||
if (SCM_VECTOR_LENGTH (scm_root->fluids) <= n)
|
||||
|
@ -166,7 +165,7 @@ SCM_DEFINE (scm_fluid_set_x, "fluid-set!", 2, 0, 0,
|
|||
"Set the value associated with @var{fluid} in the current dynamic root.")
|
||||
#define FUNC_NAME s_scm_fluid_set_x
|
||||
{
|
||||
long n;
|
||||
unsigned long int n;
|
||||
|
||||
SCM_VALIDATE_FLUID (1, fluid);
|
||||
n = SCM_FLUID_NUM (fluid);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue