1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-21 03:52:16 -08:00

Change.mps.dylan.kinglet.160296:

Next-method calls should not have to explicitly name the superclass
Fix forward references

Copied from Perforce
 Change: 21073
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Tony Mann 2000-01-11 17:36:24 +00:00
parent 76828009eb
commit ff5a2eecd0

View file

@ -1,6 +1,6 @@
/* impl.c.poolsnc: STACK NO CHECKING POOL CLASS
*
* $HopeName: MMsrc!poolsnc.c(trunk.9) $
* $HopeName: MMsrc!poolsnc.c(trunk.10) $
* Copyright (C) 1999. Harlequin Limited. All rights reserved.
*
* READERSHIP
@ -26,7 +26,7 @@
#include "mpm.h"
SRCID(poolsnc, "$HopeName: MMsrc!poolsnc.c(trunk.9) $");
SRCID(poolsnc, "$HopeName: MMsrc!poolsnc.c(trunk.10) $");
#define SNCSig ((Sig)0x519b754c) /* SIGPooLSNC */
@ -50,9 +50,11 @@ typedef struct SNCStruct {
PARENT(SNCStruct, poolStruct, (pool))
/* Forward declarations */
extern SegClass EnsureSNCSegClass(void);
extern BufferClass EnsureSNCBufClass(void);
static Bool SNCCheck(SNC snc);
static void sncPopPartialSegChain(SNC snc, Buffer buf, Seg upTo);