aboutsummaryrefslogtreecommitdiff
path: root/src/interp/termrw.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/termrw.boot')
-rw-r--r--src/interp/termrw.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/termrw.boot b/src/interp/termrw.boot
index aa3283f2..3df5ce55 100644
--- a/src/interp/termrw.boot
+++ b/src/interp/termrw.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
@@ -108,7 +108,7 @@ mergeSubs(S1,S2) ==
-- S1 doesn't contain any of the variables of S2
null S1 => S2
null S2 => S1
- S3 := [p for p in S2 | not ASSQ(first p, S1)]
+ S3 := [p for p in S2 | objectAssoc(first p, S1) = nil]
-- for p in S1 repeat S3:= augmentSub(first p,rest p,S3)
append(S1,S3)