diff options
-rw-r--r-- | share/txr/stdlib/compiler.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/txr/stdlib/compiler.tl b/share/txr/stdlib/compiler.tl index cd7eb719..47abbeab 100644 --- a/share/txr/stdlib/compiler.tl +++ b/share/txr/stdlib/compiler.tl @@ -60,7 +60,7 @@ (:method lookup-fun (me sym) (condlet - (((cell (assoc me.fb sym))) (cdr cell)) + (((cell (assoc sym me.fb))) (cdr cell)) (((up me.up)) up.(lookup-fun sym)) (t nil))) |