aboutsummaryrefslogtreecommitdiff
path: root/src/util.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-12 14:21:05 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-15 17:18:39 -0700
commit603731a0160cd3a1073ee1ba6dbab9793c50a505 (patch)
treeec2267f336eb452bbbeb1f5cd1d6180ff840f078 /src/util.lisp
parent7168d66878406fcebb2c2df0f41cddcbcc077861 (diff)
downloadconsfigurator-603731a0160cd3a1073ee1ba6dbab9793c50a505.tar.gz
slightly simplify ORDINARY-LL-WITHOUT-&AUX
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/util.lisp')
-rw-r--r--src/util.lisp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/util.lisp b/src/util.lisp
index c8fe7c8..ecf1d3b 100644
--- a/src/util.lisp
+++ b/src/util.lisp
@@ -56,8 +56,7 @@ expand into errors."
(defun ordinary-ll-without-&aux (ll)
(loop for arg in ll
- if (symbol-named &aux arg)
- return accum
+ if (eq '&aux arg) return accum
else collect arg into accum
finally (return accum)))