aboutsummaryrefslogtreecommitdiff
path: root/src/interp/word.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/word.boot')
-rw-r--r--src/interp/word.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/word.boot b/src/interp/word.boot
index 3e299010..2f6feac1 100644
--- a/src/interp/word.boot
+++ b/src/interp/word.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
@@ -88,7 +88,7 @@ removeDupOrderedAlist u ==
-- removes duplicate entries in ordered alist
-- (where duplicates are adjacent)
for x in tails u repeat
- (y := rest x) and first first x = first first y => RPLACD(x,rest y)
+ (y := rest x) and first first x = first first y => x.rest := rest y
u
getListOfFunctionNames(fnames) ==