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