From d6ae00788a2910e16313e8d83906dd4a52cabd43 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 18 Apr 2017 10:47:35 -0700 Subject: 3828 - make buffers shape-shifting (generic) --- 064list.mu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '064list.mu') diff --git a/064list.mu b/064list.mu index eb6e0dc9..c26b302a 100644 --- a/064list.mu +++ b/064list.mu @@ -293,7 +293,7 @@ scenario reverse-list [ def to-text in:&:list:_elem -> result:text [ local-scope load-ingredients - buf:&:buffer <- new-buffer 80 + buf:&:buffer:char <- new-buffer 80 buf <- to-buffer in, buf result <- buffer-to-array buf ] @@ -302,12 +302,12 @@ def to-text in:&:list:_elem -> result:text [ def to-text-line in:&:list:_elem -> result:text [ local-scope load-ingredients - buf:&:buffer <- new-buffer 80 + buf:&:buffer:char <- new-buffer 80 buf <- to-buffer in, buf, 6 # max elements to display result <- buffer-to-array buf ] -def to-buffer in:&:list:_elem, buf:&:buffer -> buf:&:buffer [ +def to-buffer in:&:list:_elem, buf:&:buffer:char -> buf:&:buffer:char [ local-scope load-ingredients { -- cgit 1.4.1-2-gfad0 d class='sub right'>Kartik K. Agaram <vc@akkartik.com>
about summary refs log tree commit diff stats
path: root/vimrc.vim
blob: a3f31d1e2dd66cb2e3c9f46229caf0c2929b16da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38