diff options
author | Colin Okay <okay@toyful.space> | 2022-03-01 06:52:42 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-03-01 06:52:42 -0600 |
commit | 4a79699d3ff174da9d440d146299ba5c41e4e4b3 (patch) | |
tree | 0b1627abe35d4f56d8b36e2c72a15238ac21c7c8 /src | |
parent | 850f5f38ad15871c92f4d800e757c844daf2f077 (diff) |
added help text about oneliner variables
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.lisp b/src/lib.lisp index 249fb70..6f7f377 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-Za-z_][A-Za-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) |