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

zsh-workers/9332

This commit is contained in:
Tanaka Akira 2000-01-17 18:25:25 +00:00
parent cf10e60524
commit 63acd10601
21 changed files with 2472 additions and 1356 deletions

View file

@ -143,7 +143,7 @@ math_length(char *name, char *arg, int id)
/**/
static int
ex_wrapper(List list, FuncWrap w, char *name)
ex_wrapper(Eprog prog, FuncWrap w, char *name)
{
if (strncmp(name, "example", 7))
return 1;
@ -151,7 +151,7 @@ ex_wrapper(List list, FuncWrap w, char *name)
int ogd = opts[GLOBDOTS];
opts[GLOBDOTS] = 1;
runshfunc(list, w, name);
runshfunc(prog, w, name);
opts[GLOBDOTS] = ogd;
return 0;