diff --git a/ChangeLog b/ChangeLog index d07a4b01cb1899b3f0f34c182282a2afde16c0b7..2a8031d185accfd5207df4d072b5d60031cd04cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +20 Aug 2009 Kevin Rosenberg <kevin@rosenberg.net> + * Version 1.100 + * lists.lisp: For ECL, exclude function that is incompatible with ECL + (Thanks to Daniel Herring) + 26 Jul 2009 Kevin Rosenberg <kevin@rosenberg.net> * Version 1.99 * impl.lisp: Update SBCL internal call for probe-directory diff --git a/debian/changelog b/debian/changelog index 4adf21dd2a6ab4b9efd6bc954661efa0cd636b14..bf103bddbbe0479cf58a710f4736c687cf391ddb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-kmrcl (1.100-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg <kmr@debian.org> Thu, 20 Aug 2009 10:48:16 -0600 + cl-kmrcl (1.99-4) unstable; urgency=low * Build with debhelper extension dh-lisp diff --git a/debian/control b/debian/control index ced63c740bd2f792ce4da9d863b98e99f68b5caf..efaad0c654c161880882c77c5b342ed0c7133ce7 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Kevin M. Rosenberg <kmr@debian.org> Build-Depends-Indep: dh-lisp Build-Depends: debhelper (>= 7.0.0) -Standards-Version: 3.8.2.0 +Standards-Version: 3.8.3.0 Homepage: http://files.b9.com/kmrcl/ Vcs-Git: git://git.b9.com/kmrcl.git Vcs-Browser: http://git.b9.com/?p=kmrcl.git diff --git a/lists.lisp b/lists.lisp index b51c41a5072c396e1bf0a3f7ead8d292d14226be..5cd193cefe96910174ef1c9a9a5039c0b1c9b7b5 100644 --- a/lists.lisp +++ b/lists.lisp @@ -81,6 +81,8 @@ ;;; Keyword functions +;; ECL doesn't allow FOR clauses after UNTIL. +#-ecl (defun remove-keyword (key arglist) (loop for sublist = arglist then rest until (null sublist) for (elt arg . rest) = sublist