mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-18 08:51:45 -08:00
Change enums away from 0
Copied from Perforce Change: 21577 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
0fe3f954bf
commit
200ec15a42
1 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
/* impl.c.poolamc: AUTOMATIC MOSTLY-COPYING MEMORY POOL CLASS
|
||||
*
|
||||
* $HopeName: MMsrc!poolamc.c(trunk.49) $
|
||||
* $HopeName: MMsrc!poolamc.c(trunk.50) $
|
||||
* Copyright (C) 2000 Harlequin Limited. All rights reserved.
|
||||
*
|
||||
* .sources: design.mps.poolamc.
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
#include "mpscamc.h"
|
||||
#include "mpm.h"
|
||||
|
||||
SRCID(poolamc, "$HopeName: MMsrc!poolamc.c(trunk.49) $");
|
||||
SRCID(poolamc, "$HopeName: MMsrc!poolamc.c(trunk.50) $");
|
||||
|
||||
|
||||
/* PType enumeration -- distinguishes AMCGen and AMCNailBoard */
|
||||
|
|
@ -56,7 +56,7 @@ typedef struct AMCGenStruct {
|
|||
|
||||
#define AMCRampGen (TraceTopGen+1)
|
||||
|
||||
enum { outsideRamp, beginRamp, ramping, finishRamp, collectingRamp };
|
||||
enum {outsideRamp = 1, beginRamp, ramping, finishRamp, collectingRamp};
|
||||
|
||||
|
||||
/* AMCNailBoard -- the nail board */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue