about summary refs log tree commit diff stats
path: root/html/088file.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-25 22:30:36 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-25 22:30:36 -0800
commiteb2b6cd21e06b3a421ede3f7a6ae78b932dcab19 (patch)
tree88145f60924cc2d2ab69e7ca517c6ff7d24cdd12 /html/088file.mu.html
parentcfa5a9f88756443f6d857726ace97ebbb3967d76 (diff)
downloadmu-eb2b6cd21e06b3a421ede3f7a6ae78b932dcab19.tar.gz
3693
Diffstat (limited to 'html/088file.mu.html')
-rw-r--r--html/088file.mu.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/html/088file.mu.html b/html/088file.mu.html
index db45a81e..8f044eaa 100644
--- a/html/088file.mu.html
+++ b/html/088file.mu.html
@@ -123,7 +123,11 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
   <span class="Delimiter">}</span>
   <span class="Comment"># real file system</span>
   file:num <span class="Special">&lt;-</span> $open-file-for-writing filename
-  assert file, <span class="Constant">[no such file]</span>
+  <span class="Delimiter">{</span>
+    <span class="muControl">break-if</span> file
+    msg:text <span class="Special">&lt;-</span> append <span class="Constant">[no such file: ]</span> filename
+    assert file, msg
+  <span class="Delimiter">}</span>
   routine-id <span class="Special">&lt;-</span> start-running transmit-to-file file, source
 ]