Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libcurses curses_input.3: fix argument type for keypad, ...



details:   https://anonhg.NetBSD.org/src/rev/2b3ccd2fb7a7
branches:  trunk
changeset: 366161:2b3ccd2fb7a7
user:      rillig <rillig%NetBSD.org@localhost>
date:      Mon May 16 20:09:13 2022 +0000

description:
curses_input.3: fix argument type for keypad, notimeout, nodelay

There is no type named 'boolf', there's only 'bool'.

diffstat:

 lib/libcurses/curses_input.3 |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (39 lines):

diff -r 3db57a770733 -r 2b3ccd2fb7a7 lib/libcurses/curses_input.3
--- a/lib/libcurses/curses_input.3      Mon May 16 19:55:58 2022 +0000
+++ b/lib/libcurses/curses_input.3      Mon May 16 20:09:13 2022 +0000
@@ -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@localhost, brett_lymn%yahoo.com.au@localhost)
@@ -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



Home | Main Index | Thread Index | Old Index