1
Fork 0
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:
Pekka Pirinen 2000-11-03 20:32:07 +00:00
parent 0fe3f954bf
commit 200ec15a42

View file

@ -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 */