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:
parent
6432d58813
commit
262bb324f3
2 changed files with 4 additions and 6 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue