diff options
| author | rillig <rillig@NetBSD.org> | 2022-05-16 20:09:13 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2022-05-16 20:09:13 +0000 |
| commit | 11e0f3438fc739b053dbd915bad9a241ae24f18c (patch) | |
| tree | 5cf976ed6d759507c65c4e599e95adae74725bf8 /lib/libcurses | |
| parent | 4b178c4c173b55f6f11d9bd943646740dd39ffde (diff) | |
curses_input.3: fix argument type for keypad, notimeout, nodelay
There is no type named 'boolf', there's only 'bool'.
Diffstat (limited to 'lib/libcurses')
| -rw-r--r-- | lib/libcurses/curses_input.3 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libcurses/curses_input.3 b/lib/libcurses/curses_input.3 index 5773afd4324..d65cf22e496 100644 --- a/lib/libcurses/curses_input.3 +++ b/lib/libcurses/curses_input.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: curses_input.3,v 1.27 2017/07/03 21:32:50 wiz Exp $ +.\" $NetBSD: curses_input.3,v 1.28 2022/05/16 20:09:13 rillig Exp $ .\" .\" Copyright (c) 2002 .\" Brett Lymn (blymn@NetBSD.org, brett_lymn@yahoo.com.au) @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" -.Dd January 5, 2017 +.Dd May 16, 2022 .Dt CURSES_INPUT 3 .Os .Sh NAME @@ -94,17 +94,17 @@ .Ft int .Fn mvwgetstr "WINDOW *win" "int y" "int x" "char *str" .Ft int -.Fn keypad "WINDOW *win" "boolf flag" +.Fn keypad "WINDOW *win" "bool flag" .Ft bool .Fn is_keypad "const WINDOW *win" .Ft int -.Fn notimeout "WINDOW *win" "boolf flag" +.Fn notimeout "WINDOW *win" "bool flag" .Ft int .Fn timeout "int delay" .Ft int .Fn wtimeout "WINDOW *win" "int delay" .Ft int -.Fn nodelay "WINDOW *win" "boolf flag" +.Fn nodelay "WINDOW *win" "bool flag" .Ft int .Fn ungetch "int c" .Ft int |
