Skip to content
Snippets Groups Projects
Commit 5a1ba262 authored by Kevin Rosenberg's avatar Kevin Rosenberg
Browse files

On ECL, exclude function that is incompatible with ECL

parent 43a47b24
No related branches found
No related tags found
No related merge requests found
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> 26 Jul 2009 Kevin Rosenberg <kevin@rosenberg.net>
* Version 1.99 * Version 1.99
* impl.lisp: Update SBCL internal call for probe-directory * impl.lisp: Update SBCL internal call for probe-directory
......
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 cl-kmrcl (1.99-4) unstable; urgency=low
* Build with debhelper extension dh-lisp * Build with debhelper extension dh-lisp
......
...@@ -4,7 +4,7 @@ Priority: optional ...@@ -4,7 +4,7 @@ Priority: optional
Maintainer: Kevin M. Rosenberg <kmr@debian.org> Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Build-Depends-Indep: dh-lisp Build-Depends-Indep: dh-lisp
Build-Depends: debhelper (>= 7.0.0) Build-Depends: debhelper (>= 7.0.0)
Standards-Version: 3.8.2.0 Standards-Version: 3.8.3.0
Homepage: http://files.b9.com/kmrcl/ Homepage: http://files.b9.com/kmrcl/
Vcs-Git: git://git.b9.com/kmrcl.git Vcs-Git: git://git.b9.com/kmrcl.git
Vcs-Browser: http://git.b9.com/?p=kmrcl.git Vcs-Browser: http://git.b9.com/?p=kmrcl.git
......
...@@ -81,6 +81,8 @@ ...@@ -81,6 +81,8 @@
;;; Keyword functions ;;; Keyword functions
;; ECL doesn't allow FOR clauses after UNTIL.
#-ecl
(defun remove-keyword (key arglist) (defun remove-keyword (key arglist)
(loop for sublist = arglist then rest until (null sublist) (loop for sublist = arglist then rest until (null sublist)
for (elt arg . rest) = sublist for (elt arg . rest) = sublist
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment