Hello Mike,
On Fri, Aug 4, 2017 at 7:29 AM, mike thomas mjt464@gmail.com wrote:
Is there a place to lodge bug reports on github for cffi?
The bug tracker lives here: https://bugs.launchpad.net/cffi.
@@ -33,7 +33,7 @@
;;; Utils (defun parse-command-flags (flags)
- (let ((separators '(#\Space #\Tab #\Newline #\Return)))
- (let ((separators '(#\Tab #\Newline #\Return))) (remove-if 'emptyp (split-string flags :separator separators))))
(defun parse-command-flags-list (strings)
I think this change will break the case where multiple flags are provided, since those are separated by spaces. I don't remember why we need to do this parsing at all. Do you feel like investigating that?
Cheers,