diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-06-01 20:21:15 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-06-01 20:21:15 -0700 |
commit | 025c74ed0d842e131cfe4b642cec233a03b5418f (patch) | |
tree | e3d4a4c3be5e6fc3e8e3db7af7d6409d5e344014 | |
parent | 257672152b93c08f573db2912eef2b9a4145d5f5 (diff) | |
download | tl-who-025c74ed0d842e131cfe4b642cec233a03b5418f.tar.gz tl-who-025c74ed0d842e131cfe4b642cec233a03b5418f.tar.bz2 tl-who-025c74ed0d842e131cfe4b642cec233a03b5418f.zip |
bugfix: mistake in pattern.
* who.tl (tree-to-template): Run-on-dot in the
pattern whch detects second level of keyword nesting.
Actually, it's not clear what this nesting is for.
When would we want a ((:p ..) ...) or whatever.
I will review this; it might be CL-WHO cruft that
has no purpose. No test case broke because of this
bug, which means it's not tested.
-rw-r--r-- | who.tl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,7 +209,7 @@ (match-case element (@(or @(keywordp) (@(keywordp) . @nil) - ((@(keywordp) .@nil) . @nil)) + ((@(keywordp) . @nil) . @nil)) ;; the syntax for a tag - process it (ncon [process-tag element tree-to-template])) ((noesc @(constantp @item)) |