[Xxvt-commit] CVS: xxvt line.c,1.12,1.13
Status: Pre-Alpha
Brought to you by:
nlevitt
|
From: Noah L. <nl...@us...> - 2002-03-31 19:11:42
|
Update of /cvsroot/xxvt/xxvt
In directory usw-pr-cvs1:/tmp/cvs-serv6793
Modified Files:
line.c
Log Message:
wmemset -> xxvt_wmemset
Index: line.c
===================================================================
RCS file: /cvsroot/xxvt/xxvt/line.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- line.c 27 Mar 2002 06:21:38 -0000 1.12
+++ line.c 31 Mar 2002 19:11:40 -0000 1.13
@@ -202,7 +202,7 @@
{
int i;
- wmemset(line->text, L' ', line->size);
+ xxvt_wmemset(line->text, L' ', line->size);
for (i=0; i<line->size; i++)
line->rend[i] = (line->rend[i] & ~RENDWIDTHMASK) | 0x01;
|