1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

Changes from arch/CVS synchronization

This commit is contained in:
Ludovic Courtès 2007-12-13 12:27:37 +00:00
parent 2ae87f26a8
commit 70a4404429
4 changed files with 14 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-12-13 Stephen Compall <s11@member.fsf.org>
* srfi-69.scm (without-keyword-args): Use `cdr' instead of
`rest'.
2007-12-03 Stephen Compall <s11@member.fsf.org>
* srfi-69.scm: New file.

View file

@ -143,7 +143,7 @@ follow them."
(cond ((null? rest-list) (reverse! acc))
((keyword? (first rest-list))
(lp acc (cddr rest-list)))
(else (lp (cons (first rest-list) acc) (rest rest-list))))))
(else (lp (cons (first rest-list) acc) (cdr rest-list))))))
(define (guile-ht-ctor weakness)
"Answer the Guile HT constructor for the given WEAKNESS."