git » jacl.git » commit 8471133

minor lambda list analyzie

author Alan Dipert
2019-11-01 03:36:03 UTC
committer Alan Dipert
2019-11-01 03:36:03 UTC
parent 3d8f304277daf893bf9e69dc15889e80ca00e245

minor lambda list analyzie

jacl.js +1 -1

diff --git a/jacl.js b/jacl.js
index bfbe2f4..8cf7d69 100644
--- a/jacl.js
+++ b/jacl.js
@@ -1013,7 +1013,7 @@ const analyzeLambdaList = (env, parent, list) => {
       env = env.withLocals([spec.svar]);
     }
   }
-  if (sections.rest !== null)
+  if (sections.rest)
     env = env.withLocals([sections.rest])
   for (const spec of sections.key) {
     if (spec.initform !== UNDEFINED) {