author | Alan Dipert
<alan@dipert.org> 2020-07-03 14:06:15 UTC |
committer | Alan Dipert
<alan@dipert.org> 2020-07-03 14:06:15 UTC |
parent | 887b82dda30cb1f8d10fe3197d160a166d4247df |
jacl.js | +1 | -1 |
diff --git a/jacl.js b/jacl.js index ac3cd7c..7f922e0 100644 --- a/jacl.js +++ b/jacl.js @@ -1147,7 +1147,7 @@ const parseLambdaList = (list, isMacro) => { if (!(x instanceof LispSymbol)) throw new Error(`&${state.toUpperCase()} parameter not a symbol`); sections[state] = x; - state = 'after-${state}'; + state = `after-${state}`; break; case 'after-body': case 'after-rest':