1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-19 01:10:57 -08:00

Fixing tabbing error on line 408

Copied from Perforce
 Change: 20555
 ServerID: perforce.ravenbrook.com
This commit is contained in:
David Jones 1999-02-11 12:33:12 +00:00
parent 76e4f3196b
commit 1bb8798176

View file

@ -1,6 +1,6 @@
/* impl.c.splay: SPLAY TREE IMPLEMENTATION
*
* $HopeName: MMsrc!splay.c(trunk.6) $
* $HopeName: MMsrc!splay.c(trunk.7) $
* Copyright (C) 1998 Harlequin Group plc, all rights reserved.
*
* .readership: Any MPS developer.
@ -22,7 +22,7 @@
#include "mpm.h"
SRCID(splay, "$HopeName: MMsrc!splay.c(trunk.6) $");
SRCID(splay, "$HopeName: MMsrc!splay.c(trunk.7) $");
/* Basic getter and setter methods */
#define SplayTreeRoot(t) RVALUE((t)->root)
@ -405,7 +405,7 @@ static Bool SplaySplay(SplayNode *nodeReturn, SplayTree tree,
switch(compareTopRight) {
case CompareEQUAL: { /* zag */
case CompareEQUAL: { /* zag */
SplayLinkLeft(&top, &leftLast);
found = TRUE;
goto assemble;