From a47b9e53836434777854387fa6f09f2137ec2111 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 19 Aug 2023 23:57:51 +0000 Subject: [PATCH] ncurses 6.4 - patch 20230819 + various manpage-formatting fixes. + correct formatting of table header in curs_inopts.3x (Branden Robinson). + correct manpage description of panel_hidden (report by Benjamin Mordaunt). --- NEWS | 9 +- VERSION | 2 +- dist.mk | 4 +- doc/html/man/adacurses6-config.1.html | 12 +- doc/html/man/captoinfo.1m.html | 10 +- doc/html/man/clear.1.html | 2 +- doc/html/man/curs_add_wch.3x.html | 8 +- doc/html/man/curs_addch.3x.html | 8 +- doc/html/man/curs_attr.3x.html | 8 +- doc/html/man/curs_getch.3x.html | 214 +++++++++++++------------- doc/html/man/curs_inch.3x.html | 8 +- doc/html/man/curs_initscr.3x.html | 8 +- doc/html/man/curs_inopts.3x.html | 10 +- doc/html/man/curs_kernel.3x.html | 8 +- doc/html/man/curs_refresh.3x.html | 8 +- doc/html/man/curs_scroll.3x.html | 8 +- doc/html/man/curs_sp_funcs.3x.html | 8 +- doc/html/man/curs_terminfo.3x.html | 8 +- doc/html/man/curs_threads.3x.html | 8 +- doc/html/man/curs_util.3x.html | 8 +- doc/html/man/default_colors.3x.html | 8 +- doc/html/man/form.3x.html | 10 +- doc/html/man/form_driver.3x.html | 8 +- doc/html/man/infocmp.1m.html | 195 ++++++++++++----------- doc/html/man/infotocap.1m.html | 2 +- doc/html/man/menu.3x.html | 10 +- doc/html/man/ncurses.3x.html | 10 +- doc/html/man/ncurses6-config.1.html | 2 +- doc/html/man/panel.3x.html | 8 +- doc/html/man/tabs.1.html | 2 +- doc/html/man/terminfo.5.html | 81 +++++----- doc/html/man/tic.1m.html | 19 ++- doc/html/man/toe.1m.html | 2 +- doc/html/man/tput.1.html | 2 +- doc/html/man/tset.1.html | 2 +- doc/html/man/user_caps.5.html | 8 +- man/MKada_config.in | 7 +- man/captoinfo.1m | 5 +- man/curs_add_wch.3x | 5 +- man/curs_addch.3x | 9 +- man/curs_attr.3x | 6 +- man/curs_getch.3x | 14 +- man/curs_inch.3x | 6 +- man/curs_initscr.3x | 8 +- man/curs_inopts.3x | 10 +- man/curs_kernel.3x | 7 +- man/curs_refresh.3x | 10 +- man/curs_scroll.3x | 8 +- man/curs_sp_funcs.3x | 7 +- man/curs_terminfo.3x | 10 +- man/curs_threads.3x | 5 +- man/curs_util.3x | 5 +- man/default_colors.3x | 7 +- man/form.3x | 6 +- man/form_driver.3x | 5 +- man/infocmp.1m | 9 +- man/menu.3x | 6 +- man/ncurses.3x | 9 +- man/panel.3x | 8 +- man/terminfo.tail | 109 ++++++++----- man/tic.1m | 18 ++- man/user_caps.5 | 6 +- package/debian-mingw/changelog | 4 +- package/debian-mingw64/changelog | 4 +- package/debian/changelog | 4 +- package/mingw-ncurses.nsi | 4 +- package/mingw-ncurses.spec | 2 +- package/ncurses.spec | 2 +- package/ncursest.spec | 2 +- 69 files changed, 567 insertions(+), 488 deletions(-) diff --git a/NEWS b/NEWS index 0038b281..19ea3ad2 100644 --- a/NEWS +++ b/NEWS @@ -26,7 +26,7 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------- --- $Id: NEWS,v 1.3986 2023/08/12 20:24:29 tom Exp $ +-- $Id: NEWS,v 1.3988 2023/08/19 21:03:44 tom Exp $ ------------------------------------------------------------------------------- This is a log of changes that ncurses has gone through since Zeyd started @@ -46,6 +46,13 @@ See the AUTHORS file for the corresponding full names. Changes through 1.9.9e did not credit all contributions; it is not possible to add this information. +20230819 + + various manpage-formatting fixes. + + correct formatting of table header in curs_inopts.3x (Branden + Robinson). + + correct manpage description of panel_hidden (report by Benjamin + Mordaunt). + 20230812 + add/use putty+cursor to reflect amending of modified cursor-keys in 2021 -TD diff --git a/VERSION b/VERSION index 0c3ff9b1..a396dbef 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5:0:10 6.4 20230812 +5:0:10 6.4 20230819 diff --git a/dist.mk b/dist.mk index 129f5b8f..191663fb 100644 --- a/dist.mk +++ b/dist.mk @@ -26,7 +26,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: dist.mk,v 1.1559 2023/08/12 10:51:56 tom Exp $ +# $Id: dist.mk,v 1.1560 2023/08/19 10:43:27 tom Exp $ # Makefile for creating ncurses distributions. # # This only needs to be used directly as a makefile by developers, but @@ -38,7 +38,7 @@ SHELL = /bin/sh # These define the major/minor/patch versions of ncurses. NCURSES_MAJOR = 6 NCURSES_MINOR = 4 -NCURSES_PATCH = 20230812 +NCURSES_PATCH = 20230819 # We don't append the patch to the version, since this only applies to releases VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR) diff --git a/doc/html/man/adacurses6-config.1.html b/doc/html/man/adacurses6-config.1.html index cb8bcf06..53e0a5cf 100644 --- a/doc/html/man/adacurses6-config.1.html +++ b/doc/html/man/adacurses6-config.1.html @@ -1,6 +1,6 @@ -ADACURSES 1 2021-12-25 ncurses 6.4 User commands +ADACURSES 1 2023-08-19 ncurses 6.4 User commands -

ADACURSES 1 2021-12-25 ncurses 6.4 User commands

+

ADACURSES 1 2023-08-19 ncurses 6.4 User commands

 ADACURSES(1)                     User commands                    ADACURSES(1)
 
@@ -126,11 +126,11 @@
 

SEE ALSO

        curses(3x)
 
-       This describes ncurses version 6.4 (patch 20230812).
+       This describes ncurses version 6.4 (patch 20230819).
 
 
 
-ncurses 6.4                       2021-12-25                      ADACURSES(1)
+ncurses 6.4                       2023-08-19                      ADACURSES(1)