diff options
Diffstat (limited to 'src/interp/cparse.boot')
-rw-r--r-- | src/interp/cparse.boot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/cparse.boot b/src/interp/cparse.boot index d6cdfeda..04aee282 100644 --- a/src/interp/cparse.boot +++ b/src/interp/cparse.boot @@ -110,12 +110,12 @@ npPop1()== a npPop2()== - a:=CADR $stack + a:= second $stack RPLACD($stack,CDDR $stack) a npPop3()== - a:=CADDR $stack + a:= third $stack RPLACD(CDR $stack,CDDDR $stack) a |