1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 13:33:52 +01:00

* 20718: Src/Zle/zle_utils.c: minor cleanup for proto-Unicode stuff.

This commit is contained in:
Clint Adams 2005-01-16 16:24:28 +00:00
parent 88a37cc187
commit 7c2424d022
2 changed files with 6 additions and 6 deletions

@ -1,3 +1,8 @@
2005-01-16 Clint Adams <clint@zsh.org>
* 20718: Src/Zle/zle_utils.c: minor cleanup for proto-Unicode
stuff.
2005-01-14 Peter Stephenson <pws@csr.com>
* unposted: update version to 4.2.3-dev-1.

@ -67,7 +67,7 @@ void
sizeline(int sz)
{
while (sz > linesz)
zleline = (unsigned char *)realloc(zleline, (linesz *= 4) + 2);
zleline = (ZLE_STRING_T)realloc(zleline, (linesz *= 4) + 2);
}
/*
@ -85,11 +85,6 @@ zleaddtoline(int chr)
zleline[zlecs++] = chr;
}
/*
return zleline;
return zleline;
*/
/**/
mod_export unsigned char *
zlegetline(int *ll, int *cs)