mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-14 07:20:35 -08:00
Change enums away from 0
Copied from Perforce Change: 21581 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
9f9c4daa5b
commit
bf8dbaaaf3
1 changed files with 2 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
|||
/* impl.c.eventrep: Allocation replayer routines
|
||||
* Copyright (C) 2000 Harlequin Limited. All rights reserved.
|
||||
*
|
||||
* $HopeName: MMsrc!eventrep.c(MMdevel_alloc_replay.1) $
|
||||
* $HopeName: MMsrc!eventrep.c(trunk.2) $
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
|
@ -54,7 +54,7 @@ static Table apTable; /* dictionary of apReps */
|
|||
|
||||
/* poolSupport -- describes pool support for explicit deallocation */
|
||||
|
||||
enum {supportTruncate, supportFree, supportNothing};
|
||||
enum {supportTruncate = 1, supportFree, supportNothing};
|
||||
typedef int poolSupport;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue