summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Arthur A. Gleckler 2022-09-19 20:36:10 -0700
committerGravatar Arthur A. Gleckler 2022-09-19 20:36:10 -0700
commita893afd4f6a7a515f555fd09b003a3e7ec7a310c (patch)
treed0285391ecedae7b81a2b0a4da01880ebd363c01
parentMerge branch 'master' of github.com:johnwcowan/srfi-225 (diff)
Drop trailing whitespace.
-rw-r--r--srfi-225-test.scm10
-rw-r--r--srfi/225.sld2
-rw-r--r--srfi/225/default-impl.sld2
-rw-r--r--srfi/225/srfi-146-impl.sld2
4 files changed, 8 insertions, 8 deletions
diff --git a/srfi-225-test.scm b/srfi-225-test.scm
index 4967f94..a7c76a8 100644
--- a/srfi-225-test.scm
+++ b/srfi-225-test.scm
@@ -654,7 +654,7 @@
(test-group
"dict-fold"
-
+
;; simple case
(let ()
(define value
@@ -666,7 +666,7 @@
(test-assert
(or (equal? '(a b c d) value)
(equal? '(c d a b) value))))
-
+
(let ()
;; continuation captured in a middle of fold
@@ -737,7 +737,7 @@
(3 . c)
(4 . d)))))
'(1 2 3 4))
-
+
(test-for-each (let* ((cmp (dict-comparator dto (alist->dict '())))
(ordering (and cmp (comparator-ordered? cmp))))
ordering)
@@ -815,7 +815,7 @@
(acc (cons 2 'b))
(acc (cons 2 'c))
(test-assert (dict=? dto equal? (acc (eof-object)) (alist->dict '((1 . a) (2 . c))))))
-
+
(unless mutable?
(test-skip 1))
(test-group
@@ -835,7 +835,7 @@
(acc (cons 2 'b))
(acc (cons 2 'c))
(test-assert (dict=? dto equal? (acc (eof-object)) (alist->dict '((1 . a) (2 . b))))))
-
+
(unless mutable?
(test-skip 1))
(test-group
diff --git a/srfi/225.sld b/srfi/225.sld
index 84d17cf..4b6f021 100644
--- a/srfi/225.sld
+++ b/srfi/225.sld
@@ -1,7 +1,7 @@
(define-library
(srfi 225)
- (import
+ (import
(scheme base)
(srfi 1)
(srfi 128)
diff --git a/srfi/225/default-impl.sld b/srfi/225/default-impl.sld
index 0c7d75c..c6d493c 100644
--- a/srfi/225/default-impl.sld
+++ b/srfi/225/default-impl.sld
@@ -254,7 +254,7 @@
(define (accept el)
(and (upper el) (lower el)))
- (dict-map
+ (dict-map
dto
(lambda (key value)
(when (accept key)
diff --git a/srfi/225/srfi-146-impl.sld b/srfi/225/srfi-146-impl.sld
index d9577b4..163bf66 100644
--- a/srfi/225/srfi-146-impl.sld
+++ b/srfi/225/srfi-146-impl.sld
@@ -14,7 +14,7 @@
(define (mapping-map* dto proc dict)
(mapping-map (lambda (key value)
- (values key (proc key value)))
+ (values key (proc key value)))
(dict-comparator dto dict) dict))
(define (mapping-find-update* dto dict key failure success)
rc='//www.gravatar.com/avatar/2fce9f8dd90949315d789a6546dfacd0?s=13&d=retro' width='13' height='13' alt='Gravatar' /> bencollins 4-12/+22 2003-07-13Updates from 0.10.0 release.Gravatar bencollins 4-5/+14 2003-04-23add libtoolize to bootstrapGravatar ddennedy 1-1/+10 2003-04-21added Dan Maas' rawiso docsGravatar ddennedy 1-32/+295 2003-04-07new_handle_on_port() error path fix from Jim RadfordGravatar dmaas 1-1/+3 2003-03-26add raw1394_new_handle_on_port() convenience functionGravatar dmaas 2-1/+41 2003-02-22Updates for new rawiso ioctl interface.Gravatar bencollins 3-37/+125 2003-01-15add iso_xmit_sync() and iso_xmit_write(); clean up iso handling a bitGravatar dmaas 5-39/+161 2003-01-15implement tag matching for rawiso receptionGravatar dmaas 3-4/+12 2003-01-06back out previous commit - don't drop the legacy API just yetGravatar dmaas 6-173/+130 2003-01-05emulate legacy ISO reception API on top of new rawiso APIGravatar dmaas 7-131/+174 2002-12-24update iso API for multi-channel reception and new packet buffer layoutGravatar dmaas 4-123/+236 2002-12-20oops, irq_interval needs to be signedGravatar anonymous 1-1/+1 2002-12-20dmaas - renamed exported arm definitions into the raw1394_ namespace; brought...Gravatar anonymous 3-124/+48 2002-12-16rawiso updates:Gravatar dmaas 3-18/+25 2002-11-18fix cplusplus extern C blockGravatar ddennedy 1-4/+4 2002-11-18merged rawiso branchGravatar ddennedy 7-6/+488