core: Prepare for conversion to pointer cells.
* src/posix.c (execl_): Prepare for conversion to pointer cells.
This commit is contained in:
parent
96809cadf1
commit
a25dff6837
|
@ -305,7 +305,8 @@ execl_ (SCM file_name, SCM args) /*:((name . "execl")) */
|
||||||
while (args != cell_nil)
|
while (args != cell_nil)
|
||||||
{
|
{
|
||||||
assert_msg (TYPE (CAR (args)) == TSTRING, "TYPE (CAR (args)) == TSTRING");
|
assert_msg (TYPE (CAR (args)) == TSTRING, "TYPE (CAR (args)) == TSTRING");
|
||||||
c_argv[i] = CSTRING (CAR (args));
|
SCM arg = CAR (args);
|
||||||
|
c_argv[i] = CSTRING (arg);
|
||||||
i = i + 1;
|
i = i + 1;
|
||||||
args = CDR (args);
|
args = CDR (args);
|
||||||
if (g_debug > 2)
|
if (g_debug > 2)
|
||||||
|
|
Loading…
Reference in a new issue