about summary refs log tree commit diff stats
path: root/prototypes/browse/17-file-state-broken/main.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-06-29 19:21:43 -0700
committerKartik Agaram <vc@akkartik.com>2020-06-29 19:21:43 -0700
commit8bd3c2b5a83d9e8b97472311491010d66a7b7584 (patch)
tree02354322b48589ec70da06211433aa36c50d758b /prototypes/browse/17-file-state-broken/main.mu
parent6c7f7abdb867084f1e7555105cfa140eae4f6372 (diff)
downloadmu-8bd3c2b5a83d9e8b97472311491010d66a7b7584.tar.gz
6601
Diffstat (limited to 'prototypes/browse/17-file-state-broken/main.mu')
-rw-r--r--prototypes/browse/17-file-state-broken/main.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/prototypes/browse/17-file-state-broken/main.mu b/prototypes/browse/17-file-state-broken/main.mu
index fc22d9ea..44eccc2e 100644
--- a/prototypes/browse/17-file-state-broken/main.mu
+++ b/prototypes/browse/17-file-state-broken/main.mu
@@ -44,8 +44,8 @@ fn render-normal fs: (addr file-state), state: (addr screen-position-state) {
     # if (c == EOF) break
     compare c, 0xffffffff  # EOF marker
     break-if-=
-    # if (c == '*') start-bold, render-until-asterisk(fs, state), reset
-    # else if (c == '_') start-bold, render-until-underscore(fs, state), reset
+    # if (c == '*') start-bold-on-screen, render-until-asterisk(fs, state), reset
+    # else if (c == '_') start-bold-on-screen, render-until-underscore(fs, state), reset
     # else if (c == '#' and fs is at start of line) compute-color, start color, render-header-line(fs, state), reset
     # else add-char(state, c)
   }