1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 00:30:37 -08:00

Add -wconversion to the options for gcc. ensure that the mps builds.

Copied from Perforce
 Change: 185463
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gareth Rees 2014-04-11 14:25:15 +01:00
parent 3a36920e40
commit 93a79ac8a6
15 changed files with 47 additions and 31 deletions

View file

@ -1075,7 +1075,7 @@ static Res bufferTrivInit(Buffer buffer, Pool pool, ArgList args)
AVERT(Buffer, buffer);
AVERT(Pool, pool);
UNUSED(args);
EVENT3(BufferInit, buffer, pool, buffer->isMutator);
EVENT3(BufferInit, buffer, pool, BOOL(buffer->isMutator));
return ResOK;
}
@ -1288,7 +1288,7 @@ static Res segBufInit(Buffer buffer, Pool pool, ArgList args)
segbuf->rankSet = RankSetEMPTY;
AVERT(SegBuf, segbuf);
EVENT3(BufferInitSeg, buffer, pool, buffer->isMutator);
EVENT3(BufferInitSeg, buffer, pool, BOOL(buffer->isMutator));
return ResOK;
}
@ -1515,7 +1515,7 @@ static Res rankBufInit(Buffer buffer, Pool pool, ArgList args)
BufferSetRankSet(buffer, RankSetSingle(rank));
/* There's nothing to check that the superclass doesn't, so no AVERT. */
EVENT4(BufferInitRank, buffer, pool, buffer->isMutator, rank);
EVENT4(BufferInitRank, buffer, pool, BOOL(buffer->isMutator), rank);
return ResOK;
}