[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 17/51] man/curs_deleteln.3x: Revise ordering of function 4-tuples
From: |
G. Branden Robinson |
Subject: |
[PATCH 17/51] man/curs_deleteln.3x: Revise ordering of function 4-tuples in "NAME" and "SYNOPSIS" sections. |
Date: |
Fri, 26 Jul 2024 12:49:31 -0500 |
Reorganize list of functions, grouping them by common 4-tuple described
in ncurses (that is, in order of increasing argument count); a given
ncurses function often has four variants, with a prefix that is empty,
"w", "mv", or "mvw". The w-prefixed function is the elementary one (the
others are macros).
---
man/curs_deleteln.3x | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/man/curs_deleteln.3x b/man/curs_deleteln.3x
index 41d49b97b..a65a1633b 100644
--- a/man/curs_deleteln.3x
+++ b/man/curs_deleteln.3x
@@ -43,10 +43,10 @@
.SH NAME
\fB\%deleteln\fP,
\fB\%wdeleteln\fP,
-\fB\%insdelln\fP,
-\fB\%winsdelln\fP,
\fB\%insertln\fP,
-\fB\%winsertln\fP \-
+\fB\%winsertln\fP,
+\fB\%insdelln\fP,
+\fB\%winsdelln\fP \-
delete or insert lines in a \fIcurses\fR window
.SH SYNOPSIS
.nf
@@ -55,11 +55,11 @@ .SH SYNOPSIS
\fBint deleteln(void);
\fBint wdeleteln(WINDOW * \fIwin\fP);
.PP
-\fBint insdelln(int \fIn\fP);
-\fBint winsdelln(WINDOW * \fIwin\fP, int \fIn\fP);
-.PP
\fBint insertln(void);
\fBint winsertln(WINDOW * \fIwin\fP);
+.PP
+\fBint insdelln(int \fIn\fP);
+\fBint winsdelln(WINDOW * \fIwin\fP, int \fIn\fP);
.fi
.SH DESCRIPTION
The \fBdeleteln\fP and \fBwdeleteln\fP routines delete the line under the
--
2.30.2
signature.asc
Description: PGP signature
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH 17/51] man/curs_deleteln.3x: Revise ordering of function 4-tuples in "NAME" and "SYNOPSIS" sections.,
G. Branden Robinson <=