mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-27 04:40:59 +01:00
24010: fix max arguments for 'zcurses border' to 1.
This commit is contained in:
parent
596f772ade
commit
2ab16a2cd9
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2007-10-23 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 24010: Src/Modules/curses.c: fix max arguments for 'zcurses
|
||||
border' to 1.
|
||||
|
||||
2007-10-23 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* users/12087: Src/glob.c: fix a case where we doing globbing
|
||||
|
|
|
|||
|
|
@ -291,7 +291,7 @@ bin_zcurses(char *nam, char **args, Options ops, UNUSED(int func))
|
|||
{{"move", ZCURSES_SC_MOVE}, 3, 3},
|
||||
{{"c", ZCURSES_SC_CHAR}, 2, 2},
|
||||
{{"s", ZCURSES_SC_STRING}, 2, 2},
|
||||
{{"border", ZCURSES_SC_BORDER}, 1, 5},
|
||||
{{"border", ZCURSES_SC_BORDER}, 1, 1},
|
||||
{{"endwin", ZCURSES_SC_ENDWIN}, 1, 1},
|
||||
{{"attr", ZCURSES_SC_ATTR}, 2, 2},
|
||||
{{"color", ZCURSES_SC_COLOR}, 2, 2},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue