mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
* 20909: Src/Modules/termcap.c: reverse row and col arguments to tgoto.
This commit is contained in:
parent
c7ca063321
commit
27c52ad072
@ -1,3 +1,8 @@
|
||||
2005-03-02 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 20909: Src/Modules/termcap.c: reverse row and col
|
||||
arguments to tgoto.
|
||||
|
||||
2005-03-01 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 20897: Completion/Unix/Command/_a2ps: complete system printers
|
||||
|
@ -155,7 +155,7 @@ bin_echotc(char *name, char **argv, UNUSED(Options ops), UNUSED(int func))
|
||||
tputs(t, 1, putraw);
|
||||
else {
|
||||
num = (argv[1]) ? atoi(argv[1]) : atoi(*argv);
|
||||
tputs(tgoto(t, atoi(*argv), num), num, putraw);
|
||||
tputs(tgoto(t, num, atoi(*argv)), num, putraw);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user