chiark / gitweb /
replay has its own prefix, |
authorian <ian>
Sun, 1 Jun 2008 23:25:06 +0000 (23:25 +0000)
committerian <ian>
Sun, 1 Jun 2008 23:25:06 +0000 (23:25 +0000)
hostside/README.commands
hostside/multiplex

index dba3a5707d1af2c9885faa25bf8082bb01bd551b..8ec08c9aa7d6998b7d26f00b837ebbe761cf28a0 100644 (file)
@@ -17,6 +17,7 @@ realtime, the ? is absent.  ? may be
       +   result of command by us
       &   asynchronous, not related to a specific command
       =   related to this actual multiplexer client connection
+      |   result of replay
 
 ======================================================================
 
@@ -154,7 +155,7 @@ MULTIPLEXER FACILITIES
 
  L> replay [[~]<glob-pattern>...]     if none, uses result from select
  O< +executing replay
- R< +<all messages saved for replay, ie those marked with R< above,
+ R< |<all messages saved for replay, ie those marked with R< above,
       matching the patterns, all of which will be prefixed with + this time>
  O< +ack replay ok
 
index 480e25a335638b8621c8fc006f432baf1477669c..94fad130718ad578c91dc823d380efe0d8255c65 100755 (executable)
@@ -180,7 +180,7 @@ proc global/!save-dump {conn args} {
 proc do-replay {conn} {
     global replay
     foreach pk [lsort [array names replay]] {
-       set m "+[string range $pk 3 end] $replay($pk)"
+       set m "|[string range $pk 3 end] $replay($pk)"
        xmit-only $conn $m
     }
 }