aboutsummaryrefslogtreecommitdiff
path: root/src/interp/astr.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/astr.boot')
-rw-r--r--src/interp/astr.boot6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interp/astr.boot b/src/interp/astr.boot
index 16a3764c..32f656fb 100644
--- a/src/interp/astr.boot
+++ b/src/interp/astr.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
@@ -77,8 +77,8 @@ ncPutQ(x,k,v) ==
r := QASSQ(k,ncAlist x)
if null r then
r := [[k,:v], :ncAlist x]
- RPLACA(x,[ncTag x,:r])
+ x.first := [ncTag x,:r]
else
- RPLACD(r,v)
+ r.rest := v
v