diff options
author | Colin Okay <okay@toyful.space> | 2022-03-13 10:57:54 -0500 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-03-13 10:57:54 -0500 |
commit | 3236933be611f91183ea6b61890c7fbd0b892d8b (patch) | |
tree | 96f51cc630fd19057ad5d6dbb4e8db7fe39efcf4 | |
parent | 3a412cda20b45a2e6617d43e66c6c006924dad88 (diff) |
removed spurious function
-rw-r--r-- | app/app.lisp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/app/app.lisp b/app/app.lisp index 316b917..affb0b7 100644 --- a/app/app.lisp +++ b/app/app.lisp @@ -203,14 +203,6 @@ than the users." :end2 (length header))) return item)) -(defun prepare-oneliner-arguments (arguments) - "Takes a list of arguments, as gathered by (REMAINDER), and returns - a list that looks like (ID-OR-NAME . ARGS) where ID-OR-NAME is - either an integer or a string." - (a:if-let (id (parse-integer (first arguments) :junk-allowed t)) - (cons id (rest arguments)) - arguments)) - ;;; MAIN ENTRY POINT (defun main () |