summaryrefslogtreecommitdiff
path: root/2d
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2014-03-08 17:33:14 -0500
committerDavid Thompson <dthompson2@worcester.edu>2014-03-08 17:33:14 -0500
commit6dcbbb60d29408e6db804cb5b8bca3c4971055dc (patch)
tree013c4a1c7be77f7e81ca6c02a38376ef96535a17 /2d
parent53ac564b608201b43972fc023a963815c4dfccf2 (diff)
Rename signal-do to signal-tap.
* 2d/signal.scm (signal-do): Delete it. (signal-tap): New procedure.
Diffstat (limited to '2d')
-rw-r--r--2d/signal.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/2d/signal.scm b/2d/signal.scm
index 4f18fb0..2833991 100644
--- a/2d/signal.scm
+++ b/2d/signal.scm
@@ -42,7 +42,7 @@
signal-reject
signal-constant
signal-count
- signal-do
+ signal-tap
signal-sample
signal-delay
signal-throttle))
@@ -235,7 +235,7 @@ what the value received from SIGNAL."
value from SIGNAL is received."
(signal-fold + 0 (signal-constant 1 signal)))
-(define (signal-do proc signal)
+(define (signal-tap proc signal)
"Create a new signal that applies PROC when a new values is received
from SIGNAL. The value of the new signal will always be the value of
SIGNAL. This signal is a convenient way to sneak a procedure that has