Module Name:    src
Committed By:   rillig
Date:           Mon May 16 20:09:13 UTC 2022

Modified Files:
        src/lib/libcurses: curses_input.3

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

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


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/lib/libcurses/curses_input.3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libcurses/curses_input.3
diff -u src/lib/libcurses/curses_input.3:1.27 src/lib/libcurses/curses_input.3:1.28
--- src/lib/libcurses/curses_input.3:1.27	Mon Jul  3 21:32:50 2017
+++ src/lib/libcurses/curses_input.3	Mon May 16 20:09:13 2022
@@ -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 (bl...@netbsd.org, brett_l...@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

Reply via email to