diff options
author | colin <colin@cicadas.surf> | 2023-07-29 08:41:50 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-07-29 08:41:50 -0700 |
commit | 803f04aee3860545b0743808fb53f05d2a42bc37 (patch) | |
tree | e555f27f6dba40595772d3376854bbdb1342c299 | |
parent | a9113e6663ff2436cbeb6b0f0c32d9b387a045b5 (diff) |
rule name expander bindings should be ignorable not ignored
-rw-r--r-- | argot.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -121,7 +121,7 @@ and it returns VAR in that case." ((consp action) (list initarg `(lambda (,bindings-var) (let ,bindings - (declare (ignore ,lhs)) + (declare (ignorable ,lhs)) ,action)))))) (rule-includer (name lhs pattern &optional check action bindings) `(include-rule |