diff options
Diffstat (limited to 'src/interp/g-cndata.boot')
-rw-r--r-- | src/interp/g-cndata.boot | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/interp/g-cndata.boot b/src/interp/g-cndata.boot index 819fb583..5f90bc61 100644 --- a/src/interp/g-cndata.boot +++ b/src/interp/g-cndata.boot @@ -1,6 +1,6 @@ -- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd. -- All rights reserved. --- Copyright (C) 2007-2010, Gabriel Dos Reis. +-- Copyright (C) 2007-2011, Gabriel Dos Reis. -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without @@ -200,10 +200,11 @@ unabbrev1(u,modeIfTrue) == u unabbrevSpecialForms(op,arglist,modeIfTrue) == - op = 'Mapping => [op,:[unabbrev1(a,modeIfTrue) for a in arglist]] - op = 'Union => + op in '(Mapping MappingCategory) => + [op,:[unabbrev1(a,modeIfTrue) for a in arglist]] + op in '(Union UnionCategory) => [op,:[unabbrevUnionComponent(a,modeIfTrue) for a in arglist]] - op = 'Record => + op in '(Record RecordCategory) => [op,:[unabbrevRecordComponent(a,modeIfTrue) for a in arglist]] nil |