diff options
author | Colin Okay <okay@toyful.space> | 2022-03-02 07:44:14 -0600 |
---|---|---|
committer | Colin Okay <okay@toyful.space> | 2022-03-02 07:44:14 -0600 |
commit | 96b84375df956fcd8385e69d5f061bce0274a0b2 (patch) | |
tree | f808c931b45fe6406a195f97d9c387f6a584797d | |
parent | 1eac9e9281e7582e5995c14bc0003b551e28c85b (diff) |
removed unneeded readline hook
-rw-r--r-- | src/lib.lisp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib.lisp b/src/lib.lisp index 89ac890..c77619c 100644 --- a/src/lib.lisp +++ b/src/lib.lisp @@ -120,8 +120,6 @@ the directories that appear in the value of that variable." (defun tags-from-oneliner (oneliner) (remove-if-not #'executable-on-system-p (ppcre:split " +" oneliner))) -(rl:register-hook :signal (lambda () (uiop:quit))) - (defun prompt (prompt &key (expect (constantly t)) |