[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 12/43] man/curs_get{,_w}ch.3x: Fix style nit.
From: |
G. Branden Robinson |
Subject: |
[PATCH 12/43] man/curs_get{,_w}ch.3x: Fix style nit. |
Date: |
Mon, 9 Sep 2024 09:14:58 -0500 |
Put a space after pointer stars in function synopses.
---
man/curs_get_wch.3x | 8 ++++----
man/curs_getch.3x | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/man/curs_get_wch.3x b/man/curs_get_wch.3x
index e0caac6d9..ef5e10a30 100644
--- a/man/curs_get_wch.3x
+++ b/man/curs_get_wch.3x
@@ -55,10 +55,10 @@ .SH SYNOPSIS
.nf
\fB#include <curses.h>
.PP
-\fBint get_wch(wint_t *\fIwch\fP);
-\fBint wget_wch(WINDOW *\fIwin\fP, wint_t *\fIwch\fP);
-\fBint mvget_wch(int \fIy\fP, int \fIx\fP, wint_t *\fIwch\fP);
-\fBint mvwget_wch(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t
*\fIwch\fP);
+\fBint get_wch(wint_t * \fIwch\fP);
+\fBint wget_wch(WINDOW * \fIwin\fP, wint_t * \fIwch\fP);
+\fBint mvget_wch(int \fIy\fP, int \fIx\fP, wint_t * \fIwch\fP);
+\fBint mvwget_wch(WINDOW * \fIwin\fP, int \fIy\fP, int \fIx\fP, wint_t *
\fIwch\fP);
.PP
\fBint unget_wch(const wchar_t \fIwc\fP);
.fi
diff --git a/man/curs_getch.3x b/man/curs_getch.3x
index ccc3b5bbf..65351bb40 100644
--- a/man/curs_getch.3x
+++ b/man/curs_getch.3x
@@ -63,9 +63,9 @@ .SH SYNOPSIS
.B #include <curses.h>
.PP
.B int getch(void);
-.B int wgetch(WINDOW *\fIwin\fP);
+.B int wgetch(WINDOW * \fIwin\fP);
.B int mvgetch(int \fIy\fP, int \fIx\fP);
-.B int mvwgetch(WINDOW *\fIwin\fP, int \fIy\fP, int \fIx\fP);
+.B int mvwgetch(WINDOW * \fIwin\fP, int \fIy\fP, int \fIx\fP);
.PP
.B int ungetch(int \fIc\fP);
.PP
--
2.30.2
signature.asc
Description: PGP signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH 12/43] man/curs_get{,_w}ch.3x: Fix style nit.,
G. Branden Robinson <=