[alexandria-devel] ALEXANDRIA:COPY-STREAM broken

2012-03-06 Thread Zach Beane
ALEXANDRIA:COPY-STREAM currently calls ( start end) even when END is NIL. This breaks COPY-FILE unconditionally and COPY-STREAM whenever END (or, less likely, START) is NIL. Zach ___ alexandria-devel mailing list alexandria-devel@common-lisp.net

Re: [alexandria-devel] Question about FORMAT-SYMBOL

2012-07-30 Thread Zach Beane
Faré fah...@gmail.com writes: Also can alexandria depend on asdf? I very much hope not. I do not want to see any new practices that make it more difficult to replace ADSF when the time comes. ASDF is not a utility library. Zach ___ alexandria-devel

Re: [alexandria-devel] Implementation of DELETE-FROM-PLIST

2013-02-24 Thread Zach Beane
James M. Lawrence llmjj...@gmail.com writes: Using two loops seems awkward to me. How about one? (defun delete-from-plist (plist rest keys) (loop with head = plist with tail = nil for (key . rest) on plist by #'cddr do (assert rest () Expected a proper plist, got