1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 15:21:51 -08:00

No keyword arguments needed in these cbsfastlandclass initializations.

Copied from Perforce
 Change: 185329
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-04-08 00:13:50 +01:00
parent 6432d58813
commit 262bb324f3
2 changed files with 4 additions and 6 deletions

View file

@ -279,9 +279,8 @@ static Res MVTInit(Pool pool, ArgList args)
if (abqDepth < 3)
abqDepth = 3;
MPS_ARGS_BEGIN(liArgs) {
res = LandInit(MVTCBS(mvt), CBSFastLandClassGet(), arena, align, mvt, liArgs);
} MPS_ARGS_END(liArgs);
res = LandInit(MVTCBS(mvt), CBSFastLandClassGet(), arena, align, mvt,
mps_args_none);
if (res != ResOK)
goto failCBS;

View file

@ -523,9 +523,8 @@ static Res MVFFInit(Pool pool, ArgList args)
if (res != ResOK)
goto failFreelistInit;
MPS_ARGS_BEGIN(liArgs) {
res = LandInit(CBSOfMVFF(mvff), CBSFastLandClassGet(), arena, align, mvff, liArgs);
} MPS_ARGS_END(liArgs);
res = LandInit(CBSOfMVFF(mvff), CBSFastLandClassGet(), arena, align, mvff,
mps_args_none);
if (res != ResOK)
goto failCBSInit;