mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-29 17:31:02 +01:00
unposted: suppress harmless warning
This commit is contained in:
parent
20607774dc
commit
ac33044bd2
2 changed files with 3 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2007-12-17 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* unposted: Src/utils.c: suppress harmless warning.
|
||||
|
||||
* 24275: Src/builtin.c, Src/Zle/zle_utils.c,
|
||||
Test/D07multibyte.ztst: Solaris returns the full character
|
||||
length from mbrlen() etc. even if the call started in the
|
||||
|
|
|
|||
|
|
@ -4653,7 +4653,7 @@ mod_export char *
|
|||
getkeystring(char *s, int *len, int how, int *misc)
|
||||
{
|
||||
char *buf, tmp[1];
|
||||
char *t, *tdest = NULL, *u = NULL, *sstart = s, *tbuf;
|
||||
char *t, *tdest = NULL, *u = NULL, *sstart = s, *tbuf = NULL;
|
||||
char svchar = '\0';
|
||||
int meta = 0, control = 0;
|
||||
int i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue