mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(gc) takes no arguments, so check this.
Copied from Perforce Change: 180075 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
68790f5b8c
commit
591065565e
1 changed files with 3 additions and 1 deletions
|
|
@ -2651,7 +2651,9 @@ static obj_t entry_string_copy(obj_t env, obj_t op_env, obj_t operator, obj_t op
|
|||
|
||||
static obj_t entry_gc(obj_t env, obj_t op_env, obj_t operator, obj_t operands)
|
||||
{
|
||||
mps_res_t res = mps_arena_collect(arena);
|
||||
mps_res_t res;
|
||||
eval_args(operator->operator.name, env, op_env, operands, 0);
|
||||
res = mps_arena_collect(arena);
|
||||
if (res != MPS_RES_OK)
|
||||
error("Couldn't collect: %d", res);
|
||||
mps_arena_release(arena);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue