1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-18 12:01:00 +01:00

another fix for 15477 (separator strings); add list-separator style (15484)

This commit is contained in:
Sven Wischnowsky 2001-07-25 12:18:23 +00:00
parent e1708022d2
commit c83d16f8ee
9 changed files with 41 additions and 16 deletions

View file

@ -504,11 +504,12 @@ cd_get(char **params)
case CRT_DESC:
{
VARARR(char, buf,
cd_state.pre + cd_state.suf + cd_state.slen + 1);
cd_state.pre + cd_state.suf + cd_state.slen + 3);
char *sufp = NULL;
memcpy(buf + cd_state.pre, cd_state.sep, cd_state.slen);
sufp = buf + cd_state.pre + cd_state.slen;
memcpy(buf + cd_state.pre + 2, cd_state.sep, cd_state.slen);
buf[cd_state.pre] = buf[cd_state.pre + 1] = ' ';
sufp = buf + cd_state.pre + cd_state.slen + 2;
mats = mp = (char **) zalloc((run->count + 1) * sizeof(char *));
dpys = dp = (char **) zalloc((run->count + 1) * sizeof(char *));