summaryrefslogtreecommitdiff
path: root/braille.c
diff options
context:
space:
mode:
Diffstat (limited to 'braille.c')
-rw-r--r--braille.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/braille.c b/braille.c
index 8a05599..a0c1bc6 100644
--- a/braille.c
+++ b/braille.c
@@ -341,8 +341,8 @@ RefreshBraille()
}
else if (xs <= xe)
{
- RedisplayLine(-1, xs, xe, 1);
- RedisplayLine(y, xs, xe, 1);
+ LayRedisplayLine(-1, xs, xe, 1);
+ LayRedisplayLine(y, xs, xe, 1);
}
debug1("Braille: got >%s<\n", bd.bd_line);
@@ -380,10 +380,10 @@ bd_signal()
return;
display = bd.bd_dpy;
if (D_obufp != D_obuf)
- PutStr(D_BL);
+ AddCStr(D_BL);
else
{
- PutStr(D_BL);
+ AddCStr(D_BL);
Flush();
}
}
@@ -411,8 +411,8 @@ int y, xs, xe;
bd.bd_refreshing = bd.bd_searching = 1;
bd.bd_searchstart = xs;
bd.bd_searchend = xe;
- RedisplayLine(-1, xs, xe, 1);
- RedisplayLine(y, xs, xe, 1);
+ LayRedisplayLine(-1, xs, xe, 1);
+ LayRedisplayLine(y, xs, xe, 1);
bd.bd_refreshing = bd.bd_searching = 0;
BD_FORE->w_bd_y = oy;
}