diff options
Diffstat (limited to 'src/interp/i-eval.boot')
-rw-r--r-- | src/interp/i-eval.boot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/i-eval.boot b/src/interp/i-eval.boot index 943f56ad..025d9597 100644 --- a/src/interp/i-eval.boot +++ b/src/interp/i-eval.boot @@ -1,6 +1,6 @@ -- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. -- All rights reserved. --- Copyright (C) 2007-2009, Gabriel Dos Reis. +-- Copyright (C) 2007-2010, Gabriel Dos Reis. -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without @@ -96,7 +96,7 @@ evaluateType0 form == domain:= isDomainValuedVariable form => domain form = $EmptyMode => form form = "?" => $EmptyMode - STRINGP form => form + string? form => form form = "$" => form $expandSegments : local := nil form is ['typeOf,.] => @@ -138,7 +138,7 @@ evaluateType form == domain:= isDomainValuedVariable form => domain form = $EmptyMode => form form = "?" => $EmptyMode - STRINGP form => form + string? form => form form = "$" => form $expandSegments : local := nil form is ['typeOf,.] => |