]> ncurses.scripts.mit.edu Git - ncurses.git/blob - NEWS
ncurses 6.2 - patch 20200215
[ncurses.git] / NEWS
1 -------------------------------------------------------------------------------
2 -- Copyright 2018-2019,2020 Thomas E. Dickey                                 --
3 -- Copyright 1998-2017,2018 Free Software Foundation, Inc.                   --
4 --                                                                           --
5 -- Permission is hereby granted, free of charge, to any person obtaining a   --
6 -- copy of this software and associated documentation files (the             --
7 -- "Software"), to deal in the Software without restriction, including       --
8 -- without limitation the rights to use, copy, modify, merge, publish,       --
9 -- distribute, distribute with modifications, sublicense, and/or sell copies --
10 -- of the Software, and to permit persons to whom the Software is furnished  --
11 -- to do so, subject to the following conditions:                            --
12 --                                                                           --
13 -- The above copyright notice and this permission notice shall be included   --
14 -- in all copies or substantial portions of the Software.                    --
15 --                                                                           --
16 -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS   --
17 -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF                --
18 -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN --
19 -- NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,       --
20 -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR     --
21 -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE --
22 -- USE OR OTHER DEALINGS IN THE SOFTWARE.                                    --
23 --                                                                           --
24 -- Except as contained in this notice, the name(s) of the above copyright    --
25 -- holders shall not be used in advertising or otherwise to promote the      --
26 -- sale, use or other dealings in this Software without prior written        --
27 -- authorization.                                                            --
28 -------------------------------------------------------------------------------
29 -- $Id: NEWS,v 1.3450 2020/02/15 18:56:00 tom Exp $
30 -------------------------------------------------------------------------------
31
32 This is a log of changes that ncurses has gone through since Zeyd started
33 working with Pavel Curtis' original work, pcurses, in 1992.
34
35 Changes through 1.9.9e are recorded by Zeyd M Ben-Halim.
36 Changes since 1.9.9e are recorded by Thomas E Dickey.
37
38 Contributors include those who have provided patches (even small ones), as well
39 as those who provide useful information (bug reports, analyses).  Changes with
40 no cited author are the work of Thomas E Dickey (TD).
41
42 A few contributors may be cited in this file by their initials.
43 Each accounts for half of one percent or more of the changes since 1.9.9e.
44 See the AUTHORS file for the corresponding full names.
45
46 Changes through 1.9.9e did not credit all contributions;
47 it is not possible to add this information.
48
49 20200215
50         + improve manual page for panel library, extending the portability
51           section as well as documenting error-returns.
52         + show tic's version when installing terminal database in run_tic.sh
53         + correct check for gcc vs other compilers used in ncurses 6.0, from
54           FreeBSD patch by Kyle Evans (cf: 20150725).
55         + add notes for 6.2 to INSTALL.
56
57 20200212 6.2 release for upload to ftp.gnu.org
58         + update release notes
59         + minor build-fixes, mostly to test-package scripts
60
61 20200208
62         + modify check for sizeof(wchar_t) to ensure it gives useful result
63           when cross-compiling.
64         + drop assumption in configure script that Cygwin's linker is broken.
65         + define NCURSES_BROKEN_LINKER if the broken-linker feature is used,
66           to simplify configure-checks for ncurses-examples.
67
68 20200202
69         + reassert copyright on ncurses, per discussion in ncurses FAQ:
70           https://invisible-island.net/ncurses/ncurses.faq.html#relicensed
71
72 20200201
73         + modify comparison in make_hash.c to correct a special case in
74           collision handling for Caps-hpux11
75         + add testing utility report_hashing to check hash-tables used for
76           terminfo and termcap names.
77         + fix a missing prototype for _nc_free_and_exit().
78         + update a few comments about tack 1.07
79         + use an awk script to split too-long pathnames used in Ada95 sample
80           programs for explain.txt
81
82 20200118
83         + expanded description of XM in user_caps.5
84         + improve xm example for xterm+x11mouse, xterm+sm+1006 -TD
85         + add history section to curs_slk.3x and curs_terminfo.3x manpages.
86         + update alacritty entries for 0.4.0 (prompted by patch by
87           Christian Durr) -TD
88         + correct spelling errors found with codespell.
89         + fix for test/configure, from xterm #352.
90
91 20200111
92         + improve configure macros which check for the X11/Intrinsic.h header,
93           to accommodate recent MacOS changes.
94         + suppress gcc's -Winline warning; it has not been useful for some time
95         + update config.guess, config.sub
96
97 20200104
98         + modify a couple of macros in aclocal.m4 to allow autoconf 2.69 to
99           "work", to help illustrate discussion in
100           https://invisible-island.net/autoconf/my-autoconf.html
101         + fix some warnings from autoheader-252
102
103 20191228
104         + in gen-pkgconfig.in, move the RPATH_LIST and PRIVATE_LIBS assignments
105           past the various prefix/libdir assignments, to allow for using those
106           symbols, e.g., as done via CF_SHARED_OPTS.
107         + improve ncurses*-config and pc-files by filtering out linker-specs.
108         + modify test-package to more closely match Fedora's configuration
109           for PIE/PIC feature and debug-packages.
110
111 20191221
112         + correct pathname used in Ada95 sample programs for explain.txt, to
113           work with test-packages.
114         + improve tracemunch:
115           + keep track of TERMINAL* values
116           + if tracing was first turned on after initialization, attempt to
117             show distinct screen, window and terminal names anyway.
118         + ensure that GCC_NORETURN is defined in term.h, because the prototype
119           for exit_terminfo() uses it (report by Werner Fink).
120
121 20191214
122         + add exit_curses() and exit_terminfo() to replace internal symbols for
123           leak-checking.
124
125 20191207
126         + fix a few warnings for test-package builds
127         + add curses_trace(), to replace trace().
128
129 20191130
130         + add portability section to curs_getcchar manpage (prompted by
131           discussion with Nick Black).
132         + improve portability discussion of ACS characters in curs_addch
133           manpage.
134         + improve typography for double-quotes in manpages.
135
136 20191123
137         + fix typo for MinGW rpm test-package.
138         + workaround in rpm specs for NFS problems in Fedora 31.
139
140 20191116
141         + modify ncurses/Makefile.in to fix a case where Debian/testing changes
142           to the ld --as-needed configuration broke ncurses-examples test
143           packages.
144         + drop library-dependency on psapi for MinGW port, since win_driver.c
145           defines PSAPI_VERSION to 2, making it use GetProcessImageFileName
146           from kernel32.dll (prompted by patch by Simon Sobish, cf: 20140503).
147
148 20191109
149         + add warning-check in tic for terminals with parm_dch vs parm_ich.
150         + drop ich1 from rxvt-basic, Eterm and mlterm to improve compatibility
151           with old non-curses programs -TD
152         + reviewed st 0.8.2, updated some details -TD
153         + use ansi+rep several places -TD
154         + corrected tic's check for ich1 (report by Sebastian J. Bronner,
155           cf: 20020901).
156
157 20191102
158         + check parameter of set_escdelay, return ERR if negative.
159         + check parameter of set_tabsize, return ERR if not greater than zero
160           (report/patch by Anthony Sottile).
161         + revise CF_ADD_LIBS macro to prepend rather than append libraries.
162         + add "xterm-mono" to help packagers (report by Sven Joachim) -TD
163
164 20191026
165         + add a note in man/curs_add_wch.3x about Unicode terminology for the
166           line-drawing characters (report by Nick Black).
167         + improve comment in lib_tgoto.c regarding the use of \200 where a
168           \0 would be intended by the caller (report by "64 bit", cf: 20000923).
169         + modify linux-16color to accommodate Linux console driver change in
170           early 2018 (report by Dino Petrucci).
171
172 20191019
173         + modify make_hash to not require --disable-leaks, to simplify building
174           with address-sanitizer.
175         + modify tic to exit if it cannot remove a conflicting name, because
176           treating that as a partial success can cause an infinite loop in
177           use-resolution (report/testcase by Hongxu Chen, cf: 20111001).
178
179 20191015
180         + improve buffer-checks in captoinfo.c, for some cases when the
181           input string is shorter than expected.
182         > fix two errata in tic (report/testcases by Hongxu Chen):
183         + check for missing character after backslash in write_it
184         + check for missing characters after "%>" when converting from termcap
185           syntax (cf: 980530).
186
187 20191012
188         + amend recent changes to ncurses*-config and pc-files to filter out
189           Debian linker-flags (report by Sven Joachim, cf: 20150516).
190         + clarify relationship between tic, infocmp and captoinfo in manpage.
191         + check for invalid hashcode in _nc_find_type_entry and
192           _nc_find_name_entry.
193         > fix several errata in tic (reports/testcases by "zjuchenyuan"):
194         + check for invalid hashcode in _nc_find_entry.
195         + check for missing character after backslash in fmt_entry
196         + check for acsc with odd length in dump_entry in check for one-one
197           mapping (cf: 20060415);
198         + check length when converting from old AIX box_chars_1 capability,
199           overlooked in changes to eliminate strcpy (cf: 20001007).
200
201 20191005
202         + modify the ncurse*-config and pc-files to more closely match for the
203           -I and -l options.
204
205 20190928
206         + amend the ncurses*-config and pc-files to take into account the rpath
207           hack which differed between those files.
208         + improve -L option filtering in ncurses*-config
209         + improve recovery from error when reading command-character in
210           test/ncurses.c, showing the relevant error message and not exiting on
211           EINTR (cf: 20180922)
212
213 20190921
214         + add a note in resizeterm manpage about top-level windows which touch
215           the screen's borders.
216         + modify configure-checks for gnat to identify each of the tools path
217           and version.
218
219 20190914
220         + build-fixes for Ada95 configure-script and corresponding test package
221
222 20190907
223         + add --with-ada-libname option and modify Ada95 configuration to 
224           allow renaming the "AdaCurses" library (prompted by proposed changes
225           by Pascal Pignard).
226         + modify configure script to distinguish gcc from icc and clang when
227           the --enable-warnings option is not used, to avoid unnecessary
228           warnings about unrecognized inline options (report by Sven Joachim).
229
230 20190831
231         + build-fixes for configuration using --program-suffix with Ada95,
232           noticed with MacOS but applicable to other platforms without
233           libpanelw, etc.
234
235 20190824
236         + fix some cppcheck warnings, mostly style, in ncurses test-programs.
237
238 20190817
239         + amend 20181208 changes for wbkgd() and wbkgrnd(), fixing a few
240           details where it still differed from SVr4.
241         + fix some cppcheck warnings, mostly style, in ncurses test-programs.
242
243 20190810
244         + fix a few more coverity warnings.
245
246 20190803
247         + improve loop limits in _nc_scroll_window() to handle a case where
248           the scrolled data is a pad which is taller than the window (patch
249           by Rob King).
250         + amend the change to screen, because tmux relies upon that entry
251           and does not support that feature (Debian #933572) -TD
252         + updated ms-terminal entry & notes -TD
253         + updated kitty entry & notes -TD
254         + updated alacritty+common entry & notes -TD
255         + use xterm+sl-twm for consistency -TD
256
257 20190728
258         + fix a few more coverity warnings.
259         + more documentation updates based on tctest.
260
261 20190727
262         + fix a few coverity warnings.
263         + documentation updates based on tctest.
264
265 20190720
266         + fix a few warnings for gcc 4.x
267         + add some portability/historical details to the tic, toe and infocmp
268           manual pages.
269         + correct fix for broken link from terminfo(5) to tabs(1) manpage
270           (report by Sven Joachim).
271
272 20190713
273         + change reset's behavior for margins to simply clear soft-margins if
274           possible, rather than clearing and then setting them according to the
275           terminal's width (suggested by Thomas Wolff).
276         + correct order of one wbkgd versus start_color call in test/padview.c
277
278 20190706
279         + add domterm -TD
280         + improve comments for recent changes, add alias xterm.js -TD
281
282 20190630
283         + add --with-tic-path and --with-infocmp-path to work around problems
284           building fallback source using pre-6.0 tic/infocmp.
285         + add a check in tic for paired indn/rin
286         + correct a buffer-limit in write_entry.c for systems that use caseless
287           filenames.
288         + add ms-terminal -TD
289         + add vscode, vscode-direct -TD
290
291 20190623
292         + improve the tabs.1 manual page to distinguish the PWB/Unix and 7th
293           Edition versions of the tabs utility.
294         + add configure check for getenv() to work around implementation shown
295           in Emscripten #6766, use that to optionally suppress START_TRACE
296           macro, whose call to getenv() may not work properly (report by Ilya
297           Ig Petrov).
298         + modify initialization functions to avoid relying upon persistent
299           data for the result from getenv().
300         + update config.guess, config.sub
301
302 20190615
303         + expand the portability section of the man/tabs.1 manual page.
304         + regenerate HTML manpages.
305
306 20190609
307         + add mintty, mintty-direct (adapted from patch by Thomas Wolff).
308           Some of the suggested user-defined capabilities are commented-out,
309           to allow builds with ncurses 5.9 and 6.0
310         + add Smol/Rmol for tmux, vte-2018 (patch by Nicholas Marriott).
311         + add rs1 to konsole, mlterm -TD
312         + modify _nc_merge_entry() to make a copy of the data which it merges,
313           to avoid modifying the source-data when aligning extended names.
314
315 20190601
316         + modify an internal call to vid_puts to pass extended color pairs
317           e.g., from tty_update.c and lib_mvcur.c (report by Niegodziwy Beru).
318         + improve manual page description of init_tabs capability and TABSIZE
319           variable.
320
321 20190525
322         + modify reset_cmd.c to allow for tabstops at intervals other than 8
323           (report by Vincent Huisman).
324
325 20190518
326         + update xterm-new to xterm patch #345 -TD
327         + add/use xterm+keypad in xterm-new (report by Alain D D Williams) -TD
328         + update terminator entry -TD
329         + remove hard-tabs from ti703 (report by Robert Clausecker)
330         + mention meml/memu/box1 in user_caps manual page.
331         + mention user_caps.5 in tic and infocmp manual pages.
332
333 20190511
334         + fix a spurious blank line seen with "infocmp -1fx xterm+x11mouse"
335         + add checks in repair_subwindows() to keep the current position and
336           scroll-margins inside the resized subwindow.
337         + add a limit check in newline_forces_scroll() for the case where the
338           row is inside scroll-margins, but not at the end (report by Toshio
339           Kuratomi, cf: 20170729).
340         + corrected a warning message in tic for extended capabilities versus
341           number of parameters.
342
343 20190504
344         + improve workaround for Solaris wcwidth versus line-drawing characters
345           (report by Pavel Stehule).
346         + add special case in tic to validate RGB string-capability extension.
347         + corrected string/parameter-field for RGB in Caps-ncurses.
348
349 20190427
350         + corrected problem in terminfo load/realignment which prevented
351           infocmp from comparing extended capabilities with the same name
352           but different types.
353
354 20190420
355         + improve ifdef's for TABSIZE variable, to help with AIX/HPUX ports.
356
357 20190413
358         + check for TABSIZE variable in test/configure script.
359         + used test/test_arrays.c to improve Caps.aix1 and Caps.hpux11
360         + corrected filtering of comments in MKparametrized.sh
361         + reduce duplication across Caps* files by moving some parts which do
362           not depend on order into Caps-ncurses.
363
364 20190406
365         + modify MKcaptab.sh, MKkey_defs.sh, and MKhashsize.sh to handle
366           split-up Caps-files.
367         + build-fixes if extended-functions are disabled.
368
369 20190330
370         + add "screen5", to mention italics (report by Stefan Assmann)
371         + modify description of xterm+x11hilite to eliminate unused p5 -TD
372         + add configure script checks to help with a port to Ultrix 3.1
373           (report by Dennis Grevenstein).
374           + check if "b" binary feature of fopen works
375           + check for missing feature of locale.h
376           + add fallback for strstr() in test-programs
377           + add fallback for STDOUT_FILENO in test-programs
378         + update config.guess, config.sub
379
380 20190323
381         + move macro for is_linetouched() inside NCURSES_NOMACROS ifndef.
382         + corrected prototypes in several manpages using script to extract
383           those in compilable form.
384         + use _nc_copy_termtype2() rather than direct assignment in setupterm,
385           in case it is called repeatedly using fallback terminfo descriptions
386           (report/patch by Werner Fink).
387
388 20190317
389         + regenerate llib-* files.
390         + modify tic to also use new function for user-defined capability info.
391         + modify _nc_parse_entry() to check if a user-defined capability has
392           an unexpected type; ignore it in that case.
393         + fix a special case of link-anchors in generated Ada html files.
394         + use newer rel=author tag in generated html rather than rev=made,
395           which did not become accepted.
396
397 20190309
398         + in-progress changes to add parameter-checking for common user-defined
399           capabilities in tic.
400         + update MKcodes.awk and MKnames.awk to ignore the new "userdef"
401           data in Caps-ncurses (cf: 20190302).
402
403 20190302
404         + corrected some of the undocumented terminfo names in Caps.hpux11
405         + add "Caps-ncurses" file to help with checking inconsistencies in some
406           user-defined capabilities.
407         + amend check for repeat_char to handle a case where setlocale() was
408           called after initscr() (report by "Ampera").
409
410 20190223
411         + fix typo in adds200 -TD
412         + add tic check for consistent alternate character set capabilities.
413         + improve check in mvcur() to decide whether to use hard-tabs, using
414           xt, tbc and hts as clues.
415         + replace check in reset command for obsolete "pt" capability using
416           tbc and hts capabilities as clues (report by Nicolas Marriott).
417
418 20190216
419         + improve manual page description of TABSIZE.
420         + add test/demo_tabs program.
421
422 20190209
423         + add check in tic to provide warnings for mismatched number of
424           parameters in the documented user-capability extensions.
425
426 20190202
427         + modify rpm test-package ".spec" file to work around naming conflict
428           with Redhat's package for ncurses6.
429         + modify no-leaks code in test/picsmap to avoid non-standard tdestroy.
430         + amend change to configure script which altered the top-level makefile
431           to avoid attempting to install the terminfo database when it was not
432           configured, to allow for installing the ".pc" files which are also
433           in the misc directory (report by Steve Wills).
434
435 20190126
436         + change some "%define" statements in test-packages for RPMs to
437           "%global" to work around changes in rpm 4.14 from recent Redhat.
438         + fixes for O_INPUT_FIELD extension (patch by Leon Winter).
439         + eliminate fixed buffer-size when reading $TERMCAP variable.
440         + correct logic in read_entry.c which prevented $TERMCAP variable from
441           being interpreted as a fallback to terminfo entry (prompted by
442           Savannah #54556, cf: 20110924).
443
444 20190121
445         + add a check in test/configure to work around non-ncurses termcap.h
446           file in Slackware.
447         + corrected flag for "seq" method of db 1.8.5 interface, needed by toe
448           on some of the BSDs.
449         + updated "string-hacks" feature.
450         + minor improvements to manpage typography.
451         + corrected conditionally-compiled limit on color pairs (report by
452           "Hudd").
453         + add -x option to test/pair_content, test/color_content for testing
454           init_extended_pair, extended_pair_content, init_extended_color,
455           extended_color_content
456         + add -p option to test/pair_content, test/color_content to show the
457           return values from the tested functions.
458         + improve manual page curs_color.3x discussion of error returns and
459           extensions.
460         + add O_INPUT_FIELD extension to form library (patch by Leon Winter).
461         + override/suppress --enable-db-install if --disable-database configure
462           option was given.
463         + change a too-large terminal entry in tic from a fatal error to a
464           warning (prompted by discussion with Gabriele Balducci).
465
466 20190112
467         + fix typo in term(5), improve explanation of format (report by Otto
468           Modinos).
469         + add nsterm-direct -TD
470         + use SGR 1006 mouse for konsole-base -TD
471         + use SGR 1006 mouse for putty -TD
472         + add ti703/ti707, ti703-w/ti707-w (Robert Clausecker)
473
474 20190105
475         + add dummy "check" rule in top-level and test-Makefile to simply
476           building test-packages for Arch.
477         + modify configure script to avoid conflict with a non-POSIX feature
478           that enables all parts of the system headers by default.  Some
479           packagers have come to rely upon this behavior (FreeBSD #234049).
480         + update config.guess, config.sub
481
482 20181229
483         + improve man/curs_mouse.3x with regard to xterm
484         + modify tracemunch to accept filename parameters in addition to use
485           as a pipe/filter.
486         + minor optimization to reduce calls to _nc_reserve_pairs (prompted by
487           discussion with Bryan Christ).
488         + add test/pair_content.c and test/color_content.c
489         + modify infocmp to omit filtering of "OTxx" names which are used for
490           obsolete capabilities, when the output is sorted by long-names.
491           Doing this helps when making a table of the short/long capability
492           names.
493
494 20181215
495         + several fixes for gcc8 strict compiler warnings.
496         + fix a typo in comments (Aaron Gyes).
497         + add nsterm-build309 to replace nsterm-256color, assigning the latter
498           as an alias of nsterm, to make mouse work with nsterm-256color -TD
499         + base gnome-256color entry on "gnome", not "vte", for consistency -TD
500         + updates for configure macros from work on tin and xterm:
501           + CF_GNU_SOURCE, allow for Cygwin's newlib when checking for the
502             _DEFAULT_SOURCE symbol.
503           + CF_VA_COPY, add fallback check if neither va_copy/__va_copy is
504             supported, to try copying the pointers for va_list, or as an array.
505             Also add another fallback check, for __builtin_va_copy(), which
506             could be used with AIX xlc in c89 mode.
507
508 20181208
509         + modify wbkgd() and wbkgrnd() to improve compatibility with SVr4
510           curses, changing the way the window rendition is updated when the
511           background character is modified (report by Valery Ushakov).
512
513 20181201
514         + add midnightbsd to CF_XOPEN_SOURCE macro (patch by Urs Jansen).
515         + add "@" command to test/ncurses F-test, to allow rapid jump to
516           different character pages.
517         + update config.guess, config.sub from
518                 http://git.savannah.gnu.org/cgit/config.git
519
520 20181125
521         + build-fix (reports by Chih-Hsuan Yen, Sven Joachim).
522
523 20181124
524         + check --with-fallbacks option to ensure there is a value, and add
525           the fallback information to top-level Makefile summary.
526         + add some traces in initialization to show whether a fallback entry is
527           used.
528         + build-fix for test/movewindow with ncurses-examples on Solaris.
529         + add "-l" option to test/background, to dump screen contents in a form
530           that lets different curses implementations be compared.
531         + modify the initialization checks for mouse so that the xterm+sm+1006
532           block will work with terminal descriptions not mentioning xterm
533           (report by Tomas Janousek).
534
535 20181117
536         + ignore the hex/b64 $TERMINFO in toe's listing.
537         + correct a status-check in _nc_read_tic_entry() so that if reading
538           a hex/b64 $TERMINFO, and the $TERM does not match, fall-through to
539           the compiled-in search list.
540
541 20181110
542         + several workarounds to ensure proper C compiler used in parts of
543           Ada95 tree.
544         + update config.guess, config.sub from
545                 http://git.savannah.gnu.org/cgit/config.git
546
547 20181027
548         + add OpenGL clients alacritty and kitty -TD
549         + add Smulx for tmux, vte-2018 -Nicholas Marriott
550
551 20181020
552         + ignore $TERMINFO as a default value in configure script if it came
553           from the infocmp -Q option.
554         + allow value for --with-versioned-syms to be a relative pathname
555         + add a couple of broken-linker symbols to the list of versioned
556           symbols to help with link-time optimization versus weak symbols.
557         + apply shift/control/alt logic when decoding xterm's 1006 mode to
558           wheel-mouse events (Redhat #1610681).
559
560 20181013
561         + amend change from 20180818, which undid a fix for the $INSTALL value
562           to make it an absolute path.
563
564 20181006
565         + improve a configure check to work with newer optimizers (report by
566           Denis Pronin, Gentoo #606142).
567         + fix typo in tput.c (Sven Joachim, cf: 20180825).
568
569 20180929
570         + fix typo in tvi955 -TD
571         + corrected acsc for regent60 -TD
572         + add alias n7900 -TD
573         + corrected acsc for tvi950 -TD
574         + remove bogus kf0 from tvi950 -TD
575         + added function-key definitions to agree with Televideo 950 manual -TD
576         + add bel to tvi950 -TD
577         + add shifted function-keys to regent60 -TD
578         + renumber regent40 function-keys to match manual -TD
579         + add cd (clr_eos) to adds200 -TD
580
581 20180923
582         + build-fix: remove a _tracef call which was used for debugging (report
583           by Chris Clayton).
584
585 20180922
586         + ignore interrupted system-call in test/ncurses's command-line, e.g.,
587           if the terminal were resized.
588         + add shift/control/alt logic for decoding xterm's 1006 mode (Redhat
589           #1610681, cf: 20141011).
590         + modify rpm test-packages to not use --disable-relink with Redhat,
591           since Fedora 28's tools do not work with that feature.
592
593 20180908
594         + document --with-pcre2 configure option in INSTALL.
595         + improve workaround for special case in PutAttrChar() where a cell is
596           marked as alternate-character set, to handle a case where the
597           character in the cell does not correspond to any of the ASCII
598           fallbacks (report by Leon Winter, cf: 20180505).
599         + amend change to form library which attempted to avoid unnecessary
600           update of cursor position in non-public fields, to simply disable
601           output in this case (patch by Leon Winter, cf: 20180414).
602         + improve check for LINE_MAX runtime limit, to accommodate broken
603           implementations of sysconf().
604
605 20180901
606         + improve manual page for wgetnstr, giving background for the length
607           parameter.
608         + define a limit for wgetnstr, wgetn_wstr when length is negative or
609           "too large".
610         + update configure script to autoconf 2.52.20180819 (Debian #887390).
611
612 20180825
613         + add a section to tput manual page clarifying how it determines the
614           terminal size (prompted by discussion with Grant Jenks).
615         + add "--disable-relink" to rpm test-packages, for consistency with the
616           deb test-packages.
617         + split spec-file into ncurses6.spec and ncursest6.spec to work around
618           toolset breakage in Fedora 28.
619         + drop mention of "--disable-touching", which was not in the final
620           20180818 updates.
621
622 20180818
623         + build-fix for PDCurses with ncurses-examples.
624         + improved CF_CC_ENV_FLAGS.
625         + modify configure scripts to reduce relinking/ranlib during library
626           install (Debian #903790):
627           + use "install -p" when available, to avoid need for ranlib of
628             static libraries.
629           + modify scripts which use "--disable-relink" to add a 1-second
630             sleep to work around tools which use whole-second timestamps, e.g.,
631             in utime() rather than the actual file system resolution.
632
633 20180804
634         + improve logic for clear with E3 extension, in case the terminal
635           scrolls content onto its saved-lines before actually clearing
636           the display, by clearing the saved-lines after clearing the
637           display (report/patch by Nicholas Marriott).
638
639 20180728
640         + improve documentation regarding feature-test macros in curses.h
641         + improve documentation regarding the virtual and physical screens.
642         + formatting fixes for manpages, regenerate man-html documentation.
643
644 20180721
645         + build-fixes for gcc8.
646         + corrected acsc for wy50 -TD
647         + add wy50 and wy60 shifted function-keys as kF1 to kF16 -TD
648         + remove ansi+rep mis-added to interix in 2018-02-23 -TD
649
650 20180714
651         + add enum, regex examples to test/demo_forms
652         + add configure check for pcre-posix library to help with MinGW port.
653
654 20180707
655         + build-fixes for gcc8.
656         + correct order of WINDOW._ttytype versus WINDOW._windowlist in
657           report_offsets.
658         + fix a case where tiparm could return null if the format-string was
659           empty (Debian #902630).
660
661 20180630
662         + add acsc string to vi200 (Nibby Nebbulous)
663           add right/down-arrow to vi200's acsc -TD
664         + add "x" to tput's getopt string so that "tput -x clear" works
665           (Nicholas Marriott).
666         + minor fixes prompted by anonymous report on stack overflow:
667           + correct order of checks in _nc_get_locale(), for systems lacking
668             locale support.
669           + add "#error" in a few places to flag unsupported configurations
670
671 20180623
672         + use _WIN32/_WIN64 in preference to __MINGW32__/__MINGW64__ symbols
673           to simplify building with MSVC, since the former are defined in both
674           compiler configurations (report by Ali Abdulkadir).
675         + further improvements to configure-checks from work on dialog, i.e.,
676           updated CF_ADD_INCDIR, CF_FIND_LINKAGE, CF_GCC_WARNINGS,
677           CF_GNU_SOURCE, CF_LARGEFILE, CF_POSIX_C_SOURCE, CF_SIZECHANGE, and
678           CF_TRY_XOPEN_SOURCE.
679         + update config.guess, config.sub from
680                 http://git.savannah.gnu.org/cgit/config.git
681
682 20180616
683         + build-fix for ncurses-examples related to gcc8-fixes (cf: 20180526).
684         + reduce use of _GNU_SOURCE for current glibc where _DEFAULT_SOURCE
685           combines with _XOPEN_SOURCE (Debian #900987).
686         + change target configure level for _XOPEN_SOURCE to 600 to address
687           use of vsscanf and setenv.
688         + improved configure-checks CF_SIZECHANGE and CF_STRUCT_TERMIOS from
689           work on dialog.
690
691 20180609
692         + modify generated ncurses*config and ncurses.pc, ncursesw.pc, etc.,
693           to list helper libraries such as gpm for static linking (Debian
694           #900839).
695         + marked vwprintw and vwscanw as deprecated; recommend using vw_printw
696           and vw_scanw, respectively.
697
698 20180602
699         + add RPM test-package "ncursest-examples".
700         + modified RPM test-package to work with Mageia6.
701
702 20180526
703         + add note in curs_util.3x about unctrl.h
704         + review/improve header files to ensure that those include necessary
705           files except for the previously-documented cases (report by Isaac
706           Pascual Monells).
707         + improved test-package scripts, adapted from byacc 1.9 20180525.
708         + fix some gcc8 warnings seen in Redhat package build, but
709           work around bug in gcc8 compiler warnings in comp_parse.c
710
711 20180519
712         + formatting fixes for manpages, regenerate man-html documentation.
713         + trim spurious whitespace from tmux in 2018-02-24 changes;
714           fix some inconsistencies in/between tmux- and iterm2-entries for SGR
715           (report by C Anthony Risinger)
716         + improve iterm2 using some xterm features which it has adapted -TD
717         + add check in pair_content() to handle the case where caller asks
718           for an uninitialized pair (Debian #898658).
719
720 20180512
721         + remove trailing ';' from GCC_DEPRECATED definition.
722         + repair a change from 20110730 which left an error-check/warning dead.
723         + fix several minor Coverity warnings.
724
725 20180505
726         + add deprecation warnings for internal functions called by older
727           versions of tack.
728         + fix a special case in PutAttrChar() where a cell is marked as
729           alternate-character set, but the terminal does not actually support
730           the given graphic character.  This would happen in an older terminal
731           such as vt52, which lacks most line-drawing capability.
732         + use configure --with-config-suffix option to work around filename
733           conflict with Debian packages versus test-packages.
734         + update tracemunch to work with perl 5.26.2, which changed the rules
735           for escaping regular expressions.
736
737 20180428
738         + document new form-extension O_EDGE_INSERT_STAY (report by Leon
739           Winter).
740         + correct error-returns listed in manual pages for a few form functions
741           (report by Leon Winter).
742         + add a check in form-library for null-pointer dereference:
743                 unfocus_current_field (form);
744                 form_driver (form, REQ_VALIDATION);
745           (patch by Leon Winter).
746
747 20180414
748         + modify form library to optionally delay cursor movement on a field
749           edge/boundary (patch by Leon Winter).
750         + modify form library to avoid unnecessary update of cursor position in
751           non-public fields (patch by Leon Winter).
752         + remove unused _nc_import_termtype2() function.
753         + also add/improve null-pointer checks in other places
754         + add a null-pointer check in _nc_parse_entry to handle an error when
755           a use-name is invalid syntax (report by Chung-Yi Lin).
756
757 20180407
758         + clarify in manual pages that vwprintw and vwscanw are obsolete,
759           not part of X/Open Curses since 2007.
760         + use "const" in some prototypes rather than NCURSES_CONST where X/Open
761           Curses was updated to do this, e.g., wscanw, newterm, the terminfo
762           interface.  Also use "const" for consistency in the termcap
763           interface, which was withdrawn by X/Open Curses in Issue 5 (2007).
764           As of Issue 7, X/Open Curses still lacks "const" for certain return
765           values, e.g., keyname().
766
767 20180331
768         + improve terminfo write/read by modifying the fourth item of the
769           extended header to denote the number of valid strings in the extended
770           string table (prompted by a comment in unibilium's sources).
771
772 20180324
773         + amend Scaled256() macro in test/picsmap.c to cover the full range
774           0..1000 (report by Roger Pau Monne).
775         + add some checks in tracemunch for undefined variables.
776         + trim some redundant capabilities from st-0.7 -TD
777         + trim unnecessary setf/setb from interix -TD
778
779 20180317
780         + fix a check in infotocap which may not have detected a problem when
781           it should have.
782         + add a check in tic for the case where setf/setb are given using
783           different strings, but provide identical results to setaf/setab.
784         + further improve fix for terminfo.5 (patch by Kir Kolyshkin).
785         + reorder loop-limit checks in winsnstr() in case the string has no
786           terminating null and only the number of characters is used (patch
787           by Gyorgy Jeney).
788
789 20180303
790         + modify TurnOn/TurnOff macros in lib_vidattr.c and lib_vid_attr.c to
791           avoid expansion of "CUR" in trace.
792         + improve a few lintian warnings in test-packages.
793         + modify lib_setup to avoid calling pthread_self() without first
794           verifying that the address is valid, i.e., for weak symbols
795           (report/patch by Werner Fink).
796         + modify generated terminfo.5 to not use "expand" and related width
797           on the last column of tables, making layout on wide terminals look
798           better (adapted from patch by Kir Kolyshkin).
799         + add a category to report_offsets, e.g., "w" for wide-character, "t"
800           for threads to make the report more readable.  Reorganized the
801           structures reported to make the categories more apparent.
802         + simplify some ifdef's for extended-colors.
803         + add NCURSES_GLOBALS and NCURSES_PRESCREEN to report_offsets, to show
804           how similar the different tinfo configurations are.
805
806 20180224
807         + modify _nc_resolve_uses2() to detect incompatible types when merging
808           a "use=" clause of extended capabilities.  The problem was seen in a
809           defective terminfo integrated from simpleterm sources in 20171111,
810           compounded by repair in 20180121.
811         + correct Ss/Ms interchange in st-0.7 entry (tmux #1264) -TD
812         + fix remaining flash capabilities with trailing mandatory delays -TD
813         + correct cut/paste in NEWS (report by Sven Joachim).
814
815 20180217
816         + remove incorrect free() from 20170617 changes (report by David Macek).
817         + correct type for "U8" in user_caps.5; it is a number not boolean.
818         + add a null-pointer check in safe_sprintf.c (report by Steven Noonan).
819         + improve fix for Debian #882620 by reusing limit2 variable (report by
820           Julien Cristau, Sven Joachim).
821
822 20180210
823         + modify misc/Makefile.in to install/uninstall explicit list in case
824           the build-directory happens to have no ".pc" files when an uninstall
825           is performed (report by Jeffrey Walton).
826         + deprecate safe-sprintf, since the vsnprintf function, which does what
827           was needed, was standardized long ago.
828         + add several development/experimental options to development packages.
829         + minor reordering of options in configure script to make the threaded
830           and reentrant options distinct from the other extensions which are
831           normally enabled.
832
833 20180203
834         + minor fixes to test/*.h to make them idempotent.
835         + add/use test/parse_rgb.h to show how the "RGB" capability works.
836         + add a clarification in user_caps.5 regarding "RGB" capability.
837         + add extended_slk_color{,_sp} symbols to the appropriate
838           package/*.{map,sym} files (report by Sven Joachim, cf: 20170401).
839
840 20180129
841         + update "VERSION" file, used in shared-library naming.
842
843 20180127 6.1 release for upload to ftp.gnu.org
844
845 20180127
846         + updated release notes
847         + amend a warning message from tic which should have flagged misuse
848           of "XT" capability in "screen" terminal description.
849         > terminfo changes:
850         + trim "XT" from screen entry, add comments to explain why it was
851           not suitable -TD
852         + modify iterm to use xterm+sl-twm building block -TD
853         + mark konsole-420pc, konsole-vt100, konsole-xf3x obsolete reflecting
854           konsole's removal in 2008 -TD
855         + expanded the history section of konsole to explain its flawed
856           imitation of xterm's keyboard -TD
857         + use xterm+x11mouse in screen.* entries because screen does not yet
858           support xterm's 1006 mode -TD
859         + add nsterm-build400 for macOS 10.13 -TD
860         + add ansi+idc1, use that in ansi+idc adding dch for consistency -TD
861         + update vte to vte-2017 -TD
862         + add ecma+strikeout to vte-2017 -TD
863         + add iterm2-direct -TD
864         + updated teraterm, added teraterm-256color -TD
865         + add mlterm-direct -TD
866         + add descriptions for ANSI building-blocks -TD
867
868 20180121 pre-release
869         > terminfo changes:
870         + add xterm+noalt, xterm+titlestack, xterm+alt1049, xterm+alt+title
871           blocks from xterm #331 -TD
872         + add xterm+direct, xterm+indirect, xterm-direct entries from xterm
873           #331 -TD
874         + modify xterm+256color and xterm+256setaf to use correct number of
875           color pairs, for ncurses 6.1 -TD
876         + add rs1 capability to xterm-256color -TD
877         + modify xterm-r5, xterm-r6 and xterm-xf86-v32 to use xterm+kbs to
878           match xterm #272, reflecting packager's changes -TD
879         + remove "boolean" Se, Ss from st-0.7 -TD
880         + add konsole-direct and st-direct -TD
881         + remove unsupported "Tc" capability from st-0.7; use st-direct if
882           direct-colors are wanted -TD
883         + add vte-direct -TD
884         + add XT, hpa, indn, and vpa to screen, and invis, E3 to tmux (patch by
885           Pierre Carru)
886         + use xterm+sm+1006 in xterm-new, vte-2014 -TD
887         + use xterm+x11mouse in iterm, iterm2, mlterm3 because xterm's 1006
888           mode does not work with those programs.  konsole is debatable -TD
889         + add "termite" entry (report by Markus Pfeiffer) -TD
890         > merge branch begun April 2, 2017 which provides these features:
891         + support read/write new binary-format for terminfo which stores
892           numeric capabilities as a signed 32-bit integer.  The test programs
893           such as picsmap, ncurses were created or updated during 2017 to use
894           this feature.
895         + the new format is written by the wide-character configuration of
896           tic when it finds a numeric capability larger than 32767.
897         + other applications such as infocmp built with the wide-character
898           ncurses library work as expected.
899         + applications built with the "narrow" (8-bit) configuration will
900           read the new format, but will limit those extended values to 32767.
901         + in either wide/narrow configuration, the structure defined in
902           term.h still uses signed 16-bit values.
903         + because it is incompatible with the legacy (mid-1980s) binary format,
904           a new magic value is provided for the "file" program.
905         + the term.5 manual page is updated to describe this new format.
906         + the limit on file-size for compiled terminfo is increased in the
907           wide-character configuration to 32768.
908
909 20180120
910         + build-fix in picsmap.c for stdint.h existence.
911         + add --disable-stripping option to configure scripts.
912         + modify ncurses-examples to install test-scripts in the data directory.
913         + work around tool-breakage in Debian 9 and later by invoking
914           gprconfig to specify the C compiler to be used by gnatmake,
915           and conditionally suppressing Library_Options line for static
916           libraries.
917         + bump the compat level for test-packages to 7, i.e., Debian 5.
918
919 20180106
920         + fixes for writing extended color pairs in putwin.
921         + modify test/savescreen.c to add test patterns that exercise 88-,
922           256-, etc., colors.
923         + modify configure option --with-build-cc, adding clang, c89 and c99
924           as possible default values.
925         + modify ncurses-examples configure script to use pkg-config for the
926           extra form/menu/panel libraries, to be more consistent with the
927           handling of the curses/ncurses library.
928         + modify test-packages for mingw to supply "pc" files.
929         + modify gen-pkgconfig.in to list -lpthread as a private library when
930           configured to access it via weak symbols.
931         + simplify gen-pkgconfig.in, adding -ltinfo without the special linker
932           checks because some versions of the linker simply hard-code the
933           behavior.
934         + update URLs for ncurses website to use https.
935         + modify CF_CURSES_LIBS to fill in $cf_nculib_root in case the
936           ncurses-examples are built with a system ncurses that lacks the
937           standard "curses" symbolic link, as done by SuSE.  The symbol is
938           needed to make a followup check for the pthread library work, and
939           would be set properly using the options "--with-screen", etc.
940         + generate misc/*.pc with "all" rule, as done for "sources" rule
941           (report by Jeffrey Walton).
942
943 20171230
944         + build-fix for ncurses-examples with Fedora27, adding check for
945           reset_color_pairs() -- not yet in Fedora's package.
946         + consistently add $CFLAGS to $MK_SHARED_LIB symbol in configure
947           script when the latter happens to use the C compiler rather than
948           directly using the loader (report by Jeffrey Walton).
949         + set ABI for upcoming 6.1 release in "*.map" files.  While there are
950           some remaining internals to apply, no ABI-related changes are
951           anticipated.
952         + add configure --with-config-suffix option to work around filename
953           conflict with Redhat packages versus test-packages.
954
955 20171223
956         + modify ncurses-examples to quiet const-warnings when building with
957           PDCurses.
958         + modify toe to not exit if unable to read a terminal description,
959           e.g., if there is a permission problem.
960         + minor fix for progs/toe.c, using _nc_free_termtype2.
961         + assign 0 to pointer in _nc_tgetent_leak() after freeing it. Also
962           avoid reusing pointer from previous successful call to tgetent
963           if the latest call is unsuccessful (patch by Michael Schroeder,
964           OpenSuSE #1070450).
965         + minor fix for test/tracemunch, initialize $awaiting variable.
966
967 20171216
968         + repair template in test/package/ncurses-examples.spec (cf: 20171111).
969         + improve tic's warning about the number of parameters tparm might use
970           for u1-u9 by making a special case for u6.
971         + improve curs_attr.3x discussion of color pairs.
972
973 20171209
974         + modify misc/ncurses-config.in to make output with --includedir
975           consistent with --cflags, i.e., when --disable-overwrite option was
976           configured the output should show the subdirectory where headers
977           are.
978         + modify MKlib_gen.sh to suppress macros when calling an "implemented"
979           function in link_test.c
980         + updated ftp-url used in test-packages, etc.
981         + modify order of -pie/-shared options in configure script in case
982           LDFLAGS uses "-pie", working around a defect or limitation in the GNU
983           linker (prompted by patch by Yogesh Prasad, forwarded by Jay Shah).
984         + add entry in man_db.renames for user_caps.5
985
986 20171125
987         + modify MKlib_gen.sh to avoid tracing result from getstr/getnstr
988           before initialized.
989         + add "-a" aspect-ratio option to picsmap.
990         + add configure check for default path of rgb.txt, used in picsmap.
991         + modify _nc_write_entry() to truncate too-long filename (report by
992           Hosein Askari, Debian #882620).
993         + build-fix for ncurses-examples with NetBSD curses:
994           + it lacks the use_env() function.
995           + it lacks libpanel; a recent change used the wrong ifdef symbol.
996         + add a macro for is_linetouched() and adjust the function's return
997           value to make it possible for most applications to check for an
998           error-return (report by Midolikawa H).
999         + additional manpage cleanup.
1000         + update config.guess, config.sub from
1001                 http://git.savannah.gnu.org/cgit/config.git
1002
1003 20171118
1004         + add a note to curs_addch.3x on portability.
1005         + add a note to curs_pad.3x on the origin and portability of pads.
1006         + improve manpage description of getattrs (report by Midolikawa H).
1007         + improve manpage macros (prompted by discussion in Debian #880551.
1008         + reviewed test-programs using KEY_RESIZE, made fixes to test/worm.c
1009         + add a "-d" option to picsmap for default-colors.
1010         + modify old terminology entry and a few other terminal emulators to
1011           account for xon -TD
1012         + correct sgr string for tmux, which used screen's "standout" code
1013           rather than the standard code (patch by Roman Kagan)
1014         + correct sgr/sgr0 strings in a few other cases reported by tic, making
1015           those correspond to the non-sgr settings where they differ, but
1016           otherwise use ECMA-48 consistently:
1017           jaixterm, aixterm, att5420_2, att4424, att500, decansi, d410-7b,
1018           dm80, hpterm, emu-220, hp2, iTerm2.app, mterm-ansi, ncrvt100an,
1019           st-0.7, vi603, vwmterm -TD
1020         + build-fix for diagnostics warning in lib_mouse.c for pre-5.0 versions
1021           of gcc which did not recognize the diagnostic "push" pragma (patch by
1022           Vassili Courzakis).
1023
1024 20171111
1025         + add "op" to xterm+256setaf -TD
1026         + reviewed terminology 1.0.0 -TD
1027         + reviewed st 0.7 -TD
1028         + suppress debug-package for ncurses-examples rpm build.
1029
1030 20171104
1031         + check for interrupt in color-pair initialization of dots_curses.c,
1032           dots_xcurses.c
1033         + add z/Z zoom feature to test/ncurses.c C/c screens.
1034         + add '<' and '>' commands to test/ncurses.c S/s screens, to better
1035           test off-by-ones in the overlap/copywin functions.
1036
1037 20171028
1038         + improve man/curs_inwstr.3x, correct end-logic for lib_inwstr.c
1039           (report by Midolikawa H).
1040         + fix typo in a few places for "improvements" (patch by Sven Joachim).
1041         + clear the other half of a double-width character on which a line
1042           drawing character is drawn.
1043         + make test/ncurses.c "s" test easier to understand which subtests are
1044           available; add a "S" wide-character overlap test-screen.
1045         + modify test/ncurses.c C/c tests to allow for extended color pairs.
1046         + add endwin() call in error-returns from test/ncurses.c omitted in
1047           recent redesign of its menu (cf: 20170923).
1048         + improve install of hashed-db by removing the ".db" file as done for
1049           directory-tree terminal databases.
1050         + repair a few overlooked items in include/ncurses_defs from recent
1051           port/refactoring of test-programs (cf: 20170909).
1052         + add test/padview.c, to compare pads with direct updates in view.c
1053
1054 20171021
1055         + modify test/view.c to expand tabs using the ncurses library rather
1056           than in the test-program.
1057         + remove very old SIGWINCH example in test/view.c, just use KEY_RESIZE.
1058         + add -T, -e, -f -m options to "dots" test-programs.
1059         + fix a few typos in usage-messages for test-programs.
1060
1061 20171014
1062         + minor cleanup to test/view.c:
1063           + eliminate "-n" option by simply reading the whole file.
1064           + implement page up/down commands.
1065         + add check in tput for init/reset operands to ensure those use a
1066           terminal.
1067         + improve manual pages which discuss chtype, cchar_t types and the
1068           attribute values which can be stored in those types.
1069         + correct array-index when parsing "-T" command-line option in tabs
1070           program.
1071         + modify demo_new_pair.c to pass extended pairs to setcchar().
1072         + add test/dots_xcurses.c to illustrate a different approach used for
1073           extended colors which can be contrasted with dots_curses.c.
1074         + add a check in tic to note when a description uses non-mandatory
1075           delays without xon_xoff.  This is not an error, but some descriptions
1076           for a terminal emulator may use the combination incorrectly.
1077
1078 20171007
1079         + modify "-T" option of clear and tput to call use_tioctl() to obtain
1080           the operating system's notion of the screensize if possible.
1081         + review/repair some exit-codes for tput, making usage-message exit
1082           with 2 rather than 1, and a failure to open terminal 4+errno.
1083         + amend check in tput, tabs and clear to allow those to use the
1084           database-only features in cron if a -T option gives a suitable
1085           terminal name (report by Lauri Tirkkonen).
1086         + correct an ifdef in test/ncurses.c for systems with soft-keys but
1087           not slk_color().
1088         + regenerate man-html documentation.
1089
1090 20170930
1091         + fix a symbol conflict that made ncurses.c C/c menu not work with
1092           Solaris xpg4 curses.
1093         + add refresh() call to dots_mvcur.c, needed to use mvcur() with
1094           Solaris xpg4 curses after calling newterm().
1095         + minor fixes for configure script from work on ncurses-examples and
1096           tin.
1097         + improve animation in test/xmas.c by adding a time-delay in blinkit().
1098         + modify several test programs to reflect that ncurses honors existing
1099           signal handlers in initscr(), while other implementations do not.
1100         + modify bs.c to make it easier to quit.
1101         + change ncurses-examples to use attr_t vs chtype to follow X/Open
1102           documentation more closely since Solaris xpg4-curses uses different
1103           values for WA_xxx vs A_xxx that rely on attr_t being an unsigned
1104           short.  Tru64 aka OSF1, HPUX, AIX did as ncurses does, equating the
1105           two sets.
1106
1107 20170923
1108         + modify menu for test/ncurses.c to fit on 24-line screen.
1109         + build-fix for configure --with-caps=uwin
1110         + add options to test_arrays.c, for selecting termcap vs terminfo, etc.
1111
1112 20170916
1113         + minor fix to test/filter.c to avoid clearing the command in one case.
1114         + modify filter() to discard clr_eos if back_color_erase is set.
1115
1116 20170909
1117         + improve wide-character implementation of myADDNSTR() in frm_driver.c,
1118           which was inconsistent with the normal implementation.
1119         + save/restore cursor position in Undo_Justification(), matching
1120           behavior of Buffer_To_Window() (report by Leon Winter).
1121         + modify test/knight to provide the "slow" solution for small screens
1122           using "R", noting that Warnsdorf's method is easily done with "a".
1123         + modify several test-programs which call use_default_colors() to
1124           consistently do this only if "-d" option is given.
1125         + additional changes to test with non-standard variants of curses:
1126           + modify a loop limit in firework.c to work around absence of limit
1127             checks in some libraries.
1128           + fill the last row of a window with "?" in firstlast if waddch does
1129             not return ERR on the lower-right corner.
1130         + add checks in test/configure for some functions not in 4.3BSD curses.
1131         + fix a regression in test/configure (cf: 20170826).
1132
1133 20170902
1134         + amend change for endwin-state for better consistency with the older
1135           logic (report/patch by Jeb Rosen, cf: 20170722).
1136         + modify check in fmt_entry() to handle a cancelled reset string
1137           (Debian #873746).  Make similar fixes in other parts of dump_entry.c
1138           and tput.c
1139
1140 20170827
1141         + fix a bug in repeat_char logic (cf: 20170729, report by Chris Clayton).
1142
1143 20170826
1144         + fixes for "iterm2" (report by Leonardo Brondani Schenkel) -TD
1145         + corrected a warning from tic about keys which are the same, to skip
1146           over missing/cancelled values.
1147         + add check in tic for unnecessary use of "2" to denote a shifted
1148           special key.
1149         + improve checks in trim_sgr0, comp_parse.c and parse_entry.c, for
1150           cancelled string capabilities.
1151         + add check in _nc_parse_entry() for invalid entry name, setting the
1152           name to "invalid" to avoid problems storing entries.
1153         + add/improve checks in tic's parser to address invalid input
1154           + add a check in comp_scan.c to handle the special case where a
1155             nontext file ending with a NUL rather than newline is given to tic
1156             as input (Redhat #1484274).
1157           + allow for cancelled capabilities in _nc_save_str (Redhat #1484276).
1158           + add validity checks for "use=" target in _nc_parse_entry (Redhat
1159             #1484284).
1160           + check for invalid strings in postprocess_termcap (Redhat #1484285)
1161           + reset secondary pointers on EOF in next_char() (Redhat #1484287).
1162           + guard _nc_safe_strcpy() and _nc_safe_strcat() against calls using
1163             cancelled strings (Redhat #1484291).
1164         + correct typo in curs_memleaks.3x (Sven Joachim).
1165         + improve test/configure checks for some curses variants not based on
1166           X/Open Curses.
1167         + add options for test/configure to disable checks for form, menu and
1168           panel libraries.
1169
1170 20170819
1171         + update "iterm" entry -TD
1172         + add "iterm2" entry (report by Leonardo Brondani Schenkel) -TD
1173         + regenerate llib-* files.
1174         + regenerate HTML manpages.
1175         + improve picsmap test-program:
1176           + reduce memory used for tsearch
1177           + add report in log file showing cumulative color coverage.
1178         + add -x option to clear/tput to make the E3 extension optional
1179           (cf: 20130622).
1180         + add options -T and -V to clear command for compatibility with tput.
1181         + add usage message to clear command (Debian #371855).
1182         + improve usage messages for tset and tput.
1183         + minor fixes to "RGB" extension and reset_color_pairs().
1184
1185 20170812
1186         + improve description of -R option in infocmp manual page (report by
1187           Stephane Chazelas).
1188         + add reset_color_pairs() function.
1189         + add user_caps.5 manual page to document the terminfo extensions used
1190           by ncurses.
1191         + improve build scripts, using SIGQUIT vs SIGTRAP; add other configure
1192           script fixes from work on xterm, lynx and tack.
1193         + modify install-rule for ncurses-examples to put the data files in
1194           /usr/share/ncurses-examples
1195         + improve tracemunch, by changing address-parameters of add_wch(),
1196           color_content() and pair_content() to dummy parameters.
1197         + minor optimization to _nc_change_pair, to return quickly when the
1198           current screen is marked for clearing.
1199         + in-progress changes to improve performance of test/picsmap.c for
1200           loading image files.
1201         + modify allocation for SCREEN's color-pair table to start small, grow
1202           on demand up to the existing limit.
1203         + add "RGB" extension capability for direct-color support, use this to
1204           improve color_content().
1205         + improve picsmap test-program:
1206           + if no palette file is needed, attempt to load one based on $TERM,
1207             checking first in the current directory, then by adding ".dat"
1208             suffix, and finally in the data-directory, e.g.,
1209             /usr/share/ncurses-examples
1210           + add "-l" option for logging
1211           + add "-d" option for debugging
1212           + add "-s" option for stepping automatically through list of images,
1213             with time delay.
1214           + use tsearch to improve time for loading color table for images.
1215         + update config.guess, config.sub from
1216                 http://git.savannah.gnu.org/cgit/config.git
1217
1218 20170729
1219         + update interix entry using tack and SFU on Windows 7 Ultimate -TD
1220         + use ^? for kdch1 in interix (reported by Jonathan de Boyne Pollard)
1221         + add "rep" to xterm-new, available since 1997/01/26 -TD
1222         + move SGR 24 and 27 from vte-2014 to vte-2012 (request by Alain
1223           Williams) -TD
1224         + add a check in newline_forces_scroll() in case a program moves the
1225           cursor outside scrolling margins (report by Robert King).
1226         + improve _nc_tparm_analyze, using that to extend the checks made by
1227           tic for reporting inconsistencies between the expected number of
1228           parameters for a capability and the actual.
1229         + amend handling of repeat_char capability in EmitRange (adapted from
1230           report/patch by Dick Wesseling):
1231           + translate the character to the alternate character set when the
1232             alternate character set is enabled.
1233           + do not use repeat_char for characters past 255.
1234         + document "_nc_free_tinfo" in manual page, because it could be used in
1235           tack for memory-leak checking.
1236         + add "--without-tack" configure option to refine "--with-progs"
1237           configure option.  Normally tack is no longer built in-tree, but
1238           a few packagers combine it during the build.  If term_entry.h is
1239           installed, there is no advantage to in-tree builds.
1240         + adjust configure-script to define HAVE_CURSES_DATA_BOOLNAMES symbol
1241           needed for tack 1.08 when built in-tree.  Rather than relying upon
1242           internal "_nc_" functions, tack now uses the boolean, number and
1243           string capability name-arrays provided by ncurses and SVr4 Unix
1244           curses.  It still uses term_entry.h for the definitions of the
1245           extended capability arrays.
1246         + add an overlooked null-pointer check in mvcur changes from 20170722
1247
1248 20170722
1249         + improve test-packages for ncurses-examples and AdaCurses for lintian
1250         + modify logic for endwin-state to be able to detect the case where
1251           the screen was never initialized, using that to trigger a flush of
1252           ncurses' buffer for mvcur, e.g., in test/dots_mvcur.c for the
1253           term-driver configuration.
1254         + add dependency upon ncurses_cfg.h to a few other internal header
1255           files to allow each to be compiled separately.
1256         + add dependency upon ncurses_cfg.h to tic's header-files; any program
1257           using tic-library will have to supply this file.  Legacy tack
1258           versions supply this file; ongoing tack development has dropped the
1259           dependency upon tic-library and new releases will not be affected.
1260
1261 20170715
1262         + modify command-line parameters for "convert" used in picsmap to work
1263           with ImageMagick 6.8 and newer.
1264         + fix build-problem with tack and ABI-5 (Debian #868328).
1265         + repair termcap-format from tic/infocmp broken in 20170701 fixes
1266           (Debian #868266).
1267         + reformat terminfo.src with 20170513 updates.
1268         + improve test-packages to address lintian warnings.
1269
1270 20170708
1271         + add a note to tic manual page about -W versus -f options.
1272         + correct a limit-check in fixes from 20170701 (report by Sven Joachim).
1273
1274 20170701
1275         + modify update_getenv() in db_iterator.c to ensure that environment
1276           variables which are not initially set will be checked later if an
1277           application happens to set them (patch by Guillaume Maudoux).
1278         + remove initialization-check for calling napms() in the term-driver
1279           configuration; none is needed.
1280         + add help-screen to test/test_getstr.c and test/test_get_wstr.c
1281         + improve compatibility between different configurations of new_prescr,
1282           fixing a case with threaded code and term-driver where c++/demo did
1283           not work (cf: 20160213).
1284         + the fixes for Redhat #1464685 obscured a problem subsequently
1285           reported in Redhat #1464687; the given test-case was no longer
1286           reproducible.  Testing without the fixes for the earlier reports
1287           showed a problem with buffer overflow in dump_entry.c, which is
1288           addressed by reducing the use of a fixed-size buffer.
1289         + add/improve checks in tic's parser to address invalid input
1290           (Redhat #1464684, #1464685, #1464686, #1464691).
1291           + alloc_entry.c, add a check for a null-pointer.
1292           + parse_entry.c, add several checks for valid pointers as well as
1293             one check to ensure that a single character on a line is not
1294             treated as the 2-character termcap short-name.
1295         + fix a memory leak in delscreen() (report by Bai Junq).
1296         + improve tracemunch, showing thread identifiers as names.
1297         + fix a use-after-free in NCursesMenu::~NCursesMenu()
1298         + further amend incorrect calls for memory-leaks from 20170617 changes
1299           (report by Allen Hewes).
1300
1301 20170624
1302         + modify c++/etip.h.in to accommodate deprecation of throw() and
1303           throws() in c++17 (prompted by patch by Romain Geissler).
1304         + remove some incorrect calls for memory-leaks from 20170617 changes
1305           (report by Allen Hewes).
1306         + add test-programs for termattrs and term_attrs.
1307         + modify _nc_outc_wrapper to use the standard output if the screen was
1308           not initialized, rather than returning an error.
1309         + improve checks for low-level terminfo functions when the terminal
1310           has not been initialized (Redhat #1345963).
1311         + modify make_hash to allow building with address-sanitizer,
1312           assuming that --disable-leaks is configured.
1313         + amend changes for number_format() in 20170506 to avoid undefined
1314           behavior when shifting (patch by Emanuele Giaquinta).
1315
1316 20170617
1317         + fill in some places where TERMTYPE2 vs TERMTYPE was not used
1318           (report by Allen Hewes).
1319         + use ExitTerminfo() internally in error-exits for ncurses' setupterm
1320           to help with leak checking.
1321         + use ExitProgram() in error-exit from initscr() to help with leak
1322           checking.
1323         + review test-programs, adding checks for cases where the terminal
1324           cannot be initialized.
1325
1326 20170610
1327         + add option "-xp" to picsmap.c, to use init_extended_pair().
1328         + make simple performance fixes for picsmap.c
1329         + improve aspect ratio of images read from "convert" in picsmap.c
1330
1331 20170603
1332         + add option to picsmap to use color-palette files, e.g., for mapping
1333           to xterm-256color.
1334         + move the data in SCREEN used for the alloc_pair() function to the
1335           end, to restore compatibility between ncurses/ncursesw libtinfo
1336           (report/patch by Miroslav Lichvar).
1337         + add build-time utility "report_offsets" to help show when the various
1338           configurations of tinfo library are compatible or not.
1339
1340 20170527
1341         + improved test/picsmap.c:
1342           + lookup named colors for xpm files in rgb.txt
1343           + accept blanks in color-keys for xpm files.
1344           + if neither xbm/xpm work, try "convert", which may be available.
1345
1346 20170520
1347         + modify test/picsmap.c to read xpm files.
1348         + modify package/debian/* to create documentation packages, so the
1349           related files can be checked with lintian.
1350         + fix some typos in manpages (report/patch by Sven Joachim).
1351
1352 20170513
1353         + add test/picsmap.c to fill in some testing issues not met by dots.
1354           The initial version reads X bitmap (".xbm") files.
1355         + repair logic which forces a repaint where a color-pair's content is
1356           changed (cf: 20170311).
1357         + improve tracemunch, showing screenXX pointers as names.
1358
1359 20170506
1360         + modify tic/infocmp display of numeric values to use hexadecimal when
1361           they are "close" to a power of two, making the result more readable.
1362         + improve discussion of portability in curs_mouse.3x
1363         + change line-length for generated html/manpages to 78 columns from 65.
1364         + improve discussion of line-drawing characters in curs_add_wch.3x
1365           (prompted by discussion with Lorinczy Zsigmond).
1366         + cleanup formatting of hackguide.html and ncurses-intro.html
1367         + add examples for WACS_D_PLUS and WACS_T_PLUS to test/ncurses.c
1368
1369 20170429
1370         + corrected a case where $with_gpm was set to "maybe" after CF_WITH_GPM,
1371           overlooked in 20160528 fixes (report by Alexandre Bury).
1372         + improve a couple of test-program's help-messages.
1373         + corrected loop in rain.c from 20170415 changes.
1374         + modify winnstr and winchnstr to return error if the output pointer is
1375           null, as well as adding a null pointer check of the window pointer
1376           for better compatibility with other implementations.
1377         + improve discussion of NetBSD curses in scr_dump.5
1378         + modify LIMIT_TYPED macro in new_pair.h to avoid changing sign of the
1379           value to be limited (reports by Darby Payne, Rob Boudreau).
1380         + update config.guess, config.sub from
1381                 http://git.savannah.gnu.org/cgit/config.git
1382
1383 20170422
1384         + build-fix for termcap-configuration (report by Chi-Hsuan Yen).
1385         + improve terminfo manual page discussion of control- and graphics-
1386           characters.
1387         + remove tic warning about "^?" in string capabilities, which was
1388           marked as an extension (cf: 20000610, 20110820); however all Unix
1389           implementations support this and X/Open Curses does not address it.
1390           On the other hand, termcap never did support this feature.
1391         + correct missing comma-separator between string capabilities in
1392           icl6402 and m2-nam -TD
1393         + restore rmir/smir in ansi+idc to better match original ansiterm+idc,
1394           add alias ansiterm (report by Robert King).
1395         + amend an old check for ambiguous use of "ma" in terminfo versus
1396           a termcap use, if the capability is cancelled to treat it as number.
1397         + correct a case in _nc_captoinfo() which read "%%" and emitted "%".
1398         + modify sscanf calls in _nc_infotocap() for patterns "%{number}%+%c"
1399           and "%'char'%+%c" to check that the final character is really 'c',
1400           avoiding a case in icl6404 which cannot be converted to termcap.
1401         + in _nc_infotocap(), add a check to ensure that terminfo "^?" is not
1402           written to termcap, because the BSDs did not implement that.
1403         + in _nc_tic_expand() and _nc_infotocap(), improve string-length check
1404           when deciding whether to use "^X" or "\xxx" format for control
1405           characters, to make the output of tic/infocmp more predictable.
1406         + limit termcap "%d" width to 2 digits on input, and use "%2" in
1407           preference to "%02" on output.
1408         + correct terminfo/termcap conversion of "%02" and "%03" into "%2" and
1409           "%3"; the result repeated the last character.
1410         + add man/scr_dump.5 to document screen-dump format.
1411
1412 20170415
1413         + modify several test programs to use new popup_msgs, adapted from
1414           help-screen used in test/edit_field.c
1415         + drop two symbols obsoleted in 2004: _nc_check_termtype, and
1416           _nc_resolve_uses
1417         + fix some old copyright dates (cf: 20031025).
1418         + build-fixes for test/savescreen.c to work with AIX and HPUX.
1419         + minor fix to configure script, adding a backslash/continuation.
1420         + extend TERMINAL structure for ABI 6 to store numbers internally as
1421           integers rather than short, by adding new data for this purpose.
1422         + more fixes for minor memory-leaks in test-programs.
1423
1424 20170408
1425         + change logic in wins_nwstr() to avoid addressing data past the output
1426           of mbstowcs().
1427         + correct a call to setcchar() in Data_Entry_w() from 20131207 changes.
1428         + fix minor memory-leaks in test-programs.
1429         + further improve ifdef in term_entry.h for internal definitions not
1430           used by tack.
1431
1432 20170401
1433         + minor fixes for vt100+4bsd, e.g., delay in sgr for consistency -TD
1434         + add smso for env230, to match sgr -TD
1435         + remove p7/protect from sgr in fbterm -TD
1436         + drop setf/setb from fbterm; setaf/setab are enough -TD
1437         + make xterm-pcolor sgr consistent with other capabilities -TD
1438         + add rmxx/smxx ECMA-48 strikeout extension to tmux and xterm-basic
1439           (discussion with Nicholas Marriott)
1440         + add test-programs sp_tinfo and extended_color
1441         + modify no-leaks code for lib_cur_term.c to account for the tgetent()
1442           cache.
1443         + modify setupterm() to save original tty-modes so that erasechar()
1444           works as expected.  Also modify _nc_setupscreen() to avoid redundant
1445           calls to get original tty-modes.
1446         + modify set_curterm() to update ttytype[] data used by longname().
1447         + modify wattr_set() and wattr_get() to return ERR if win-parameter is
1448           null, as documented.
1449         + improve cast used for null-pointer checks in header macros, to
1450           reduce compiler warnings.
1451         + modify several functions, using the reserved "opts" parameter to pass
1452           color- and pair-values larger than 16-bits:
1453           + getcchar(), setcchar(), slk_attr_set(), vid_puts(), wattr_get(),
1454             wattr_set(), wchgat(), wcolor_set().
1455           + Other functions call these with the corresponding altered behavior,
1456             including chgat(), mvchgat(), mvwchgat(), slk_color_on(),
1457             slk_color_off(), vid_attr().
1458         + add new functions for manipulating color- and pair-values larger
1459           than 16-bits.  These are extended_color_content(),
1460           extended_pair_content(), extended_slk_color(), init_extended_color(),
1461           init_extended_pair(), and the corresponding sp-funcs.
1462
1463 20170325
1464         + fix a memory leak in the window-list when creating multiple screens
1465           (reports by Andres Martinelli, Debian #783486).
1466         + reviewed calls from link_test.c, added a few more null-pointer
1467           checks.
1468         + add a null-pointer check in ungetmouse, in case mousemask was not
1469           called (report by "Kau").
1470         + updated curs_sp_funcs.3x for new functions.
1471
1472 20170318
1473         + change TERMINAL structure in term.h to make it opaque.  Some
1474           applications misuse its members, e.g., directly modifying it
1475           rather than using def_prog_mode().
1476         + modify utility headers such as tic.h to make it clearer which are
1477           externals that are used by tack.
1478         + improve curs_slk.3x in particular its discussion of portability.
1479         + fix cut/paste in legacy_encoding.3x
1480         + add prototype for find_pair() to new_pair.3x (report by Branden
1481           Robinson).
1482         + fix a couple of broken links in generated man-html documentation.
1483         + regenerate man-html documentation.
1484
1485 20170311
1486         + modify vt100 rs2 string to reset vt52 mode and scrolling regions
1487           (report/analysis by Robert King) -TD
1488         + add vt100+4bsd building block, use that for older terminals rather
1489           than "vt100" which is now mostly used as a building block for
1490           terminal emulators -TD
1491         + correct a few spelling errors in terminfo.src comments -TD
1492         + add fbterm -TD
1493         + fix a typo in ncurses.c test_attr legend (patch by Petr Vanek).
1494         + changed internal colorpair_t to a struct, eliminating an internal
1495           8-bit limit on colors
1496         + add ncurses/new_pair.h
1497         + add ncurses/base/new_pair.c with alloc_pair(), find_pair() and
1498           free_pair() functions
1499         + add test/demo_new_pair.c
1500
1501 20170304
1502         + improve terminfo manual description of terminfo syntax.
1503         + clarify the use of wint_t vs wchar_t in curs_get_wstr.3x
1504         + improve description of endwin() in manual.
1505         + modify setcchar() and getcchar() to treat negative color-pair as an
1506           error.
1507         + fix a typo in include/hashed_db.h (Andre Sa).
1508
1509 20170225
1510         + fixes for CF_CC_ENV_FLAGS (report by Ross Burton).
1511
1512 20170218
1513         + fix several formatting issues with manual pages.
1514         + correct read of terminfo entry in which all strings are absent or
1515           explicitly cancelled.  Before this fix, the result was that all were
1516           treated as only absent.
1517         + modify infocmp to suppress mixture of absent/cancelled capabilities
1518           that would only show as "NULL, NULL", unless the -q option is used,
1519           e.g., to show "-, @" or "@, -".
1520
1521 20170212
1522         + build-fixes for PGI compilers (report by Adam J. Stewart)
1523           + accept whitespace in sed expression for generating expanded.c
1524           + modify configure check that g++ compiler warnings are not used.
1525           + add configure check for -fPIC option needed for shared libraries.
1526         + let configure --disable-ext-funcs override the default for the
1527           --enable-sp-funcs option.
1528         + mark some structs in form/menu/panel libraries as potentially opaque
1529           without modifying API/ABI.
1530         + add configure option --enable-opaque-curses for ncurses library and
1531           similar options for the other libraries.
1532
1533 20170204
1534         + trim newlines, tabs and escaped newlines from terminfo "paths" passed
1535           to db-iterator.
1536         + ignore zero-length files in db-iterator; these are useful for
1537           instance to suppress "$HOME/.terminfo" when not wanted.
1538         + amended "b64:" encoder to work with the terminfo reader.
1539         + modify terminfo reader to accept "b64:" format using RFC-3548 in
1540           as well as RFC-4648 url/filename-safe format.
1541         + modify terminfo reader to accept "hex:" format as generated by
1542           "infocmp -0qQ1" (cf: 20150905).
1543         + adjust authors comment to reflect drop below 1% for SV.
1544
1545 20170128
1546         + minor comment-fixes to help automate links to bug-urls -TD
1547         + add dvtm, dvtm-256color -TD
1548         + add settings corresponding to xterm-keys option to tmux entry to
1549           reflect upcoming change to make that option "on" by default
1550           (patch by Nicholas Marriott).
1551         + uncancel Ms in tmux entry (Harry Gindi, Nicholas Marriott).
1552         + add dumb-emacs-ansi -TD
1553
1554 20170121
1555         + improve discussion of early history of tput program.
1556         + incorporate A_COLOR mask into COLOR_PAIR(), in case user application
1557           provides an out-of-range pair number (report by Elijah Stone).
1558         + clarify description in tput manual page regarding support for
1559           termcap names (prompted by FreeBSD #214709).
1560         + remove a restriction in tput's support for termcap names which
1561           omitted capabilities normally not shown in termcap translations
1562           (cf: 990123).
1563         + modify configure script for clang as used on FreeBSD, to work around
1564           clang's differences in exit codes vs gcc.
1565
1566 20170114
1567         + improve discussion of early history of tset/reset programs.
1568         + clarify in manual pages that the optional verbose option level is
1569           available only when ncurses is configured for tracing.
1570         + amend change from 20161231 to avoid writing traces to the standard
1571           error after initializing the trace feature using the environment
1572           variable.
1573
1574 20170107
1575         + amend changes for tput to reset tty modes to "sane" if the program
1576           is run as "reset", like tset.  Likewise, ensure that tset sends
1577           either reset- or init-strings.
1578         + improve manual page descriptions of tput init/reset and tset/reset,
1579           to make it easier to see how they are similar and different.
1580         + move a static result from key_name() to _nc_globals
1581         + modify _nc_get_screensize to allow for use_env() and use_tioctl()
1582           state to be per-screen when sp-funcs are configured, better matching
1583           the behavior when using the term-driver configuration.
1584         + improve cross-references in manual pages for often used functions
1585         + move SCREEN field for use_tioctl() data before the ncursesw fields,
1586           and limit that to the sp-funcs configuration to improve termlib
1587           compatibility (cf:  20120714).
1588         + correct order of initialization for traces in use_env() and
1589           use_tioctl() versus first trace calls.
1590
1591 20161231
1592         + fix errata for ncurses-howto (report by Damien Ruscoe).
1593         + fix a few places in configure/build scripts where DESTDIR and rpath
1594           were combined (report by Thomas Klausner).
1595         + merge current st description (report by Harry Gindi) -TD
1596         + modify flash capability for linux and wyse entries to put the delay
1597           between the reverse/normal escapes rather than after -TD
1598         + modify program tabs to pass the actual tty file descriptor to
1599           setupterm rather than the standard output, making padding work
1600           consistently.
1601         + explain in clear's manual page that it writes to stdout.
1602         + add special case for verbose debugging traces of command-line
1603           utilities which write to stderr (cf: 20161126).
1604         + remove a trace with literal escapes from skip_DECSCNM(), added in
1605           20161203.
1606         + update config.guess, config.sub from
1607                 http://git.savannah.gnu.org/cgit/config.git
1608
1609 20161224
1610         + correct parameters for copywin call in _nc_Synchronize_Attributes()
1611           (patch by Leon Winter).
1612         + improve color-handling section in terminfo manual page (prompted by
1613           patch by Mihail Konev).
1614         + modify programs clear, tput and tset to pass the actual tty file
1615           descriptor to setupterm rather than the standard output, making
1616           padding work.
1617
1618 20161217
1619         + add tput-colorcube demo script.
1620         + add -r and -s options to tput-initc demo, to match usage in xterm.
1621         + flush the standard output in _nc_flush for the case where SP is zero,
1622           e.g., when called via putp.  This fixes a scenario where "tput flash"
1623           did not work after changes in 20130112.
1624
1625 20161210
1626         + add configure script option --disable-wattr-macros for use in cases
1627           where one wants to use the same headers for ncurses5/ncurses6
1628           development, by suppressing the wattr* macros which differ due to
1629           the introduction of extended colors (prompted by comments in
1630           Debian #230990, Redhat #1270534).
1631         + add test/tput-initc to demonstrate tput used to initialize palette
1632           from a data file.
1633         + modify test/xterm*.dat to use the newer color4/color12 values.
1634
1635 20161203
1636         + improve discussion of field validation in form_driver.3x manual page.
1637         + update curs_trace.3x manual page.
1638
1639 20161126
1640         + modify linux-16color to not mask dim, standout or reverse with the
1641           ncv capability -TD
1642         + add 0.1sec mandatory delay to flash capabilities using the VT100
1643           reverse-video control -TD
1644         + omit selection of ISO-8859-1 for G0 in enacs capability from linux2.6
1645           entry, to avoid conflict with the user-defined mapping.  The reset
1646           feature will use ISO-8859-1 in any case (Mikulas Patocka).
1647         + improve check in tic for delays by also warning about beep/flash
1648           when a delay is not embedded, or if those use the VT100 reverse
1649           video escape without using a delay.
1650         + minor fix for syntax-check of delays from 20161119 changes.
1651         + modify trace() to avoid overwriting existing file (report by Maor
1652           Shwartz).
1653
1654 20161119
1655         + add check in tic for some syntax errors of delays, as well as use of
1656           proportional delays for non-line capabilities.
1657         + document history of the clear program and the E3 extension, prompted
1658           by various discussions including
1659           http://unix.stackexchange.com/questions/87469/clearing-the-old-scrollback-buffer
1660
1661 20161112
1662         + improve -W option in tic/infocmp:
1663           + correct order of size-adjustments in wrapped lines
1664           + if -f option splits line, do not further split it with -W
1665           + begin a new line when adding "use=" after a wrapped line
1666
1667 20161105
1668         + fix typo in man/terminfo.tail (Alain Williams).
1669         + correct program-name in adacurses6-config.1 manual page.
1670
1671 20161029
1672         + add new function "unfocus_current_field" (Leon Winter)
1673
1674 20161022
1675         + modify tset -w (and tput reset) to update the program's copy of the
1676           screensize if it was already set in the system, to improve tabstop
1677           setting which relies upon knowing the actual screensize.
1678         + add functionality of tset -w to tput, like the "-c" feature this is
1679           not optional in tput.
1680         + add "clear" as a possible link/alias to tput.
1681         + improve tput's check for being called as "init" or "reset" to allow
1682           for transformed names.
1683         + split-out the "clear" function from progs/clear.c, share with
1684           tput to get the same behavior, e.g., the E3 extension.
1685
1686 20161015
1687         + amend internal use of tputs to consistently use the number of lines
1688           affected, e.g., for insert/delete character operations.  While
1689           merging terminfo source early in 1995, several descriptions used the
1690           "*" proportional delay for these operations, prompting a change in
1691           doupdate.
1692         + regenerate llib-* files.
1693         + regenerate HTML manpages.
1694         + fix several formatting issues with manual pages.
1695
1696 20161008
1697         + adjust size in infocmp/tic to work with strlcpy.
1698         + fix configure script to record when strlcat is found on OpenBSD.
1699         + build-fix for "recent" OpenBSD vs baudrate.
1700
1701 20161001
1702         + add -W option to tic/infocmp to force long strings to wrap.  This is
1703           in addition to the -w option which attempts to fit capabilities into
1704           a given line-length.
1705         + add linux-m1 minitel entries (patch by Alexandre Montaron).
1706         + correct rs2 string for vt100-nam -TD
1707
1708 20160924
1709         + modify _nc_tic_expand to escape comma if it immediately follows a
1710           percent sign, to work with minitel change.
1711         + updated minitel and viewdata descriptions (Alexandre Montaron).
1712
1713 20160917
1714         + build-fix for gnat6, which unhelpfully attempts to compile C files.
1715         + fix typo in 20160910 changes (Debian #837892, patch by Sven Joachim).
1716
1717 20160910
1718         + trim dead code ifdef'd with HIDE_EINTR since 970830 (discussion with
1719           Leon Winter).
1720         + trim some obsolete/incorrect wording about EINTR from wgetch manual
1721           page (patch by Leon Winter).
1722         + really correct 20100515 change (patch by Rich Coe).
1723         + add "--enable-string-hacks" option to test/configure
1724         + completed string-hacks for "sprintf", etc., including test-programs.
1725         + make "--enable-string-hacks" work with Debian by checking for the
1726           "bsd" library and its associated "<bsd/string.h>" header.
1727
1728 20160903
1729         + correct 20100515 change for weak signals versus sigprocmask (report
1730           by Rich Coe).
1731         + modify misc/Makefile.in to work around OpenBSD "make" which unlike
1732           all other versions of "make" does not recognize continuation lines
1733           of comments.
1734         + amend the last change to CF_C_ENV_FLAGS to move only the
1735           preprocessor, optimization and warning flags to CPPFLAGS and CFLAGS,
1736           leaving the residue in CC.  That happens to work for gcc's various
1737           "model" options, but may require tuning for other compilers (report
1738           by Sven Joachim).
1739
1740 20160827
1741         + add "v" menu entry to test/ncurses.c to show baudrate and other
1742           values.
1743         + add "newer" baudrate symbols from Linux and FreeBSD to progs/tset.c,
1744           lib_baudrate.c
1745         + modify CF_XOPEN_SOURCE macro:
1746           + add "uclinux" to case for "linux" (patch by Yann E. Morin)
1747           + modify _GNU_SOURCE for cygwin headers, tested with cygwin 2.3, 2.5
1748             (patch by Corinna Vinschen, from changes to tin).
1749         + improve CF_CC_ENV_FLAGS macro to allow for compiler wrappers such
1750           as "ccache" (report by Enrico Scholz).
1751         + update config.guess, config.sub from
1752                 http://git.savannah.gnu.org/cgit/config.git
1753
1754 20160820
1755         + update tput manual page to reflect changes to manipulate terminal
1756           modes by sharing functions with tset.
1757         + add the terminal-mode parts of "reset" (aka tset) to the "tput reset"
1758           command, making the two almost the same except for window-size.
1759         + adapt logic used in dialog "--keep-tite" option for test/filter.c as
1760           "-a" option.  When set, test/filter attempts to suppress the
1761           alternate screen.
1762         + correct a typo in interix entry -TD
1763
1764 20160813
1765         + add a dependency upon generated-sources in Ada95/src/Makefile.in to
1766           handle a case of "configure && make install".
1767         + trim trailing blanks from include/Caps*, to work around a problem
1768           in sed (Debian #818067).
1769
1770 20160806
1771         + improve CF_GNU_SOURCE configure macro to optionally define
1772           _DEFAULT_SOURCE work around a nuisance in recent glibc releases.
1773         + move the terminfo-specific parts of tput's "reset" function into
1774           the shared reset_cmd.c, making the two forms of reset use the same
1775           strings.
1776         + split-out the terminal initialization functions from tset as
1777           progs/reset_cmd.c, as part of changes to merge the reset-feature
1778           with tput.
1779
1780 20160730
1781         + change tset's initialization to allow it to get settings from the
1782           standard input as well as /dev/tty, to be more effective when
1783           output or error are redirected.
1784         + improve discussion of history and portability for tset/reset/tput
1785           manual pages.
1786
1787 20160723
1788         + improve error message from tset/reset when both stderr/stdout are
1789           redirected to a file or pipe.
1790         + improve organization of curs_attr.3x, curs_color.3x
1791
1792 20160709
1793         + work around Debian's antique/unmaintained version of mawk when
1794           building link_test.
1795         + improve test/list_keys.c, showing ncurses's convention of modifiers
1796           for special keys, based on xterm.
1797
1798 20160702
1799         + improve test/list_keys.c, using $TERM if no parameters are given.
1800
1801 20160625
1802         + build-fixes for ncurses "test_progs" rule.
1803         + amend change to CF_CC_ENV_FLAGS in 20160521 to make multilib build
1804           work (report by Sven Joachim).
1805
1806 20160618
1807         + build-fixes for ncurses-examples with NetBSD curses.
1808         + improve test/list_keys.c, fixing column-widths and sorting the list
1809           to make it more readable.
1810
1811 20160611
1812         + revise fix for Debian #805618 (report by Vlado Potisk, cf: 20151128).
1813         + modify test/ncurses.c a/A screens to make exiting on an escape
1814           character depend on the start of keypad and timeout modes, to allow
1815           better testing of function-keys.
1816         + modify rs1 for xterm-16color, xterm-88color and xterm-256color to
1817           reset palette using "oc" string as in linux -TD
1818         + use ANSI reply for u8 in xterm-new, to reflect vt220-style responses
1819           that could be returned -TD
1820         + added a few capabilities fixed in recent vte -TD
1821
1822 20160604
1823         + correct logic for -f option in test/demo_terminfo.c
1824         + add test/list_keys.c
1825
1826 20160528
1827         + further workaround for PIE/PIC breakage which causes gpm to not link.
1828         + fix most cppcheck warnings, mostly style, in ncurses library.
1829
1830 20160521
1831         + improved manual page description of tset/reset versus window-size.
1832         + fixes to work with a slightly broken compiler configuration which
1833           cannot compile "Hello World!" without adding compiler options
1834           (report by Ola x Nilsson):
1835           + pass appropriate compiler options to the CF_PROG_CC_C_O macro.
1836           + when separating compiler and options in CF_CC_ENV_FLAGS, ensure
1837             that all options are split-off into CFLAGS or CPPFLAGS
1838           + restore some -I options removed in 20140726 because they appeared
1839             to be redundant.  In fact, they are needed for a compiler that
1840             cannot combine -c and -o options.
1841
1842 20160514
1843         + regenerate HTML manpages.
1844         + improve manual pages for wgetch and wget_wch to point out that they
1845           might return values without names in curses.h (Debian #822426).
1846         + make linux3.0 entry the default linux entry (Debian #823658) -TD
1847         + modify linux2.6 entry to improve line-drawing so that the linux3.0
1848           entry can be used in non-UTF-8 mode -TD
1849         + document return value of use_extended_names (report by Mike Gran).
1850
1851 20160507
1852         + amend change to _nc_do_color to restore the early return for the
1853           special case used in _nc_screen_wrap (report by Dick Streefland,
1854           cf: 20151017).
1855         + modify test/ncurses.c:
1856           + check return-value of putwin
1857           + correct ifdef which made the 'g' test's legend not reflect changes
1858             to keypad- and scroll-modes.
1859         + correct return-value of extended putwin (report by Mike Gran).
1860
1861 20160423
1862         + modify test/ncurses.c 'd' edit-color menu to optionally read xterm
1863           color palette directly from terminal, as well as handling KEY_RESIZE
1864           and screen-repainting with control/L and control/R.
1865         + add 'oc' capability to xterm+256color, allowing palette reset for
1866           xterm -TD
1867
1868 20160416
1869         + add workaround in configure script for inept transition to PIE vs
1870           PIC builds documented in
1871                   https://fedoraproject.org/wiki/Changes/Harden_All_Packages
1872         + add "reset" to list of programs whose names might change in manpages
1873           due to program-transformation configure options.
1874         + drop long-obsolete "-n" option from tset.
1875
1876 20160409
1877         + modify test/blue.c to use Unicode values for card-glyphs when
1878           available, as well as improving the check for CP437 and CP850.
1879
1880 20160402
1881         + regenerate HTML manpages.
1882         + improve manual pages for utilities with respect to POSIX versus
1883           X/Open Curses.
1884
1885 20160326
1886         + regenerate HTML manpages.
1887         + improve test/demo_menus.c, allowing mouse-click on the menu-headers
1888           to switch the active menu.  This requires a new extension option
1889           O_MOUSE_MENU to tell the menu driver to put mouse events which do not
1890           apply to the active menu back into the queue so that the application
1891           can handle the event.
1892
1893 20160319
1894         + improve description of tgoto parameters (report by Steffen Nurpmeso).
1895         + amend workaround for Solaris line-drawing to restore a special case
1896           that maps Unicode line-drawing characters into the acsc string for
1897           non-Unicode locales (Debian #816888).
1898
1899 20160312
1900         + modified test/filter.c to illustrate an alternative to getnstr, that
1901           polls for input while updating a clock on the right margin as well
1902           as responding to window size-changes.
1903
1904 20160305
1905         + omit a redefinition of "inline" when traces are enabled, since this
1906           does not work with gcc 5.3.x MinGW cross-compiling (cf: 20150912).
1907
1908 20160220
1909         + modify test/configure script to check for pthread dependency of
1910           ncursest or ncursestw library when building ncurses examples, e.g.,
1911           in case weak symbols are used.
1912         + modify configure macro for shared-library rules to use -Wl,-rpath
1913           rather than -rpath to work around a bug in scons (FreeBSD #178732,
1914           cf: 20061021).
1915         + double-width multibyte characters were not counted properly in
1916           winsnstr and wins_nwstr (report/example by Eric Pruitt).
1917         + update config.guess, config.sub from
1918                 http://git.savannah.gnu.org/cgit/config.git
1919
1920 20160213
1921         + amend fix for _nc_ripoffline from 20091031 to make test/ditto.c work
1922           in threaded configuration.
1923         + move _nc_tracebits, _tracedump and _tracemouse to curses.priv.h,
1924           since they are not part of the suggested ABI6.
1925
1926 20160206
1927         + define WIN32_LEAN_AND_MEAN for MinGW port, making builds faster.
1928         + modify test/ditto.c to allow $XTERM_PROG environment variable to
1929           override "xterm" as the name of the program to run in the threaded
1930           configuration.
1931
1932 20160130
1933         + improve formatting of man/curs_refresh.3x and man/tset.1 manpages
1934         + regenerate HTML manpages using newer man2html to eliminate some
1935           unwanted blank lines.
1936
1937 20160123
1938         + ifdef'd header-file definition of mouse_trafo() with NCURSES_NOMACROS
1939           (report by Corey Minyard).
1940         + fix some strict compiler-warnings in traces.
1941
1942 20160116
1943         + tidy up comments about hardcoded 256color palette (report by
1944           Leonardo Brondani Schenkel) -TD
1945         + add putty-noapp entry, and amend putty entry to use application mode
1946           for better consistency with xterm (report by Leonardo Brondani
1947           Schenkel) -TD
1948         + modify _nc_viscbuf2() and _tracecchar_t2() to trace wide-characters
1949           as a whole rather than their multibyte equivalents.
1950         + minor fix in wadd_wchnstr() to ensure that each cell has nonzero
1951           width.
1952         + move PUTC_INIT calls next to wcrtomb calls, to avoid carry-over of
1953           error status when processing Unicode values which are not mapped.
1954
1955 20160102
1956         + modify ncurses c/C color test-screens to take advantage of wide
1957           screens, reducing the number of lines used for 88- and 256-colors.
1958         + minor refinement to check versus ncv to ignore two parameters of
1959           SGR 38 and 48 when those come from color-capabilities.
1960
1961 20151226
1962         + add check in tic for use of bold, etc., video attributes in the
1963           color capabilities, accounting whether the feature is listed in ncv.
1964         + add check in tic for conflict between ritm, rmso, rmul versus sgr0.
1965
1966 20151219
1967         + add a paragraph to curs_getch.3x discussing key naming (discussion
1968           with James Crippen).
1969         + amend workaround for Solaris vs line-drawing to take the configure
1970           check into account.
1971         + add a configure check for wcwidth() versus the ncurses line-drawing
1972           characters, to use in special-casing systems such as Solaris.
1973
1974 20151212
1975         + improve CF_XOPEN_CURSES macro used in test/configure, to define as
1976           needed NCURSES_WIDECHAR for platforms where _XOPEN_SOURCE_EXTENDED
1977           does not work.  Also modified the test program to ensure that if
1978           building with ncurses, that the cchar_t type is checked, since that
1979           normally is since 20111030 ifdef'd depending on this test.
1980         + improve 20121222 workaround for broken acs, letting Solaris "work"
1981           in spite of its misconfigured wcwidth which marks all of the line
1982           drawing characters as double-width.
1983
1984 20151205
1985         + update form_cursor.3x, form_post.3x, menu_attributes.3x to list
1986           function names in NAME section (patch by Jason McIntyre).
1987         + minor fixes to manpage NAME/SYNOPSIS sections to consistently use
1988           rule that either all functions which are prototyped in SYNOPSIS are
1989           listed in the NAME section, or the manual-page name is the sole item
1990           listed in the NAME section.  The latter is used to reduce clutter,
1991           e.g., for the top-level library manual pages as well as for certain
1992           feature-pages such as SP-funcs and threading (prompted by patches by
1993           Jason McIntyre).
1994
1995 20151128
1996         + add option to preserve leading whitespace in form fields (patch by
1997           Leon Winter).
1998         + add missing assignment in lib_getch.c to make notimeout() work
1999           (Debian #805618).
2000         + add 't' toggle for notimeout() function in test/ncurses.c a/A screens
2001         + add viewdata terminal description (Alexandre Montaron).
2002         + fix a case in tic/infocmp for formatting capabilities where a
2003           backslash at the end of a string was mishandled.
2004         + fix some typos in curs_inopts.3x (Benno Schulenberg).
2005
2006 20151121
2007         + fix some inconsistencies in the pccon* entries -TD
2008         + add bold to pccon+sgr+acs and pccon-base (Tati Chevron).
2009         + add keys f12-f124 to pccon+keys (Tati Chevron).
2010         + add test/test_sgr.c program to exercise all combinations of sgr.
2011
2012 20151107
2013         + modify tset's assignment to TERM in its output to reflect the name by
2014           which the terminal description is found, rather than the primary
2015           name.  That was an unnecessary part from the initial conversion of
2016           tset from termcap to terminfo.  The termcap program in 4.3BSD did
2017           this to avoid using the short 2-character name (report by Rich
2018           Burridge).
2019         + minor fix to configure script to ensure that rules for resulting.map
2020           are only generated when needed (cf: 20151101).
2021         + modify configure script to handle the case where tic-library is
2022           renamed, but the --with-debug option is used by itself without
2023           normal or shared libraries (prompted by comment in Debian #803482).
2024
2025 20151101
2026         + amend change for pkg-config which allows build of pc-files when no
2027           valid pkg-config library directory was configured to suppress the
2028           actual install if it is not overridden to a valid directory at
2029           install time (cf: 20150822).
2030         + modify editing script which generates resulting.map to work with the
2031           clang configuration on recent FreeBSD, which gives an error on an
2032           empty "local" section.
2033         + fix a spurious "(Part)" message in test/ncurses.c b/B tests due
2034           to incorrect attribute-masking.
2035
2036 20151024
2037         + modify MKexpanded.sh to update the expansion of a temporary filename
2038           to "expanded.c", for use in trace statements.
2039         + modify layout of b/B tests in test/ncurses.c to allow for additional
2040           annotation on the right margin; some terminals with partial support
2041           did not display well.
2042         + fix typo in curs_attr.3x (patch by Sven Joachim).
2043         + fix typo in INSTALL (patch by Tomas Cech).
2044         + improve configure check for setting WILDCARD_SYMS variable; on ppc64
2045           the variable is in the Data section rather than Text (patch by Michel
2046           Normand, Novell #946048).
2047         + using configure option "--without-fallbacks" incorrectly caused
2048           FALLBACK_LIST to be set to "no" (patch by Tomas Cech).
2049         + updated minitel entries to fix kel problem with emacs, and add
2050           minitel1b-nb (Alexandre Montaron).
2051         + reviewed/updated nsterm entry Terminal.app in OSX -TD
2052         + replace some dead URLs in comments with equivalents from the
2053           Internet Archive -TD
2054         + update config.guess, config.sub from
2055                 http://git.savannah.gnu.org/cgit/config.git
2056
2057 20151017
2058         + modify ncurses/Makefile.in to sort keys.list in POSIX locale
2059           (Debian #801864, patch by Esa Peuha).
2060         + remove an early-return from _nc_do_color, which can interfere with
2061           data needed by bkgd when ncurses is configured with extended colors
2062           (patch by Denis Tikhomirov).
2063         > fixes for OS/2 (patches by KO Myung-Hun)
2064         + use button instead of kbuf[0] in EMX-specific part of lib_mouse.c
2065         + support building with libtool on OS/2
2066         + use stdc++ on OS/2 kLIBC
2067         + clear cf_XOPEN_SOURCE on OS/2
2068
2069 20151010
2070         + add configure check for openpty to test/configure script, for ditto.
2071         + minor fixes to test/view.c in investigating Debian #790847.
2072         + update autoconf patch to 2.52.20150926, incorporates a fix for Cdk.
2073         + add workaround for breakage of POSIX makefiles by recent binutils
2074           change.
2075         + improve check for working poll() by using posix_openpt() as a
2076           fallback in case there is no valid terminal on the standard input
2077           (prompted by discussion on bug-ncurses mailing list, Debian #676461).
2078
2079 20150926
2080         + change makefile rule for removing resulting.map to distclean rather
2081           than clean.
2082         + add /lib/terminfo to terminfo-dirs in ".deb" test-package.
2083         + add note on portability of resizeterm and wresize to manual pages.
2084
2085 20150919
2086         + clarify in resizeterm.3x how KEY_RESIZE is pushed onto the input
2087           stream.
2088         + clarify in curs_getch.3x that the keypad mode affects ability to
2089           read KEY_MOUSE codes, but does not affect KEY_RESIZE.
2090         + add overlooked build-fix needed with Cygwin for separate Ada95
2091           configure script, cf: 20150606 (report by Nicolas Boulenguez)
2092
2093 20150912
2094         + fixes for configure/build using clang on OSX (prompted by report by
2095           William Gallafent).
2096           + do not redefine "inline" in ncurses_cfg.h; this was originally to
2097             solve a problem with gcc/g++, but is aggravated by clang's misuse
2098             of symbols to pretend it is gcc.
2099           + add braces to configure script to prevent unwanted add of
2100             "-lstdc++" to the CXXLIBS symbol.
2101           + improve/update test-program used for checking existence of stdc++
2102             library.
2103           + if $CXXLIBS is set, the linkage test uses that in addition to $LIBS
2104
2105 20150905
2106         + add note in curs_addch.3x about line-drawing when it depends upon
2107           UTF-8.
2108         + add tic -q option for consistency with infocmp, use it to suppress
2109           all comments from the "tic -I" output.
2110         + modify infocmp -q option to suppress the "Reconstructed from"
2111           header.
2112         + add infocmp/tic -Q option, which allows one to dump the compiled
2113           form of the terminal entry, in hexadecimal or base64.
2114
2115 20150822
2116         + sort options in usage message for infocmp, to make it simpler to
2117           see unused letters.
2118         + update usage message for tic, adding "-0" option.
2119         + documented differences in ESCDELAY versus AIX's implementation.
2120         + fix some compiler warnings from ports.
2121         + modify --with-pkg-config-libdir option to make it possible to install
2122           ".pc" files even if pkg-config is not found (adapted from patch by
2123           Joshua Root).
2124
2125 20150815
2126         + disallow "no" as a possible value for "--with-shlib-version" option,
2127           overlooked in cleanup-changes for 20000708 (report by Tommy Alex).
2128         + update release notes in INSTALL.
2129         + regenerate llib-* files to help with review for release notes.
2130
2131 20150810
2132         + workaround for Debian #65617, which was fixed in mawk's upstream
2133           releases in 2009 (report by Sven Joachim).  See
2134                 https://invisible-island.net/mawk/CHANGES.html#t20090727
2135
2136 20150808 6.0 release for upload to ftp.gnu.org
2137
2138 20150808
2139         + build-fix for Ada95 on older platforms without stdint.h
2140         + build-fix for Solaris, whose /bin/sh and /usr/bin/sed are non-POSIX.
2141         + update release announcement, summarizing more than 800 changes across
2142           more than 200 snapshots.
2143         + minor fixes to manpages, etc., to simplify linking from announcement
2144           page.
2145
2146 20150725
2147         + updated llib-* files.
2148         + build-fixes for ncurses library "test_progs" rule.
2149         + use alternate workaround for gcc 5.x feature (adapted from patch by
2150           Mikhail Peselnik).
2151         + add status line to tmux via xterm+sl (patch by Nicholas Marriott).
2152         + fixes for st 0.5 from testing with tack -TD
2153         + review/improve several manual pages to break up wall-of-text:
2154           curs_add_wch.3x, curs_attr.3x, curs_bkgd.3x, curs_bkgrnd.3x,
2155           curs_getcchar.3x, curs_getch.3x, curs_kernel.3x, curs_mouse.3x,
2156           curs_outopts.3x, curs_overlay.3x, curs_pad.3x, curs_termattrs.3x
2157           curs_trace.3x, and curs_window.3x
2158
2159 20150719
2160         + correct an old logic error for %A and %O in tparm (report by "zreed").
2161         + improve documentation for signal handlers by adding section in the
2162           curs_initscr.3x page.
2163         + modify logic in make_keys.c to not assume anything about the size
2164           of strnames and strfnames variables, since those may be functions
2165           in the thread- or broken-linker configurations (problem found by
2166           Coverity).
2167         + modify test/configure script to check for pthreads configuration,
2168           e.g., ncursestw library.
2169
2170 20150711
2171         + modify scripts to build/use test-packages for the pthreads
2172           configuration of ncurses6.
2173         + add references to ttytype and termcap symbols in demo_terminfo.c and
2174           demo_termcap.c to ensure that when building ncursest.map, etc., that
2175           the corresponding names such as _nc_ttytype are added to the list of
2176           versioned symbols (report by Werner Fink)
2177         + fix regression from 20150704 (report/patch by Werner Fink).
2178
2179 20150704
2180         + fix a few problems reported by Coverity.
2181         + fix comparison against "/usr/include" in misc/gen-pkgconfig.in
2182           (report by Daiki Ueno, Debian #790548, cf:  20141213).
2183
2184 20150627
2185         + modify configure script to remove deprecated ABI 5 symbols when
2186           building ABI 6.
2187         + add symbols _nc_Default_Field, _nc_Default_Form, _nc_has_mouse to
2188           map-files, but marked as deprecated so that they can easily be
2189           suppressed from ABI 6 builds (Debian #788610).
2190         + comment-out "screen.xterm" entry, and inherit screen.xterm-256color
2191           from xterm-new (report by Richard Birkett) -TD
2192         + modify read_entry.c to set the error-return to -1 if no terminal
2193           databases were found, as documented for setupterm.
2194         + add test_setupterm.c to demonstrate normal/error returns from the
2195           setupterm and restartterm functions.
2196         + amend cleanup change from 20110813 which removed redundant definition
2197           of ret_error, etc., from tinfo_driver.c, to account for the fact that
2198           it should return a bool rather than int (report/analysis by Johannes
2199           Schindelin).
2200
2201 20150613
2202         + fix overflow warning for OSX with lib_baudrate.c (cf: 20010630).
2203         + modify script used to generate map/sym files to mark 5.9.20150530 as
2204           the last "5.9" version, and regenerated the files.  That makes the
2205           files not use ".current" for the post-5.9 symbols.  This also
2206           corrects the label for _nc_sigprocmask used in when weak symbols are
2207           configured for the ncursest/ncursestw libraries (prompted by
2208           discussion with Sven Joachim).
2209         + fix typo in NEWS (report by Sven Joachim).
2210
2211 20150606 pre-release
2212         + make ABI 6 the default by updates to dist.mk and VERSION, with the
2213           intention that the existing ABI 5 should build as before using the
2214           "--with-abi-version=5" option.
2215         + regenerate ada- and man-html documentation.
2216         + minor fixes to color- and util-manpages.
2217         + fix a regression in Ada95/gen/Makefile.in, to handle special case of
2218           Cygwin, which uses the broken-linker feature.
2219         + amend fix for CF_NCURSES_CONFIG used in test/configure to assume that
2220           ncurses package scripts work when present for cross-compiling, as the
2221           lessor of two evils (cf: 20150530).
2222         + add check in configure script to disallow conflicting options
2223           "--with-termlib" and "--enable-term-driver".
2224         + move defaults for "--disable-lp64" and "--with-versioned-syms" into
2225           CF_ABI_DEFAULTS macro.
2226
2227 20150530
2228         + change private type for Event_Mask in Ada95 binding to work when
2229           mmask_t is set to 32-bits.
2230         + remove spurious "%;" from st entry (report by Daniel Pitts) -TD
2231         + add vte-2014, update vte to use that -TD
2232         + modify tic and infocmp to "move" a diagnostic for tparm strings that
2233           have a syntax error to tic's "-c" option (report by Daniel Pitts).
2234         + fix two problems with configure script macros (Debian #786436,
2235           cf: 20150425, cf: 20100529).
2236
2237 20150523
2238         + add 'P' menu item to test/ncurses.c, to show pad in color.
2239         + improve discussion in curs_color.3x about color rendering (prompted
2240           by comment on Stack Overflow forum):
2241         + remove screen-bce.mlterm, since mlterm does not do "bce" -TD
2242         + add several screen.XXX entries to support the respective variations
2243           for 256 colors -TD
2244         + add putty+fnkeys* building-block entries -TD
2245         + add smkx/rmkx to capabilities analyzed with infocmp "-i" option.
2246
2247 20150516
2248         + amend change to ".pc" files to only use the extra loader flags which
2249           may have rpath options (report by Sven Joachim, cf: 20150502).
2250         + change versioning for dpkg's in test-packages for Ada95 and
2251           ncurses-examples for consistency with Debian, to work with package
2252           updates.
2253         + regenerate html manpages.
2254         + clarify handling of carriage return in waddch manual page; it was
2255           discussed only in the portability section (prompted by comment on
2256           Stack Overflow forum):
2257
2258 20150509
2259         + add test-packages for cross-compiling ncurses-examples using the
2260           MinGW test-packages.  These are only the Debian packages; RPM later.
2261         + cleanup format of debian/copyright files
2262         + add pc-files to the MinGW cross-compiling test-packages.
2263         + correct a couple of places in gen-pkgconfig.in to handle renaming of
2264           the tinfo library.
2265
2266 20150502
2267         + modify the configure script to allow different default values
2268           for ABI 5 versus ABI 6.
2269         + add wgetch-events to test-packages.
2270         + add a note on how to build ncurses-examples to test/README.
2271         + fix a memory leak in delscreen (report by Daniel Kahn Gillmor,
2272           Debian #783486) -TD
2273         + remove unnecessary ';' from E3 capabilities -TD
2274         + add tmux entry, derived from screen (patch by Nicholas Marriott).
2275         + split-out recent change to nsterm-bce as nsterm-build326, and add
2276           nsterm-build342 to reflect changes with successive releases of OSX
2277           (discussion with Leonardo B Schenkel)
2278         + add xon, ich1, il1 to ibm3161 (patch by Stephen Powell, Debian
2279           #783806)
2280         + add sample "magic" file, to document ext-putwin.
2281         + modify gen-pkgconfig.in to add explicit -ltinfo, etc., to the
2282           generated ".pc" file when ld option "--as-needed" is used, or when
2283           ncurses and tinfo are installed without using rpath (prompted by
2284           discussion with Sylvain Bertrand).
2285         + modify test-package for ncurses6 to omit rpath feature when installed
2286           in /usr.
2287         + add OSX's "*.dSYM" to clean-rules in makefiles.
2288         + make extra-suffix work for OSX configuration, e.g., for shared
2289           libraries.
2290         + modify Ada95/configure script to work with pkg-config
2291         + move test-package for ncurses6 to /usr, since filename-conflicts have
2292           been eliminated.
2293         + corrected build rules for Ada95/gen/generate; it does not depend on
2294           the ncurses library aside from headers.
2295         + reviewed man pages, fixed a few other spelling errors.
2296         + fix a typo in curs_util.3x (Sven Joachim).
2297         + use extra-suffix in some overlooked shared library dependencies
2298           found by 20150425 changes for test-packages.
2299         + update config.guess, config.sub from
2300                 http://git.savannah.gnu.org/cgit/config.git
2301
2302 20150425
2303         + expanded description of tgetstr's area pointer in manual page
2304           (report by Todd M Lewis).
2305         + in-progress changes to modify test-packages to use ncursesw6 rather
2306           than ncursesw, with updated configure scripts.
2307         + modify CF_NCURSES_CONFIG in Ada95- and test-configure scripts to
2308           check for ".pc" files via pkg-config, but add a linkage check since
2309           frequently pkg-config configurations are broken.
2310         + modify misc/gen-pkgconfig.in to include EXTRA_LDFLAGS, e.g., for the
2311           rpath option.
2312         + add 'dim' capability to screen entry (report by Leonardo B Schenkel)
2313         + add several key definitions to nsterm-bce to match preconfigured
2314           keys, e.g., with OSX 10.9 and 10.10 (report by Leonardo B Schenkel)
2315         + fix repeated "extra-suffix" in ncurses-config.in (cf: 20150418).
2316         + improve term_variables manual page, adding section on the terminfo
2317           long-name symbols which are defined in the term.h header.
2318         + fix bug in lib_tracebits.c introduced in const-fixes (cf: 20150404).
2319
2320 20150418
2321         + avoid a blank line in output from tabs program by ending it with
2322           a carriage return as done in FreeBSD (patch by James Clarke).
2323         + build-fix for the "--enable-ext-putwin" feature when not using
2324           wide characters (report by Werner Fink).
2325         + modify autoconf macros to use scripting improvement from xterm.
2326         + add -brtl option to compiler options on AIX 5-7, needed to link
2327           with the shared libraries.
2328         + add --with-extra-suffix option to help with installing nonconflicting
2329           ncurses6 packages, e.g., avoiding header- and library-conflicts.
2330           NOTE: as a side-effect, this renames
2331                   adacurses-config to adacurses5-config and
2332                   adacursesw-config to adacursesw5-config
2333         + modify debian/rules test package to suffix programs with "6".
2334         + clarify in curs_inopts.3x that window-specific settings do not
2335           inherit into new windows.
2336
2337 20150404
2338         + improve description of start_color() in the manual.
2339         + modify several files in ncurses- and progs-directories to allow
2340           const data used in internal tables to be put by the linker into the
2341           readonly text segment.
2342
2343 20150329
2344         + correct cut/paste error for "--enable-ext-putwin" that made it the
2345           same as "--enable-ext-colors" (report by Roumen Petrov)
2346
2347 20150328
2348         + add "-f" option to test/savescreen.c to help with testing/debugging
2349           the extended putwin/getwin.
2350         + add logic for writing/reading combining characters in the extended
2351           putwin/getwin.
2352         + add "--enable-ext-putwin" configure option to turn on the extended
2353           putwin/getwin.
2354
2355 20150321
2356         + in-progress changes to provide an extended version of putwin and
2357           getwin which will be capable of reading screen-dumps between the
2358           wide/normal ncurses configurations.  These are text files, except
2359           for a magic code at the beginning:
2360           0       string          \210\210        Screen-dump (ncurses)
2361
2362 20150307
2363         + document limitations of getwin in manual page (prompted by discussion
2364           with John S Urban).
2365         + extend test/savescreen.c to demonstrate that color pair values
2366           and graphic characters can be restored using getwin.
2367
2368 20150228
2369         + modify win_driver.c to eliminate the constructor, to make it more
2370           usable in an application which may/may not need the console window
2371           (report by Grady Martin).
2372
2373 20150221
2374         + capture define's related to -D_XOPEN_SOURCE from the configure check
2375           and add those to the *-config and *.pc files, to simplify use for
2376           the wide-character libraries.
2377         + modify ncurses.spec to accommodate Fedora21's location of pkg-config
2378           directory.
2379         + correct sense of "--disable-lib-suffixes" configure option (report
2380           by Nicolas Boos, cf: 20140426).
2381
2382 20150214
2383         + regenerate html manpages using improved man2html from work on xterm.
2384         + regenerated ".map" and ".sym" files using improved script, accounting
2385           for the "--enable-weak-symbols" configure option (report by Werner
2386           Fink).
2387
2388 20150131
2389         + regenerated ".map" and ".sym" files using improved script, showing
2390           the combinations of configure options used at each stage.
2391
2392 20150124
2393         + add configure check to determine if "local: _*;" can be used in the
2394           ".map" files to selectively omit symbols beginning with "_".  On at
2395           least recent FreeBSD, the wildcard applies to all "_" symbols.
2396         + remove obsolete/conflicting rule for ncurses.map from
2397           ncurses/Makefile.in (cf:  20130706).
2398
2399 20150117
2400         + improve description in INSTALL of the --with-versioned-syms option.
2401         + add combination of --with-hashed-db and --with-ticlib to
2402           configurations for ".map" files (report by Werner Fink).
2403
2404 20150110
2405         + add a step to generating ".map" files, to declare any remaining
2406           symbols beginning with "_" as local, at the last version node.
2407         + improve configure checks for pkg-config, addressing a variant found
2408           with FreeBSD ports.
2409         + modify win_driver.c to provide characters for special keys, like
2410           ansi.sys, when keypad mode is off, rather than returning nothing at
2411           all (discussion with Eli Zaretskii).
2412         + add "broken_linker" and "hashed-db" configure options to combinations
2413           use for generating the ".map" and ".sym" files.
2414         + avoid using "ld" directly when creating shared library, to simplify
2415           cross-compiles.  Also drop "-Bsharable" option from shared-library
2416           rules for FreeBSD and DragonFly (FreeBSD #196592).
2417         + fix a memory leak in form library Free_RegularExpression_Type()
2418           (report by Pavel Balaev).
2419
2420 20150103
2421         + modify_nc_flush() to retry if interrupted (patch by Stian Skjelstad).
2422         + change map files to make _nc_freeall a global, since it may be used
2423           via the Ada95 binding when checking for memory leaks.
2424         + improve sed script used in 20141220 to account for wide-, threaded-
2425           variations in ABI 6.
2426
2427 20141227
2428         + regenerate ".map" files, using step overlooked in 20141213 to use
2429           the same patch-dates across each file to match ncurses.map (report by
2430           Sven Joachim).
2431
2432 20141221
2433         + fix an incorrect variable assignment in 20141220 changes (report by
2434           Sven Joachim).
2435
2436 20141220
2437         + updated Ada95/configure with macro changes from 20141213
2438         + tie configure options --with-abi-version and --with-versioned-syms
2439           together, so that ABI 6 libraries have distinct symbol versions from
2440           the ABI 5 libraries.
2441         + replace obsolete/nonworking link to man2html with current one,
2442           regenerate html-manpages.
2443
2444 20141213
2445         + modify misc/gen-pkgconfig.in to add -I option for include-directory
2446           when using both --prefix and --disable-overwrite (report by Misty
2447           De Meo).
2448         + add configure option --with-pc-suffix to allow minor renaming of
2449           ".pc" files and the corresponding library.  Use this in the test
2450           package for ncurses6.
2451         + modify configure script so that if pkg-config is not installed, it
2452           is still possible to install ".pc" files (report by Misty De Meo).
2453         + updated ".sym" files, removing symbols which are marked as "local"
2454           in the corresponding ".map" files.
2455         + updated ".map" files to reflect move of comp_captab and comp_hash
2456           from tic-library to tinfo-library in 20090711 (report by Sven
2457           Joachim).
2458
2459 20141206
2460         + updated ".map" files so that each symbol that may be shared across
2461           the different library configurations has the same label.  Some
2462           review is needed to ensure these are really compatible.
2463         + modify MKlib_gen.sh to work around change in development version of
2464           gcc introduced here:
2465                   https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html
2466                   https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html
2467           (reports by Marcus Shawcroft, Maohui Lei).
2468         + improved configure macro CF_SUBDIR_PATH, from lynx changes.
2469
2470 20141129
2471         + improved ".map" files by generating them with a script that builds
2472           ncurses with several related configurations and merges the results.
2473           A further refinement is planned, to make the tic- and tinfo-library
2474           symbols use the same versions across each of the four configurations
2475           which are represented (reports by Sven Joachim, Werner Fink).
2476
2477 20141115
2478         + improve description of limits for color values and color pairs in
2479           curs_color.3x (prompted by patch by Tim van der Molen).
2480         + add VERSION file, using first field in that to record the ABI version
2481           used for configure --with-libtool --disable-libtool-version
2482         + add configure options for applying the ".map" and ".sym" files to
2483           the ncurses, form, menu and panel libraries.
2484         + add ".map" and ".sym" files to show exported symbols, e.g., for
2485           symbol-versioning.
2486
2487 20141101
2488         + improve strict compiler-warnings by adding a cast in TRACE_RETURN
2489           and making a new TRACE_RETURN1 macro for cases where the cast does
2490           not apply.
2491
2492 20141025
2493         + in-progress changes to integrate the win32 console driver with the
2494           msys2 configuration.
2495
2496 20141018
2497         + reviewed terminology 0.6.1, add function key definitions.  None of
2498           the vt100-compatibility issues were improved -TD
2499         + improve infocmp conversion of extended capabilities to termcap by
2500           correcting the limit check against parametrized[], as well as filling
2501           in a check if the string happens to have parameters, e.g., "xm"
2502           in recent changes.
2503         + add check for zero/negative dimensions for resizeterm and resize_term
2504           (report by Mike Gran).
2505
2506 20141011
2507         + add experimental support for xterm's 1005 mouse mode, to use in a
2508           demonstration of its limitations.
2509         + add experimental support for "%u" format to terminfo.
2510         + modify test/ncurses.c to also show position reports in 'a' test.
2511         + minor formatting fixes to _nc_trace_mmask_t, make this function
2512           exported to help with debugging mouse changes.
2513         + improve behavior of wheel-mice for xterm protocol, noting that there
2514           are only button-presses for buttons "4" and "5", so there is no need
2515           to wait to combine events into double-clicks (report/analysis by
2516           Greg Field).
2517         + provide examples xterm-1005 and xterm-1006 terminfo entries -TD
2518         + implement decoder for xterm SGR 1006 mouse mode.
2519
2520 20140927
2521         + implement curs_set in win_driver.c
2522         + implement flash in win_driver.c
2523         + fix an infinite loop in win_driver.c if the command-window loses
2524           focus.
2525         + improve the non-buffered mode, i.e., NCURSES_CONSOLE2, of
2526           win_driver.c by temporarily changing the buffer-size to match the
2527           window-size to eliminate the scrollback.  Also enforce a minimum
2528           screen-size of 24x80 in the non-buffered mode.
2529         + modify generated misc/Makefile to suppress install.data from the
2530           dependencies if the --disable-db-install option is used, compensating
2531           for the top-level makefile changes used to add ncurses*-config in the
2532           20140920 changes (report by Steven Honeyman).
2533
2534 20140920
2535         + add ncurses*-config to bin-directory of sample package-scripts.
2536         + add check to ensure that getopt is available; this is a problem in
2537           some older cross-compiler environments.
2538         + expanded on the description of --disable-overwrite in INSTALL
2539           (prompted by reports by Joakim Tjernlund, Thomas Klausner).
2540           See Gentoo #522586 and NetBSD #49200 for examples.
2541           which relates to the clarified guidelines.
2542         + remove special logic from CF_INCLUDE_DIRS which adds the directory
2543           for the --includedir from the build (report by Joakim Tjernlund).
2544         + add case for Unixware to CF_XOPEN_SOURCE, from lynx changes.
2545         + update config.sub from
2546                 http://git.savannah.gnu.org/cgit/config.git
2547
2548 20140913
2549         + add a configure check to ignore some of the plethora of non-working
2550           C++ cross-compilers.
2551         + build-fixes for Ada95 with gnat 4.9
2552
2553 20140906
2554         + build-fix and other improvements for port of ncurses-examples to
2555           NetBSD.
2556         + minor compiler-warning fixes.
2557
2558 20140831
2559         + modify test/demo_termcap.c and test/demo_terminfo.c to make their
2560           options more directly comparable, and add "-i" option to specify
2561           a terminal description filename to parse for names to lookup.
2562
2563 20140823
2564         + fix special case where double-width character overwrites a single-
2565           width character in the first column (report by Egmont Koblinger,
2566           cf: 20050813).
2567
2568 20140816
2569         + fix colors in ncurses 'b' test which did not work after changing
2570           it to put the test-strings in subwindows (cf: 20140705).
2571         + merge redundant SEE-ALSO sections in form and menu manpages.
2572
2573 20140809
2574         + modify declarations for user-data pointers in C++ binding to use
2575           reinterpret_cast to facilitate converting typed pointers to void*
2576           in user's application (patch by Adam Jiang).
2577         + regenerated html manpages.
2578         + add note regarding cause and effect for TERM in ncurses manpage,
2579           having noted clueless verbiage in Terminal.app's "help" file
2580           which reverses cause/effect.
2581         + remove special fallback definition for NCURSES_ATTR_T, since macros
2582           have resolved type-mismatches using casts (cf: 970412).
2583         + fixes for win_driver.c:
2584           + handle repainting on endwin/refresh combination.
2585           + implement beep().
2586           + minor cleanup.
2587
2588 20140802
2589         + minor portability fixes for MinGW:
2590           + ensure WINVER is defined in makefiles rather than using headers
2591           + add check for gnatprep "-T" option
2592           + work around bug introduced by gcc 4.8.1 in MinGW which breaks
2593             "trace" feature:
2594             http://stackoverflow.com/questions/20877689/gcc-4-8-1-minggw-d-option-does-not-work-as-usual
2595         + fix most compiler warnings for Cygwin ncurses-examples.
2596         + restore "redundant" -I options in test/Makefile.in, since they are
2597           typically needed when building the derived ncurses-examples package
2598           (cf: 20140726).
2599
2600 20140726
2601         + eliminate some redundant -I options used for building libraries, and
2602           ensure that ${srcdir} is added to the include-options (prompted by
2603           discussion with Paul Gilmartin).
2604         + modify configure script to work with Minix3.2
2605         + add form library extension O_DYNAMIC_JUSTIFY option which can be
2606           used to override the different treatment of justification for static
2607           versus dynamic fields (adapted from patch by Leon Winter).
2608         + add a null pointer check in test/edit_field.c (report/analysis by
2609           Leon Winter, cf: 20130608).
2610
2611 20140719
2612         + make workarounds for compiling test-programs with NetBSD curses.
2613         + improve configure macro CF_ADD_LIBS, to eliminate repeated -l/-L
2614           options, from xterm changes.
2615
2616 20140712
2617         + correct Charable() macro check for A_ALTCHARSET in wide-characters.
2618         + build-fix for position-debug code in tty_update.c, to work with or
2619           without sp-funcs.
2620
2621 20140705
2622         + add w/W toggle to ncurses.c 'B' test, to demonstrate permutation of
2623           video-attributes and colors with double-width character strings.
2624
2625 20140629
2626         + correct check in win_driver.c for saving screen contents, e.g., when
2627           NCURSES_CONSOLE2 is set (cf: 20140503).
2628         + reorganize b/B menu items in ncurses.c, putting the test-strings into
2629           subwindows.  This is needed for a planned change to use Unicode
2630           fullwidth characters in the test-screens.
2631         + correct update to form status for _NEWTOP, broken by fixes for
2632           compiler warnings (patch by Leon Winter, cf: 20120616).
2633
2634 20140621
2635         + change shared-library suffix for AIX 5 and 6 to ".so", avoiding
2636           conflict with the static library (report by Ben Lentz).
2637         + document RPATH_LIST in INSTALLATION file, as part of workarounds for
2638           upgrading an ncurses library using the "--with-shared" option.
2639         + modify test/ncurses.c c/C tests to cycle through subsets of the
2640           total number of colors, to better illustrate 8/16/88/256-colors by
2641           providing directly comparable screens.
2642         + add test/dots_curses.c, for comparison with the low-level examples.
2643
2644 20140614
2645         + fix dereference before null check found by Coverity in tic.c
2646           (cf: 20140524).
2647         + fix sign-extension bug in read_entry.c which prevented "toe" from
2648           reading empty "screen+italics" entry.
2649         + modify sgr for screen.xterm-new to support dim capability -TD
2650         + add dim capability to nsterm+7 -TD
2651         + cancel dim capability for iterm -TD
2652         + add dim, invis capabilities to vte-2012 -TD
2653         + add sitm/ritm to konsole-base and mlterm3 -TD
2654
2655 20140609
2656         > fix regression in screen terminfo entries (reports by Christian
2657           Ebert, Gabriele Balducci) -TD
2658         + revert the change to screen; see notes for why this did not work -TD
2659         + cancel sitm/ritm for entries which extend "screen", to work around
2660           screen's hardcoded behavior for SGR 3 -TD
2661
2662 20140607
2663         + separate masking for sgr in vidputs from sitm/ritm, which do not
2664           overlap with sgr functionality.
2665         + remove unneeded -i option from adacurses-config; put -a in the -I
2666           option for consistency (patch by Pascal Pignard).
2667         + update xterm-new terminfo entry to xterm patch #305 -TD
2668         + change format of test-scripts for Debian Ada95 and ncurses-examples
2669           packages to quilted to work around Debian #700177 (cf: 20130907).
2670         + build fix for form_driver_w.c as part of ncurses-examples package for
2671           older ncurses than 20131207.
2672         + add Hello World example to adacurses-config manpage.
2673         + remove unused --enable-pc-files option from Ada95/configure.
2674         + add --disable-gnat-projects option for testing.
2675         + revert changes to Ada95 project-files configuration (cf: 20140524).
2676         + corrected usage message in adacurses-config.
2677
2678 20140524
2679         + fix typo in ncurses manpage for the NCURSES_NO_MAGIC_COOKIE
2680           environment variable.
2681         + improve discussion of input-echoing in curs_getch.3x
2682         + clarify discussion in curs_addch.3x of wrapping.
2683         + modify parametrized.h to make fln non-padded.
2684         + correct several entries which had termcap-style padding used in
2685           terminfo: adm21, aj510, alto-h19, att605-pc, x820 -TD
2686         + correct syntax for padding in some entries: dg211, h19 -TD
2687         + correct ti924-8 which had confused padding versus octal escapes -TD
2688         + correct padding in sbi entry -TD
2689         + fix an old bug in the termcap emulation; "%i" was ignored in tparm()
2690           because the parameters to be incremented were already on the internal
2691           stack (report by Corinna Vinschen).
2692         + modify tic's "-c" option to take into account the "-C" option to
2693           activate additional checks which compare the results from running
2694           tparm() on the terminfo expressions versus the translated termcap
2695           expressions.
2696         + modify tic to allow it to read from FIFOs (report by Matthieu Fronton,
2697           cf: 20120324).
2698         > patches by Nicolas Boulenguez:
2699         + explicit dereferences to suppress some style warnings.
2700         + when c_varargs_to_ada.c includes its header, use double quotes
2701           instead of <>.
2702         + samples/ncurses2-util.adb:  removed unused with clause.  The warning
2703           was removed by an obsolete pragma.
2704         + replaced Unreferenced pragmas with Warnings (Off).  The latter,
2705           available with older GNATs, needs no configure test.  This also
2706           replaces 3 untested Unreferenced pragmas.
2707         + simplified To_C usage in trace handling.  Using two parameters allows
2708           some basic formatting, and avoids a warning about security with some
2709           compiler flags.
2710         + for generated Ada sources, replace many snippets with one pure
2711           package.
2712         + removed C_Chtype and its conversions.
2713         + removed C_AttrType and its conversions.
2714         + removed conversions between int, Item_Option_Set, Menu_Option_Set.
2715         + removed int, Field_Option_Set, Item_Option_Set conversions.
2716         + removed C_TraceType, Attribute_Option_Set conversions.
2717         + replaced C.int with direct use of Eti_Error, now enumerated.  As it
2718           was used in a case statement, values were tested by the Ada compiler
2719           to be consecutive anyway.
2720         + src/Makefile.in: remove duplicate stanza
2721         + only consider using a project for shared libraries.
2722         + style. Silent gnat-4.9 warning about misplaced "then".
2723         + generate shared library project to honor ADAFLAGS, LDFLAGS.
2724
2725 20140510
2726         + cleanup recently introduced compiler warnings for MingW port.
2727         + workaround for ${MAKEFLAGS} configure check versus GNU make 4.0,
2728           which introduces more than one gratuitous incompatibility.
2729
2730 20140503
2731         + add vt520ansi terminfo entry (patch by Mike Gran)
2732         + further improve MinGW support for the scenario where there is an
2733           ANSI-escapes handler such as ansicon running in the console window
2734           (patch by Juergen Pfeifer).
2735
2736 20140426
2737         + add --disable-lib-suffixes option (adapted from patch by Juergen
2738           Pfeifer).
2739         + merge some changes from Juergen Pfeifer's work with MSYS2, to
2740           simplify later merging:
2741           + use NC_ISATTY() macro for isatty() in library
2742           + add _nc_mingw_isatty() and related functions to windows-driver
2743           + rename terminal driver entrypoints to simplify grep's
2744         + remove a check in the sp-funcs flavor of newterm() which allowed only
2745           the first call to newterm() to succeed (report by Thomas Beierlein,
2746           cf: 20090927).
2747
2748 20140419
2749         + update config.guess, config.sub from
2750                 http://git.savannah.gnu.org/cgit/config.git
2751
2752 20140412
2753         + modify configure script:
2754           + drop the -no-gcc option from Intel compiler, from lynx changes.
2755           + extend the --with-hashed-db configure option to simplify building
2756             with different versions of Berkeley database using FreeBSD ports.
2757         + improve initialization for MinGW port (Juergen Pfeifer):
2758           + enforce Windows-style path-separator if cross-compiling,
2759           + add a driver-name method to each of the drivers,
2760           + allow the Windows driver name to match "unknown", ignoring case,
2761           + lengthen the built-in name for the Windows console driver to
2762             "#win32console", and
2763           + move the comparison of driver-names allowing abbreviation, e.g.,
2764             to "#win32con" into the Windows console driver.
2765
2766 20140329
2767         + add check in tic for mismatch between ccc and initp/initc
2768         + cancel ccc in putty-256color and konsole-256color for consistency
2769           with the cancelled initc capability (patch by Sven Zuhlsdorf).
2770         + add xterm+256setaf building block for various terminals which only
2771           get the 256-color feature half-implemented -TD
2772         + updated "st" entry (leaving the 0.1.1 version as "simpleterm") to
2773           0.4.1 -TD
2774
2775 20140323
2776         + fix typo in "mlterm" entry (report by Gabriele Balducci) -TD
2777
2778 20140322
2779         + use types from <stdint.h> in sample build-scripts for chtype, etc.
2780         + modify configure script and curses.h.in to allow the types specified
2781           using --with-chtype and related options to be defined in <stdint.h>
2782         + add terminology entry -TD
2783         + add mlterm3 entry, use that as "mlterm" -TD
2784         + inherit mlterm-256color from mlterm -TD
2785
2786 20140315
2787         + modify _nc_New_TopRow_and_CurrentItem() to ensure that the menu's
2788           top-row is adjusted as needed to ensure that the current item is
2789           on the screen (patch by Johann Klammer).
2790         + add wgetdelay() to retrieve _delay member of WINDOW if it happens to
2791           be opaque, e.g., in the pthread configuration (prompted by patch by
2792           Soren Brinkmann).
2793
2794 20140308
2795         + modify ifdef in read_entry.c to handle the case where
2796           NCURSES_USE_DATABASE is not defined (patch by Xin Li).
2797         + add cast in form_driver_w() to fix ARM build (patch by Xin Li).
2798         + add logic to win_driver.c to save/restore screen contents when not
2799           allocating a console-buffer (cf: 20140215).
2800
2801 20140301
2802         + clarify error-returns from newwin (report by Ruslan Nabioullin).
2803
2804 20140222
2805         + fix some compiler warnings in win_driver.c
2806         + updated notes for wsvt25 based on tack and vttest -TD
2807         + add teken entry to show actual properties of FreeBSD's "xterm"
2808           console -TD
2809
2810 20140215
2811         + in-progress changes to win_driver.c to implement output without
2812           allocating a console-buffer.  This uses a pre-existing environment
2813           variable NCGDB used by Juergen Pfeifer for debugging (prompted by
2814           discussion with Erwin Waterlander regarding Console2, which hangs
2815           when reading in an allocated console-buffer).
2816         + add -t option to gdc.c, and modify to accept "S" to step through the
2817           scrolling-stages.
2818         + regenerate NCURSES-Programming-HOWTO.html to fix some of the broken
2819           html emitted by docbook.
2820
2821 20140209
2822         + modify CF_XOPEN_SOURCE macro to omit followup check to determine if
2823           _XOPEN_SOURCE can/should be defined.  g++ 4.7.2 built on Solaris 10
2824           has some header breakage due to its own predefinition of this symbol
2825           (report by Jean-Pierre Flori, Sage #15796).
2826
2827 20140201
2828         + add/use symbol NCURSES_PAIRS_T like NCURSES_COLOR_T, to illustrate
2829           which "short" types are for color pairs and which are color values.
2830         + fix build for s390x, by correcting field bit offsets in generated
2831           representation clauses when int=32 long=64 and endian=big, or at
2832           least on s390x (patch by Nicolas Boulenguez).
2833         + minor cleanup change to test/form_driver_w.c (patch by Gaute Hope).
2834
2835 20140125
2836         + remove unnecessary ifdef's in Ada95/gen/gen.c, which reportedly do
2837           not work as is with gcc 4.8 due to fixes using chtype cast made for
2838           new compiler warnings by gcc 4.8 in 20130824 (Debian #735753, patch
2839           by Nicolas Boulenguez).
2840
2841 20140118
2842         + apply includesubdir variable which was introduced in 20130805 to
2843           gen-pkgconfig.in (Debian #735782).
2844
2845 20131221
2846         + further improved man2html, used this to fix broken links in html
2847           manpages.  See
2848           ftp://ftp.invisible-island.net/ncurses/patches/man2html
2849
2850 20131214
2851         + modify configure-script/ifdef's to allow OLD_TTY feature to be
2852           suppressed if the type of ospeed is configured using the option
2853           --with-ospeed to not be a short.  By default, it is a short for
2854           termcap-compatibility (adapted from suggestion by Christian
2855           Weisgerber).
2856         + correct a typo in _nc_baudrate() (patch by Christian Weisgerber,
2857           cf: 20061230).
2858         + fix a few -Wlogical-op warnings.
2859         + updated llib-l* files.
2860
2861 20131207
2862         + add form_driver_w() entrypoint to wide-character forms library, as
2863           well as test program form_driver_w (adapted from patch by Gaute
2864           Hope).
2865
2866 20131123
2867         + minor fix for CF_GCC_WARNINGS to special-case options which are not
2868           recognized by clang.
2869
2870 20131116
2871         + add special case to configure script to move _XOPEN_SOURCE_EXTENDED
2872           definition from CPPFLAGS to CFLAGS if it happens to be needed for
2873           Solaris, because g++ errors with that definition (report by
2874           Jean-Pierre Flori, Sage #15268).
2875         + correct logic in infocmp's -i option which was intended to ignore
2876           strings which correspond to function-keys as candidates for piecing
2877           together initialization- or reset-strings.  The problem dates to
2878           1.9.7a, but was overlooked until changes in -Wlogical-op warnings for
2879           gcc 4.8 (report by David Binderman).
2880         + updated CF_GCC_WARNINGS to documented options for gcc 4.9.0, moving
2881           checks for -Wextra and -Wdeclaration-after-statement into the macro,
2882           and adding checks for -Wignored-qualifiers, -Wlogical-op and
2883           -Wvarargs
2884         + updated CF_CURSES_UNCTRL_H and CF_SHARED_OPTS macros from ongoing
2885           work on cdk.
2886         + update config.sub from
2887                 http://git.savannah.gnu.org/cgit/config.git
2888
2889 20131110
2890         + minor cleanup of terminfo.tail
2891
2892 20131102
2893         + use TS extension to describe xterm's title-escapes -TD
2894         + modify terminator and nsterm-s to use xterm+sl-twm building block -TD
2895         + update hurd.ti, add xenl to reflect 2011-03-06 change in
2896           http://git.savannah.gnu.org/cgit/hurd/hurd.git/log/console/display.c
2897           (Debian #727119).
2898         + simplify pfkey expression in ansi.sys -TD
2899
2900 20131027
2901         + correct/simplify ifdef's for cur_term versus broken-linker and
2902           reentrant options (report by Jean-Pierre Flori, cf: 20090530).
2903         + modify release/version combinations in test build-scripts to make
2904           them more consistent with other packages.
2905
2906 20131019
2907         + add nc_mingw.h to installed headers for MinGW port; needed for
2908           compiling ncurses-examples.
2909         + add rpm-script for testing cross-compile of ncurses-examples.
2910
2911 20131014
2912         + fix new typo in CF_ADA_INCLUDE_DIRS macro (report by Roumen Petrov).
2913
2914 20131012
2915         + fix a few compiler warnings in progs and test.
2916         + minor fix to package/debian-mingw/rules, do not strip dll's.
2917         + minor fixes to configure script for empty $prefix, e.g., when doing
2918           cross-compiles to MinGW.
2919         + add script for building test-packages of binaries cross-compiled to
2920           MinGW using NSIS.
2921
2922 20131005
2923         + minor fixes for ncurses-example package and makefile.
2924         + add scripts for test-builds of cross-compiler packages for ncurses6
2925           to MinGW.
2926
2927 20130928
2928         + some build-fixes for ncurses-examples with NetBSD-6.0 curses, though
2929           it lacks some common functions such as use_env() which is not yet
2930           addressed.
2931         + build-fix and some compiler warning fixes for ncurses-examples with
2932           OpenBSD 5.3
2933         + fix a possible null-pointer reference in a trace message from newterm.
2934         + quiet a few warnings from NetBSD 6.0 namespace pollution by
2935           nonstandard popcount() function in standard strings.h header.
2936         + ignore g++ 4.2.1 warnings for "-Weffc++" in c++/cursesmain.cc
2937         + fix a few overlooked places for --enable-string-hacks option.
2938
2939 20130921
2940         + fix typo in curs_attr.3x (patch by Sven Joachim, cf: 20130831).
2941         + build-fix for --with-shared option for DragonFly and FreeBSD (report
2942           by Rong-En Fan, cf: 20130727).
2943
2944 20130907
2945         + build-fixes for MSYS for two test-programs (patches by Ray Donnelly,
2946           Alexey Pavlov).
2947         + revert change to two of the dpkg format files, to work with dpkg
2948           before/after Debian #700177.
2949         + fix gcc -Wconversion warning in wattr_get() macro.
2950         + add msys and msysdll to known host/configuration types (patch by
2951           Alexey Pavlov).
2952         + modify CF_RPATH_HACK configure macro to not rely upon "-u" option
2953           of sort, improving portability.
2954         + minor improvements for test-programs from reviewing Solaris port.
2955         + update config.guess, config.sub from
2956                 http://git.savannah.gnu.org/cgit/config.git
2957
2958 20130831
2959         + modify test/ncurses.c b/B tests to display lines only for the
2960           attributes which a given terminal supports, to make room for an
2961           italics test.
2962         + completed ncv table in terminfo.tail; it did not list the wide
2963           character codes listed in X/Open Curses issue 7.
2964         + add A_ITALIC extension (prompted by discussion with Egmont Koblinger).
2965
2966 20130824
2967         + fix some gcc 4.8 -Wconversion warnings.
2968         + change format of dpkg test-scripts to quilted to work around bug
2969           introduced by Debian #700177.
2970         + discard cached keyname() values if meta() is changed after a value
2971           was cached using (report by Kurban Mallachiev).
2972
2973 20130816
2974         + add checks in tic to warn about terminals which lack cursor
2975           addressing, capabilities or having those, are marked as hard_copy or
2976           generic_type.
2977         + use --without-progs in mingw-ncurses rpm.
2978         + split out _nc_init_termtype() from alloc_entry.c to use in MinGW
2979           port when tic and other programs are not needed.
2980
2981 20130805
2982         + minor fixes to the --disable-overwrite logic, to ensure that the
2983           configured $(includedir) is not cancelled by the mingwxx-filesystem
2984           rpm macros.
2985         + add --disable-db-install configure option, to simplify building
2986           cross-compile support packages.
2987         + add mingw-ncurses.spec file, for testing cross-compiles.
2988
2989 20130727
2990         + improve configure macros from ongoing work on cdk, dialog, xterm:
2991           + CF_ADD_LIB_AFTER - fix a problem with -Wl options
2992           + CF_RPATH_HACK - add missing result-message
2993           + CF_SHARED_OPTS - modify to use $rel_builddir in cygwin and mingw
2994             dll symbols (which can be overridden) rather than explicit "../".
2995           + CF_SHARED_OPTS - modify NetBSD and DragonFly symbols to use ${CC}
2996             rather than ${LD} to improve rpath support.
2997           + CF_SHARED_OPTS - add a symbol to denote the temporary files that
2998             are created by the macro, to simplify clean-rules.
2999           + CF_X_ATHENA - trim extra libraries to work with -Wl,--as-needed
3000         + fix a regression in hashed-database support for NetBSD, which uses
3001           the key-size differently from other implementations (cf: 20121229).
3002
3003 20130720
3004         + further improvements for setupterm manpage, clarifying the
3005           initialization of cur_term.
3006
3007 20130713
3008         + improve manpages for initscr and setupterm.
3009         + minor compiler-warning fixes
3010
3011 20130706
3012         + add fallback defs for <inttypes.h> and <stdint.h> (cf: 20120225).
3013         + add check for size of wchar_t, use that to suppress a chunk of
3014           wcwidth.h in MinGW port.
3015         + quiet linker warnings for MinGW cross-compile with dll's using the
3016           --enable-auto-import flag.
3017         + add ncurses.map rule to ncurses/Makefile to help diagnose symbol
3018           table issues.
3019
3020 20130622
3021         + modify the clear program to take into account the E3 extended
3022           capability to clear the terminal's scrollback buffer (patch by
3023           Miroslav Lichvar, Redhat #815790).
3024         + clarify in resizeterm manpage that LINES and COLS are updated.
3025         + updated ansi example in terminfo.tail, correct misordered example
3026           of sgr.
3027         + fix other doclifter warnings for manpages
3028         + remove unnecessary ".ta" in terminfo.tail, add missing ".fi"
3029           (patch by Eric Raymond).
3030
3031 20130615
3032         + minor changes to some configure macros to make them more reusable.
3033         + fixes for tabs program (prompted by report by Nick Andrik).
3034           + corrected logic in command-line parsing of -a and -c predefined
3035             tab-lists options.
3036           + allow "-0" and "-8" options to be combined with others, e.g.,"-0d".
3037           + make warning messages more consistent with the other utilities by
3038             not printing the full pathname of the program.
3039           + add -V option for consistency with other utilities.
3040         + fix off-by-one in columns for tabs program when processing an option
3041           such as "-5" (patch by Nick Andrik).
3042
3043 20130608
3044         + add to test/demo_forms.c examples of using the menu-hooks as well
3045           as showing how the menu item user-data can be used to pass a callback
3046           function pointer.
3047         + add test/dots_termcap.c
3048         + remove setupterm call from test/demo_termcap.c
3049         + build-fix if --disable-ext-funcs configure option is used.
3050         + modified test/edit_field.c and test/demo_forms.c to move the lengths
3051           into a user-data structure, keeping the original string for later
3052           expansion to free-format input/out demo.
3053         + modified test/demo_forms.c to load data from file.
3054         + added note to clarify Terminal.app's non-emulation of the various
3055           terminal types listed in the preferences dialog -TD
3056         + fix regression in error-reporting in lib_setup.c (Debian #711134,
3057           cf: 20121117).
3058         + build-fix for a case where --enable-broken_linker and
3059           --enable-reentrant options are combined (report by George R Goffe).
3060
3061 20130525
3062         + modify mvcur() to distinguish between internal use by the ncurses
3063           library, and external callers, preventing it from reading the content
3064           of the screen which is only nonblank when curses calls have updated
3065           it.  This makes test/dots_mvcur.c avoid painting colored cells in
3066           the left margin of the display.
3067         + minor fix to test/dots_mvcur.c
3068         + move configured symbols USE_DATABASE and USE_TERMCAP to term.h as
3069           NCURSES_USE_DATABASE and NCURSES_USE_TERMCAP to allow consistent
3070           use of these symbols in term_entry.h
3071
3072 20130518
3073         + corrected ifdefs in test/testcurs.c to allow comparison of mouse
3074           interface versus pdcurses (cf: 20130316).
3075         + add pow() to configure-check for math library, needed since
3076           20121208 for test/hanoi (Debian #708056).
3077         + regenerated html manpages.
3078         + update doctype used for html documentation.
3079
3080 20130511
3081         + move nsterm-related entries out of "obsolete" section to more
3082           plausible "ansi consoles" -TD
3083         + additional cleanup of table-of-contents by reordering -TD
3084         + revise fix for check for 8-bit value in _nc_insert_ch(); prior fix
3085           prevented inserts when video attributes were attached to the data
3086           (cf: 20121215) (Redhat #959534).
3087
3088 20130504
3089         + fixes for issues found by Coverity:
3090           + correct FNKEY() macro in progs/dump_entry.c, allowing kf11-kf63 to
3091             display when infocmp's -R option is used for HP or AIX subsets.
3092           + fix dead-code issue with test/movewindow.c
3093           + improve limited-checking in _nc_read_termtype().
3094
3095 20130427
3096         + fix clang 3.2 warning in progs/dump_entry.c
3097         + drop AC_TYPE_SIGNAL check; ncurses relies on c89 and later.
3098
3099 20130413
3100         + add MinGW to cases where ncurses installs by default into /usr
3101           (prompted by discussion with Daniel Silva Ferreira).
3102         + add -D option to infocmp's usage-message (patch by Miroslav Lichvar).
3103         + add a missing 'int' type for main function in configure check for
3104           type of bool variable, to work with clang 3.2 (report by Dmitri
3105           Gribenko).
3106         + improve configure check for static_cast, to work with clang 3.2
3107           (report by Dmitri Gribenko).
3108         + re-order rule for demo.o and macros defining header dependencies in
3109           c++/Makefile.in to accommodate gmake (report by Dmitri Gribenko).
3110
3111 20130406
3112         + improve parameter checking in copywin().
3113         + modify configure script to work around OS X's "libtool" program, to
3114           choose glibtool instead.  At the same time, chance the autoconf macro
3115           to look for a "tool" rather than a "prog", to help with potential use
3116           in cross-compiling.
3117         + separate the rpath usage for c++ library from demo program
3118           (Redhat #911540)
3119         + update/correct header-dependencies in c++ makefile (report by Werner
3120           Fink).
3121         + add --with-cxx-shared to dpkg-script, as done for rpm-script.
3122
3123 20130324
3124         + build-fix for libtool configuration (reports by Daniel Silva Ferreira
3125           and Roumen Petrov).
3126
3127 20130323
3128         + build-fix for OS X, to handle changes for --with-cxx-shared feature
3129           (report by Christian Ebert).
3130         + change initialization for vt220, similar entries for consistency
3131           with cursor-key strings (NetBSD #47674) -TD
3132         + further improvements to linux-16color (Benjamin Sittler)
3133
3134 20130316
3135         + additional fix for tic.c, to allocate missing buffer space.
3136         + eliminate configure-script warnings for gen-pkgconfig.in
3137         + correct typo in sgr string for sun-color,
3138           add bold for consistency with sgr,
3139           change smso for consistency with sgr -TD
3140         + correct typo in sgr string for terminator -TD
3141         + add blink to the attributes masked by ncv in linux-16color (report
3142           by Benjamin Sittler)
3143         + improve warning message from post-load checking for missing "%?"
3144           operator by tic/infocmp by showing the entry name and capability.
3145         + minor formatting improvement to tic/infocmp -f option to ensure
3146           line split after "%;".
3147         + amend scripting for --with-cxx-shared option to handle the debug
3148           library "libncurses++_g.a" (report by Sven Joachim).
3149
3150 20130309
3151         + amend change to toe.c for reading from /dev/zero, to ensure that
3152           there is a buffer for the temporary filename (cf: 20120324).
3153         + regenerated html manpages.
3154         + fix typo in terminfo.head (report by Sven Joachim, cf: 20130302).
3155         + updated some autoconf macros:
3156           + CF_ACVERSION_CHECK, from byacc 1.9 20130304
3157           + CF_INTEL_COMPILER, CF_XOPEN_SOURCE from luit 2.0-20130217
3158         + add configure option --with-cxx-shared to permit building
3159           libncurses++ as a shared library when using g++, e.g., the same
3160           limitations as libtool but better integrated with the usual build
3161           configuration (Redhat #911540).
3162         + modify MKkey_defs.sh to filter out build-path which was unnecessarily
3163           shown in curses.h (Debian #689131).
3164
3165 20130302
3166         + add section to terminfo manpage discussing user-defined capabilities.
3167         + update manpage description of NCURSES_NO_SETBUF, explaining why it
3168           is obsolete.
3169         + add a check in waddch_nosync() to ensure that tab characters are
3170           treated as control characters; some broken locales claim they are
3171           printable.
3172         + add some traces to the Windows console driver.
3173         + initialize a temporary array in _nc_mbtowc, needed for some cases
3174           of raw input in MinGW port.
3175
3176 20130218
3177         + correct ifdef on change to lib_twait.c (report by  Werner Fink).
3178         + update config.guess, config.sub
3179
3180 20130216
3181         + modify test/testcurs.c to work with mouse for ncurses as it does for
3182           pdcurses.
3183         + modify test/knight.c to work with mouse for pdcurses as it does for
3184           ncurses.
3185         + modify internal recursion in wgetch() which handles cooked mode to
3186           check if the call to wgetnstr() returned an error.  This can happen
3187           when both nocbreak() and nodelay() are set, for instance (report by
3188           Nils Christopher Brause) (cf: 960418).
3189         + fixes for issues found by Coverity:
3190           + add a check for valid position in ClearToEOS()
3191           + fix in lib_twait.c when --enable-wgetch-events is used, pointer
3192             use after free.
3193           + improve a limit-check in make_hash.c
3194           + fix a memory leak in hashed_db.c
3195
3196 20130209
3197         + modify test/configure script to make it simpler to override names
3198           of curses-related libraries, to help with linking with pdcurses in
3199           MinGW environment.
3200         + if the --with-terminfo-dirs configure option is not used, there is
3201           no corresponding compiled-in value for that.  Fill in "no default
3202           value" for that part of the manpage substitution.
3203
3204 20130202
3205         + correct initialization in knight.c which let it occasionally make
3206           an incorrect move (cf: 20001028).
3207         + improve documentation of the terminfo/termcap search path.
3208
3209 20130126
3210         + further fixes to mvcur to pass callback function (cf: 20130112),
3211           needed to make test/dots_mvcur work.
3212         + reduce calls to SetConsoleActiveScreenBuffer in win_driver.c, to
3213           help reduce flicker.
3214         + modify configure script to omit "+b" from linker options for very
3215           old HP-UX systems (report by Dennis Grevenstein)
3216         + add HP-UX workaround for missing EILSEQ on old HP-UX systems (patch
3217           by Dennis Grevenstein).
3218         + restore memmove/strdup support for antique systems (request by
3219           Dennis Grevenstein).
3220         + change %l behavior in tparm to push the string length onto the stack
3221           rather than saving the formatted length into the output buffer
3222           (report by Roy Marples, cf: 980620).
3223
3224 20130119
3225         + fixes for issues found by Coverity:
3226           + fix memory leak in safe_sprintf.c
3227           + add check for return-value in tty_update.c
3228           + correct initialization for -s option in test/view.c
3229           + add check for numeric overflow in lib_instr.c
3230           + improve error-checking in copywin
3231         + add advice in infocmp manpage for termcap users (Debian #698469).
3232         + add "-y" option to test/demo_termcap and test/demo_terminfo to
3233           demonstrate behavior with/without extended capabilities.
3234         + updated termcap manpage to document legacy termcap behavior for
3235           matching capability names.
3236         + modify name-comparison for tgetstr, etc., to accommodate legacy
3237           applications as well as to improve compatibility with BSD 4.2
3238           termcap implementations (Debian #698299) (cf: 980725).
3239
3240 20130112
3241         + correct prototype in manpage for vid_puts.
3242         + drop ncurses/tty/tty_display.h, ncurses/tty/tty_input.h, since they
3243           are unused in the current driver model.
3244         + modify mvcur to use stdout except when called within the ncurses
3245           library.
3246         + modify vidattr and vid_attr to use stdout as documented in manpage.
3247         + amend changes made to buffering in 20120825 so that the low-level
3248           putp() call uses stdout rather than ncurses' internal buffering.
3249           The putp_sp() call does the same, for consistency (Redhat #892674).
3250
3251 20130105
3252         + add "-s" option to test/view.c to allow it to start in single-step
3253           mode, reducing size of trace files when it is used for debugging
3254           MinGW changes.
3255         + revert part of 20121222 change to tinfo_driver.c
3256         + add experimental logic in win_driver.c to improve optimization of
3257           screen updates.  This does not yet work with double-width characters,
3258           so it is ifdef'd out for the moment (prompted by report by Erwin
3259           Waterlander regarding screen flicker).
3260
3261 20121229
3262         + fix Coverity warnings regarding copying into fixed-size buffers.
3263         + add throw-declarations in the c++ binding per Coverity warning.
3264         + minor changes to new-items for consistent reference to bug-report
3265           numbers.
3266
3267 20121222
3268         + add *.dSYM directories to clean-rule in ncurses directory makefile,
3269           for Mac OS builds.
3270         + add a configure check for gcc option -no-cpp-precomp, which is not
3271           available in all Mac OS X configurations (report by Andras Salamon,
3272           cf: 20011208).
3273         + improve 20021221 workaround for broken acs, handling a case where
3274           that ACS_xxx character is not in the acsc string but there is a known
3275           wide-character which can be used.
3276
3277 20121215
3278         + fix several warnings from clang 3.1 --analyze, includes correcting
3279           a null-pointer check in _nc_mvcur_resume.
3280         + correct display of double-width characters with MinGW port (report
3281           by Erwin Waterlander).
3282         + replace MinGW's wcrtomb(), fixing a problem with _nc_viscbuf
3283         > fixes based on Coverity report:
3284         + correct coloring in test/bs.c
3285         + correct check for 8-bit value in _nc_insert_ch().
3286         + remove dead code in progs/tset.c, test/linedata.h
3287         + add null-pointer checks in lib_tracemse.c, panel.priv.h, and some
3288           test-programs.
3289
3290 20121208
3291         + modify test/knight.c to show the number of choices possible for
3292           each position in automove option, e.g., to allow user to follow
3293           Warnsdorff's rule to solve the puzzle.
3294         + modify test/hanoi.c to show the minimum number of moves possible for
3295           the given number of tiles (prompted by patch by Lucas Gioia).
3296         > fixes based on Coverity report:
3297         + remove a few redundant checks.
3298         + correct logic in test/bs.c, when randomly placing a specific type of
3299           ship.
3300         + check return value from remove/unlink in tic.
3301         + check return value from sscanf in test/ncurses.c
3302         + fix a null dereference in c++/cursesw.cc
3303         + fix two instances of uninitialized variables when configuring for the
3304           terminal driver.
3305         + correct scope of variable used in SetSafeOutcWrapper macro.
3306         + set umask when calling mkstemp in tic.
3307         + initialize wbkgrndset() temporary variable when extended-colors are
3308           used.
3309
3310 20121201
3311         + also replace MinGW's wctomb(), fixing a problem with setcchar().
3312         + modify test/view.c to load UTF-8 when built with MinGW by using
3313           regular win32 API because the MinGW functions mblen() and mbtowc()
3314           do not work.
3315
3316 20121124
3317         + correct order of color initialization versus display in some of the
3318           test-programs, e.g., test_addstr.c
3319         > fixes based on Coverity report:
3320         + delete windows on exit from some of the test-programs.
3321
3322 20121117
3323         > fixes based on Coverity report:
3324         + add missing braces around FreeAndNull in two places.
3325         + various fixes in test/ncurses.c
3326         + improve limit-checks in tinfo/make_hash.c, tinfo/read_entry.c
3327         + correct malloc size in progs/infocmp.c
3328         + guard against negative array indices in test/knight.c
3329         + fix off-by-one limit check in test/color_name.h
3330         + add null-pointer check in progs/tabs.c, test/bs.c, test/demo_forms.c,
3331           test/inchs.c
3332         + fix memory-leak in tinfo/lib_setup.c, progs/toe.c,
3333           test/clip_printw.c, test/demo_menus.c
3334         + delete unused windows in test/chgat.c, test/clip_printw.c,
3335           test/insdelln.c, test/newdemo.c on error-return.
3336
3337 20121110
3338         + modify configure macro CF_INCLUDE_DIRS to put $CPPFLAGS after the
3339           local -I include options in case someone has set conflicting -I
3340           options in $CPPFLAGS (prompted by patch for ncurses/Makefile.in by
3341           Vassili Courzakis).
3342         + modify the ncurses*-config scripts to eliminate relative paths from
3343           the RPATH_LIST variable, e.g., "../lib" as used in installing shared
3344           libraries or executables.
3345
3346 20121102
3347         + realign these related pages:
3348             curs_add_wchstr.3x
3349             curs_addchstr.3x
3350             curs_addstr.3x
3351             curs_addwstr.3x
3352           and fix a long-ago error in curs_addstr.3x which said that a -1
3353           length parameter would only write as much as fit onto one line
3354           (report by Reuben Thomas).
3355         + remove obsolete fallback _nc_memmove() for memmove()/bcopy().
3356         + remove obsolete fallback _nc_strdup() for strdup().
3357         + cancel any debug-rpm in package/ncurses.spec
3358         + reviewed vte-2012, reverted most of the change since it was incorrect
3359           based on testing with tack -TD
3360         + un-cancel the initc in vte-256color, since this was implemented
3361           starting with version 0.20 in 2009 -TD
3362
3363 20121026
3364         + improve malloc/realloc checking (prompted by discussion in Redhat
3365           #866989).
3366         + add ncurses test-program as "ncurses6" to the rpm- and dpkg-scripts.
3367         + updated configure macros CF_GCC_VERSION and CF_WITH_PATHLIST.  The
3368           first corrects pattern used for Mac OS X's customization of gcc.
3369
3370 20121017
3371         + fix change to _nc_scroll_optimize(), which incorrectly freed memory
3372           (Redhat #866989).
3373
3374 20121013
3375         + add vte-2012, gnome-2012, making these the defaults for vte/gnome
3376           (patch by Christian Persch).
3377
3378 20121006
3379         + improve CF_GCC_VERSION to work around Debian's customization of gcc
3380           --version message.
3381         + improve configure macros as done in byacc:
3382           + drop 2.13 compatibility; use 2.52.xxxx version only since EMX port
3383             has used that for a while.
3384           + add 3rd parameter to AC_DEFINE's to allow autoheader to run, i.e.,
3385             for experimental use.
3386           + remove unused configure macros.
3387         + modify configure script and makefiles to quiet new autoconf warning
3388           for LIBS_TO_MAKE variable.
3389         + modify configure script to show $PATH_SEPARATOR variable.
3390         + update config.guess, config.sub
3391
3392 20120922
3393         + modify setupterm to set its copy of TERM to "unknown" if configured
3394           for the terminal driver and TERM was null or empty.
3395         + modify treatment of TERM variable for MinGW port to allow explicit
3396           use of the windows console driver by checking if $TERM is set to
3397           "#win32con" or an abbreviation of that.
3398         + undo recent change to fallback definition of vsscanf() to build with
3399           older Solaris compilers (cf: 20120728).
3400
3401 20120908
3402         + add test-screens to test/ncurses to show 256-characters at a time,
3403           to help with MinGW port.
3404
3405 20120903
3406         + simplify varargs logic in lib_printw.c; va_copy is no longer needed
3407           there.
3408         + modifications for MinGW port to make wide-character display usable.
3409
3410 20120902
3411         + regenerate configure script (report by Sven Joachim, cf: 20120901).
3412
3413 20120901
3414         + add a null-pointer check in _nc_flush (cf: 20120825).
3415         + fix a case in _nc_scroll_optimize() where the _oldnums_list array
3416           might not be allocated.
3417         + improve comparisons in configure.in for unset shell variables.
3418
3419 20120826
3420         + increase size of ncurses' output-buffer, in case of very small
3421           initial screen-sizes.
3422         + fix evaluation of TERMINFO and TERMINFO_DIRS default values as needed
3423           after changes to use --datarootdir (reports by Gabriele Balducci,
3424           Roumen Petrov).
3425
3426 20120825
3427         + change output buffering scheme, using buffer maintained by ncurses
3428           rather than stdio, to avoid problems with SIGTSTP handling (report
3429           by Brian Bloniarz).
3430
3431 20120811
3432         + update autoconf patch to 2.52.20120811, adding --datarootdir
3433           (prompted by discussion with Erwin Waterlander).
3434         + improve description of --enable-reentrant option in README and the