aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-28 20:36:51 -0600
committerColin Okay <okay@toyful.space>2022-02-28 20:36:51 -0600
commitf4404c0a0f679825a148ae1ec4f4b1e46a0c9d01 (patch)
tree5b02d0b32deec4a75ec1c85041bee5da27c3cf28 /src
parent33c391cef1586ed3d72fd84f95e6d947fc6adedd (diff)
named vars in oneliners are no longer all caps
Diffstat (limited to 'src')
-rw-r--r--src/lib.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.lisp b/src/lib.lisp
index fd303c0..249fb70 100644
--- a/src/lib.lisp
+++ b/src/lib.lisp
@@ -187,7 +187,7 @@ the directories that appear in the value of that variable."
(defun collect-named-arguments (oneliner)
(remove-duplicates
- (ppcre:all-matches-as-strings "#[A-Z_][A-Z0-9_]*" oneliner)
+ (ppcre:all-matches-as-strings "#[A-Za-z_][A-Za-z0-9_]*" oneliner)
:test #'equal))
(defun handle-run-oneliner (ol &optional clip)