spelling
original commit: f558aa03e44384d9515c3a9b69d48cde4292f38b
This commit is contained in:
parent
d60a41a363
commit
b76e20e61c
|
@ -130,7 +130,7 @@ void S_gc_init() {
|
||||||
S_G.countof_size[countof_guardian] = 0;
|
S_G.countof_size[countof_guardian] = 0;
|
||||||
for (i = 0; i < countof_types; i += 1) {
|
for (i = 0; i < countof_types; i += 1) {
|
||||||
if (Svector_ref(S_G.countof_names, i) == FIX(0)) {
|
if (Svector_ref(S_G.countof_names, i) == FIX(0)) {
|
||||||
fprintf(stderr, "unitialized countof_name at index %d\n", i);
|
fprintf(stderr, "uninitialized countof_name at index %d\n", i);
|
||||||
S_abnormal_exit();
|
S_abnormal_exit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -620,7 +620,7 @@ static IBOOL find_boot(name, ext, errorp) const char *name, *ext; IBOOL errorp;
|
||||||
Sschemeheapdirs, Sdefaultheapdirs);
|
Sschemeheapdirs, Sdefaultheapdirs);
|
||||||
S_abnormal_exit();
|
S_abnormal_exit();
|
||||||
} else {
|
} else {
|
||||||
if (verbose) fprintf(stderr, "no compatable %s%s found\n", name, ext);
|
if (verbose) fprintf(stderr, "no compatible %s%s found\n", name, ext);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -605,7 +605,7 @@ At optimize-levels 0, 1, and 2, code generated by the compiler is
|
||||||
At optimize-level 3, code generated by the compiler is \fIunsafe\fP,
|
At optimize-level 3, code generated by the compiler is \fIunsafe\fP,
|
||||||
i.e., may omit these checks.
|
i.e., may omit these checks.
|
||||||
Unsafe code is usually faster, but optimize-level 3 should be used only
|
Unsafe code is usually faster, but optimize-level 3 should be used only
|
||||||
for well-tested code since the absense of type and bounds checks may
|
for well-tested code since the absence of type and bounds checks may
|
||||||
result in invalid memory references, corruption of the Scheme heap (which
|
result in invalid memory references, corruption of the Scheme heap (which
|
||||||
may cause seemingly unrelated problems later), system crashes, or other
|
may cause seemingly unrelated problems later), system crashes, or other
|
||||||
undesirable behaviors.
|
undesirable behaviors.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user