diff options
| author | Richard Brooksby | 2012-09-05 18:44:44 +0100 |
|---|---|---|
| committer | Richard Brooksby | 2012-09-05 18:44:44 +0100 |
| commit | 915c01ef3ebe171e34dfb786b91be5a8e4057e5e (patch) | |
| tree | 598e11374e93c3dd9ff4791ba4710d1cade82cf1 /mps/code/root.c | |
| parent | 10470d39742cae58c8906c08f8145c06b71aad20 (diff) | |
| parent | b6e7805b6f870b335c678e2406869933a5cac43b (diff) | |
| download | emacs-915c01ef3ebe171e34dfb786b91be5a8e4057e5e.tar.gz emacs-915c01ef3ebe171e34dfb786b91be5a8e4057e5e.zip | |
Merging branch/2012-08-15/variety-reform.
Copied from Perforce
Change: 179279
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/root.c')
| -rw-r--r-- | mps/code/root.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mps/code/root.c b/mps/code/root.c index bd2dd21f5ea..e746d3c1b61 100644 --- a/mps/code/root.c +++ b/mps/code/root.c | |||
| @@ -380,7 +380,7 @@ void RootDestroy(Root root) | |||
| 380 | 380 | ||
| 381 | Arena RootArena(Root root) | 381 | Arena RootArena(Root root) |
| 382 | { | 382 | { |
| 383 | AVER(CHECKT(Root, root)); | 383 | AVER(TESTT(Root, root)); |
| 384 | return root->arena; | 384 | return root->arena; |
| 385 | } | 385 | } |
| 386 | 386 | ||
| @@ -584,7 +584,7 @@ Res RootDescribe(Root root, mps_lib_FILE *stream) | |||
| 584 | { | 584 | { |
| 585 | Res res; | 585 | Res res; |
| 586 | 586 | ||
| 587 | if (!CHECKT(Root, root)) return ResFAIL; | 587 | if (!TESTT(Root, root)) return ResFAIL; |
| 588 | if (stream == NULL) return ResFAIL; | 588 | if (stream == NULL) return ResFAIL; |
| 589 | 589 | ||
| 590 | res = WriteF(stream, | 590 | res = WriteF(stream, |