diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Doc/Zsh/mod_curses.yo | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index d4fdf8976..ae01b15a9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-07-23 Clint Adams <clint@zsh.org> + * 25330: Doc/Zsh/mod_curses.yo: fix description of + zcurses "position" (was documented as "location"). + * 25329: Src/Modules/curses.mdd: build the curses module if we've got any usable curses header, not just curses.h. diff --git a/Doc/Zsh/mod_curses.yo b/Doc/Zsh/mod_curses.yo index c1191b894..d3f8ad22e 100644 --- a/Doc/Zsh/mod_curses.yo +++ b/Doc/Zsh/mod_curses.yo @@ -17,10 +17,10 @@ xitem(tt(zcurses) tt(refresh) [ var(targetwin) ... ] ) xitem(tt(zcurses) tt(touch) var(targetwin) ...) xitem(tt(zcurses) tt(move) var(targetwin) var(new_y) var(new_x) ) xitem(tt(zcurses) tt(clear) var(targetwin) [ tt(redraw) | tt(eol) | tt(bot) ]) -xitem(tt(zcurses) tt(location) var(targetwin) var(array)) +xitem(tt(zcurses) tt(position) var(targetwin) var(array)) xitem(tt(zcurses) tt(char) var(targetwin) var(character) ) xitem(tt(zcurses) tt(string) var(targetwin) var(string) ) -xitem(tt(zcurses) tt(border) var(targetwin) var(border) )( +xitem(tt(zcurses) tt(border) var(targetwin) var(border) ) xitem(tt(zcurses) tt(attr) var(targetwin) [ var({+/-}attribute) | var(fg_col)tt(/)var(bg_col) ] [...]) xitem(tt(zcurses) tt(bg) var(targetwin) [ var({+/-}attribute) | var(fg_col)tt(/)var(bg_col) | tt(@)var(char) ] [...]) xitem(tt(zcurses) tt(scroll) var(targetwin) [ tt(on) | tt(off) | {+/-}var(lines) ]) @@ -80,7 +80,7 @@ line. With the option tt(bot), var(targetwin) is cleared to the end of the window, i.e everything to the right and below the cursor is cleared. -The subcommand tt(location) writes various positions associated with +The subcommand tt(position) writes various positions associated with var(targetwin) into the array named var(array). These are, in order: startsitem() |