From bd58d18a2308ae5b53a6f5df1e67203739396d8f Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 18 Apr 2017 11:02:49 -0700 Subject: 3829 --- html/064list.mu.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'html/064list.mu.html') diff --git a/html/064list.mu.html b/html/064list.mu.html index 35cd4749..e1f93300 100644 --- a/html/064list.mu.html +++ b/html/064list.mu.html @@ -355,21 +355,21 @@ if ('onhashchange' in window) { 293 def to-text in:&:list:_elem -> result:text [ 294 local-scope 295 load-ingredients -296 buf:&:buffer <- new-buffer 80 +296 buf:&:buffer:char <- new-buffer 80 297 buf <- to-buffer in, buf -298 result <- buffer-to-array buf +298 result <- buffer-to-array buf 299 ] 300 301 # variant of 'to-text' which stops printing after a few elements (and so is robust to cycles) 302 def to-text-line in:&:list:_elem -> result:text [ 303 local-scope 304 load-ingredients -305 buf:&:buffer <- new-buffer 80 +305 buf:&:buffer:char <- new-buffer 80 306 buf <- to-buffer in, buf, 6 # max elements to display -307 result <- buffer-to-array buf +307 result <- buffer-to-array buf 308 ] 309 -310 def to-buffer in:&:list:_elem, buf:&:buffer -> buf:&:buffer [ +310 def to-buffer in:&:list:_elem, buf:&:buffer:char -> buf:&:buffer:char [ 311 local-scope 312 load-ingredients 313 { -- cgit 1.4.1-2-gfad0