aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/table.c
diff options
context:
space:
mode:
authorRichard Kistruck2008-11-07 13:56:12 +0000
committerRichard Kistruck2008-11-07 13:56:12 +0000
commitb79ab788a2c5882cf1b606845c67a59ae42571a4 (patch)
tree67ca70d1991e002a1e034664b22d87ad127a25b3 /mps/code/table.c
parent718a46bb8df041a06247886f732c84b024328508 (diff)
downloademacs-b79ab788a2c5882cf1b606845c67a59ae42571a4.tar.gz
emacs-b79ab788a2c5882cf1b606845c67a59ae42571a4.zip
mps br/timing: tabs in source files. (p4 diff -db -- confirms whitespace changes only).
Copied from Perforce Change: 166673 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/table.c')
-rw-r--r--mps/code/table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mps/code/table.c b/mps/code/table.c
index f719cb77616..e1db04202b3 100644
--- a/mps/code/table.c
+++ b/mps/code/table.c
@@ -23,7 +23,7 @@
23typedef unsigned long ulong; 23typedef unsigned long ulong;
24 24
25 25
26#define tableUNUSED ((Word)0x2AB7E040) 26#define tableUNUSED ((Word)0x2AB7E040)
27#define tableDELETED ((Word)0x2AB7EDE7) 27#define tableDELETED ((Word)0x2AB7EDE7)
28#define tableACTIVE ((Word)0x2AB7EAC2) 28#define tableACTIVE ((Word)0x2AB7EAC2)
29 29
@@ -87,11 +87,11 @@ static TableEntry TableFind(Table table, Word key, int skip_deleted)
87 switch (table->array[i].status) { 87 switch (table->array[i].status) {
88 case tableACTIVE: 88 case tableACTIVE:
89 if (table->array[i].key == key) 89 if (table->array[i].key == key)
90 return &table->array[i]; 90 return &table->array[i];
91 break; 91 break;
92 case tableDELETED: 92 case tableDELETED:
93 if (!skip_deleted) 93 if (!skip_deleted)
94 return &table->array[i]; 94 return &table->array[i];
95 break; 95 break;
96 case tableUNUSED: 96 case tableUNUSED:
97 return &table->array[i]; 97 return &table->array[i];