From 5eb177874dea59107a1a2ea44f5d8f5bb99550b2 Mon Sep 17 00:00:00 2001 From: "Thomas E. Dickey" Date: Sat, 18 Mar 2017 23:27:36 +0000 Subject: [PATCH] ncurses 6.0 - patch 20170318 + change TERMINAL structure in term.h to make it opaque. Some applications misuse its members, e.g., directly modifying it rather than using def_prog_mode(). + modify utility headers such as tic.h to make it clearer which are externals that are used by tack. + improve curs_slk.3x in particular its discussion of portability. + fix cut/paste in legacy_encoding.3x + add prototype for find_pair() to new_pair.3x (report by Branden Robinson). + fix a couple of broken links in generated man-html documentation. + regenerate man-html documentation. --- MANIFEST | 1 + NEWS | 15 +- VERSION | 2 +- dist.mk | 4 +- doc/html/man/adacurses6-config.1.html | 6 +- doc/html/man/captoinfo.1m.html | 2 +- doc/html/man/clear.1.html | 2 +- doc/html/man/curs_color.3x.html | 13 +- doc/html/man/curs_slk.3x.html | 174 +++++++++++++--------- doc/html/man/form.3x.html | 2 +- doc/html/man/infocmp.1m.html | 2 +- doc/html/man/infotocap.1m.html | 2 +- doc/html/man/legacy_coding.3x.html | 6 +- doc/html/man/menu.3x.html | 2 +- doc/html/man/ncurses.3x.html | 19 +-- doc/html/man/ncurses6-config.1.html | 2 +- doc/html/man/new_pair.3x.html | 200 ++++++++++++++++++++++++++ doc/html/man/panel.3x.html | 2 +- doc/html/man/tabs.1.html | 2 +- doc/html/man/terminfo.5.html | 8 +- doc/html/man/tic.1m.html | 2 +- doc/html/man/toe.1m.html | 2 +- doc/html/man/tput.1.html | 2 +- doc/html/man/tset.1.html | 2 +- include/MKterm.h.awk.in | 41 ++++-- include/term_entry.h | 32 +++-- include/tic.h | 118 ++++++++------- man/curs_color.3x | 18 +-- man/curs_slk.3x | 68 +++++---- man/legacy_coding.3x | 6 +- man/man_db.renames | 4 +- man/manhtml.aliases | 5 +- man/manhtml.externs | 30 +++- man/new_pair.3x | 5 +- ncurses/tinfo/read_entry.c | 4 +- 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 +- progs/progs.priv.h | 7 +- test/demo_termcap.c | 6 +- test/demo_terminfo.c | 6 +- test/list_keys.c | 8 +- 45 files changed, 600 insertions(+), 252 deletions(-) create mode 100644 doc/html/man/new_pair.3x.html diff --git a/MANIFEST b/MANIFEST index bc547fac..bcc0bcf1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -464,6 +464,7 @@ ./doc/html/man/mitem_visible.3x.html ./doc/html/man/ncurses.3x.html ./doc/html/man/ncurses6-config.1.html +./doc/html/man/new_pair.3x.html ./doc/html/man/panel.3x.html ./doc/html/man/resizeterm.3x.html ./doc/html/man/tabs.1.html diff --git a/NEWS b/NEWS index dba8fd13..ef4cabd2 100644 --- a/NEWS +++ b/NEWS @@ -25,7 +25,7 @@ -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------- --- $Id: NEWS,v 1.2772 2017/03/11 23:29:01 tom Exp $ +-- $Id: NEWS,v 1.2779 2017/03/18 19:17:44 tom Exp $ ------------------------------------------------------------------------------- This is a log of changes that ncurses has gone through since Zeyd started @@ -45,6 +45,19 @@ 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. +20170318 + + change TERMINAL structure in term.h to make it opaque. Some + applications misuse its members, e.g., directly modifying it + rather than using def_prog_mode(). + + modify utility headers such as tic.h to make it clearer which are + externals that are used by tack. + + improve curs_slk.3x in particular its discussion of portability. + + fix cut/paste in legacy_encoding.3x + + add prototype for find_pair() to new_pair.3x (report by Branden + Robinson). + + fix a couple of broken links in generated man-html documentation. + + regenerate man-html documentation. + 20170311 + modify vt100 rs2 string to reset vt52 mode and scrolling regions (report/analysis by Robert King) -TD diff --git a/VERSION b/VERSION index a1d35f56..977c7749 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5:0:9 6.0 20170311 +5:0:9 6.0 20170318 diff --git a/dist.mk b/dist.mk index 64022e85..cbf01923 100644 --- a/dist.mk +++ b/dist.mk @@ -25,7 +25,7 @@ # use or other dealings in this Software without prior written # # authorization. # ############################################################################## -# $Id: dist.mk,v 1.1151 2017/03/05 19:24:08 tom Exp $ +# $Id: dist.mk,v 1.1152 2017/03/12 09:25:40 tom Exp $ # Makefile for creating ncurses distributions. # # This only needs to be used directly as a makefile by developers, but @@ -37,7 +37,7 @@ SHELL = /bin/sh # These define the major/minor/patch versions of ncurses. NCURSES_MAJOR = 6 NCURSES_MINOR = 0 -NCURSES_PATCH = 20170311 +NCURSES_PATCH = 20170318 # 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 e92fba9a..89ef2934 100644 --- a/doc/html/man/adacurses6-config.1.html +++ b/doc/html/man/adacurses6-config.1.html @@ -40,7 +40,7 @@

ADACURSES 1 User Commands

-ADACURSES(1)                 User Commands                 ADACURSES(1)
+ADACURSES(1)                 User Commands                 ADACURSES(1)
 
 
 
@@ -131,11 +131,11 @@
 

SEE ALSO

        curses(3x)
 
-       This describes ncurses version 6.0 (patch 20170304).
+       This describes ncurses version 6.0 (patch 20170318).
 
 
 
-                                                           ADACURSES(1)
+                                                           ADACURSES(1)