summaryrefslogtreecommitdiff
path: root/Src/Modules
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2003-06-24 18:07:37 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2003-06-24 18:07:37 +0000
commit7675ddffdcc78d4cb8f7defe794eaeddfd6c48e9 (patch)
tree83c25eccc4ab8e2c51ab59e7238344c5befa3a91 /Src/Modules
parent9457bd6c94a411fd6292550e3913f13a5978fdbb (diff)
downloadzsh-7675ddffdcc78d4cb8f7defe794eaeddfd6c48e9.tar.gz
zsh-7675ddffdcc78d4cb8f7defe794eaeddfd6c48e9.zip
18626: improve echoti's arg support and fix compile problem on 64-bit Solaris
Diffstat (limited to 'Src/Modules')
-rw-r--r--Src/Modules/terminfo.c42
1 files changed, 24 insertions, 18 deletions
diff --git a/Src/Modules/terminfo.c b/Src/Modules/terminfo.c
index c8e5c23fb..b128e0bb5 100644
--- a/Src/Modules/terminfo.c
+++ b/Src/Modules/terminfo.c
@@ -59,8 +59,10 @@ static Param terminfo_pm;
static int
bin_echoti(char *name, char **argv, Options ops, int func)
{
- char *s, *t, *u;
- int num, argct;
+ char *s, *t, **u;
+ int arg, num, strarg = 0;
+ long pars[] = {0, 0, 0, 0, 0, 0, 0, 0, 0};
+ char *strcap[] = { "pfkey", "pfloc", "pfx", "pln", "pfxl", NULL };
s = *argv++;
/* This depends on the termcap stuff in init.c */
@@ -92,28 +94,32 @@ bin_echoti(char *name, char **argv, Options ops, int func)
zwarnnam(name, "no such terminfo capability: %s", s, 0);
return 1;
}
- /* count the number of arguments required */
- for (argct = 0, u = t; *u; u++)
- if (*u == '%') {
- if (u++, (*u == 'd' || *u == '2' || *u == '3' || *u == '.' ||
- *u == '+'))
- argct++;
- }
- /* check that the number of arguments provided is correct */
- if (arrlen(argv) != argct) {
- zwarnnam(name, (arrlen(argv) < argct) ? "not enough arguments" :
- "too many arguments", NULL, 0);
+ /* check that the number of arguments provided is not too high */
+ if (arrlen(argv) > 9) {
+ zwarnnam(name, "too many arguments", NULL, 0);
return 1;
}
+
+ /* check if we have a capability taking non-integers for parameters */
+ for (u = strcap; *u && !strarg; u++)
+ strarg = !strcmp(s, *u);
+
+ /* get the arguments */
+ for (arg=0; argv[arg]; arg++) {
+ if (strarg && arg > 0)
+ pars[arg] = (long) argv[arg];
+ else
+ pars[arg] = atoi(argv[arg]);
+ }
+
/* output string, through the proper termcap functions */
- if (!argct)
- tputs(t, 1, putraw);
+ if (!arg)
+ putp(t);
else {
- num = (argv[1]) ? atoi(argv[1]) : atoi(*argv);
- tputs(tparm(t, atoi(*argv)), num, putraw);
+ putp(tparm(t, pars[0], pars[1], pars[2], pars[3], pars[4],
+ pars[5], pars[6], pars[7], pars[8]));
}
return 0;
-
}
/**/