From eaeb955212eb3b133fd98d98457f17bfea8891d1 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Thu, 6 Aug 2015 19:15:57 -0700 Subject: 1949 --- html/071print.mu.html | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'html/071print.mu.html') diff --git a/html/071print.mu.html b/html/071print.mu.html index 8e21896f..1c860732 100644 --- a/html/071print.mu.html +++ b/html/071print.mu.html @@ -15,12 +15,12 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; } * { font-size: 1.05em; } .muControl { color: #c0a020; } .muRecipe { color: #ff8700; } -.muScenario { color: #00af00; } +.Delimiter { color: #a04060; } +.CommentedCode { color: #6c6c6c; } .Comment { color: #9090ff; } .Constant { color: #00a0a0; } .Special { color: #ff6060; } -.CommentedCode { color: #6c6c6c; } -.Delimiter { color: #a04060; } +.muScenario { color: #00af00; } --> @@ -468,13 +468,12 @@ container screen-cell [ { break-unless sc { - # if row < height-1 + # increment row unless it's already all the way down height:number <- get *sc, num-rows:offset row:address:number <- get-address *sc, cursor-row:offset max:number <- subtract height, 1 at-bottom?:boolean <- greater-or-equal *row, max break-if at-bottom? - # row = row+1 *row <- add *row, 1 } reply sc/same-as-ingredient:0 @@ -491,11 +490,10 @@ container screen-cell [ { break-unless sc { - # if row > 0 + # decrement row unless it's already all the way up row:address:number <- get-address *sc, cursor-row:offset at-top?:boolean <- lesser-or-equal *row, 0 break-if at-top? - # row = row-1 *row <- subtract *row, 1 } reply sc/same-as-ingredient:0 @@ -512,13 +510,12 @@ container screen-cell [ { break-unless sc { - # if column < width-1 + # increment column unless it's already all the way to the right width:number <- get *sc, num-columns:offset column:address:number <- get-address *sc, cursor-column:offset max:number <- subtract width, 1 at-bottom?:boolean <- greater-or-equal *column, max break-if at-bottom? - # column = column+1 *column <- add *column, 1 } reply sc/same-as-ingredient:0 @@ -535,11 +532,10 @@ container screen-cell [ { break-unless sc { - # if column > 0 + # decrement column unless it's already all the way to the left column:address:number <- get-address *sc, cursor-column:offset at-top?:boolean <- lesser-or-equal *column, 0 break-if at-top? - # column = column-1 *column <- subtract *column, 1 } reply sc/same-as-ingredient:0 -- cgit 1.4.1-2-gfad0