]> ncurses.scripts.mit.edu Git - ncurses.git/blob - NEWS
efbbf5c0d7ba6a9004f63115131fb36e469fce19
[ncurses.git] / NEWS
1 -------------------------------------------------------------------------------
2 -- Copyright 2018-2020,2021 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.3671 2021/06/05 23:45:46 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 20210605
50         + add a summary of ncurses-specific preprocessor symbols to curses.h
51           (prompted by discussion with Peter Farley, Bill Gray).
52
53 20210522
54         + regenerate configure scripts with autoconf 2.52.20210509 to eliminate
55           an unnecessary warning in config.log (report by Miroslav Lichvar).
56         + add a note in manual page to explain ungetch vs unget_wch (prompted
57           by discussion with Peter Farley).
58         + add sp-funcs for erasewchar, killwchar.
59         + modify wgetnstr, wgetn_wstr to improve compatibility with SVr4 curses
60           in its treatment of interrupt and quit characters (prompted by
61           report/testcase by Bill Gray)
62         + update config.guess, config.sub
63
64 20210515
65         + improve manual pages for wgetnstr, newwin (prompted by
66           report/testcase by Bill Gray).
67
68 20210508
69         + modify tputs' error check to allow it to be used without first
70           calling tgetent or setupterm, noting that terminfo initialization
71           is required for supporting the terminfo delay feature (report by
72           Sebastiano Vigna).
73         + fix several warnings from clang --analyze
74         + add null-pointer check in comp_parse.c, when a "use=" clause refers
75           to a nonexisting terminal description (report/patch by Miroslav
76           Lichvar, cf: 20210227).
77
78 20210501
79         + add a special case in the configure script to work around one of the
80           build-time breakages reported for OpenBSD 6 here:
81              https://www.mail-archive.com/bugs@openbsd.org/msg13200.html
82           There is no workaround for the other issue, a broken linker spec.
83         + modify configure check for libtool to prevent accidental use of an
84           OpenBSD program which uses the same name.
85         + update config.guess, config.sub
86
87 20210424
88         + avoid using broken system macros for snprintf which interfere with
89           _nc_SLIMIT's conditionally adding a parameter when the string-hacks
90           configure option is enabled.
91         + add a "all::" rule before the new "check" rule in test/Makefile.in
92
93 20210418
94         + improve CF_LINK_FUNCS by ensuring that the source-file is closed
95           before linking to the target.
96         + add "check" rules for headers in c++, progs and test-directories.
97         + build-fix for termsort module when configured with termcap (reports
98           by Rajeev V Pillai, Rudi Heitbaum).
99
100 20210417
101         + extend --disable-pkg-ldflags option to also control whether $LDFLAGS
102           from the build is provided in -config and .pc files (Debian #986764).
103         + fix some cppcheck warnings, mostly style, in ncurses and c++
104           libraries and progs directory.
105         + fix off-by-one limit for tput's processing command-line arguments
106           (patch by Hadrien Lacour).
107
108 20210403
109         + fix some cppcheck warnings, mostly style, in ncurses library and
110           progs directory.
111         + improve description of BSD-style padding in curs_termcap.3x
112         + improved CF_C11_NORETURN macro, from byacc changes.
113         + fix "--enable-leak" in CF_DISABLE_LEAKS to allow turning
114           leak-checking off later in a set of options.
115         + relax modification-time comparison in CF_LINK_FUNCS to allow it to
116           accept link() function with NFS filesystems which change the mtime
117           on the link target, e.g., several BSD systems.
118         + call delay_output_sp to handle BSD-style padding when tputs_sp is 
119           called, whether directly or internally, to ensure that the SCREEN
120           pointer is passed correctly (reports by Henric Jungheim, Juraj
121           Lutter).
122
123 20210327
124         + build-fixes for Solaris10 /bin/sh
125         + fix some cppcheck warnings, mostly style, in ncurses test-programs,
126           form and menu libraries.
127
128 20210323
129         + add configure option --enable-stdnoreturn, making the _Noreturn
130           keyword optional to ease transition (prompted by report by
131           Rajeev V Pillai).
132
133 20210320
134         + improve parameter-checking in tput by forcing it to analyze any
135           extended string capability, e.g., as used in the Cs and Ms
136           capabilities of the tmux description (report by Brad Town,
137           cf: 20200531).
138         + remove an incorrect free in the fallback (non-checking) version of
139           _nc_free_and_exit (report by Miroslav Lichvar).
140         + correct use-ordering in some xterm-direct flavors -TD
141         + add hterm, hterm-256color (Mike Frysinger)
142         + if the build-time compiler accepts c11's _Noreturn keyword, use that
143           rather than gcc's attribute.
144         + change configure-check for gcc's noreturn attribute to assume it is
145           a prefix rather than suffix, matching c11's _Noreturn convention.
146         + add "lint" rule to c++/Makefile, e.g., with cppcheck.
147
148 20210313
149         + improve configure CF_LD_SEARCHPATH macro used for ncurses*-config and
150           ".pc" files, from dialog changes.
151         + reduce dependency of math-library in test programs.
152         + minor fixes for test_tparm.c (cf: 20210306)
153         + mention "ncurses" prefix in curses_version() manpage (report by
154           Michal Bielinski).
155
156 20210306
157         + improved test/test_tparm.c, by limiting the tests to capabilities
158           that might have parameters or padding, and combined with tputs test.
159         + improve discussion of padding versus tparm and tputs in
160           man/curs_terminfo.3x
161         + update portability note for FreeBSD in man/tput.1
162
163 20210227
164         + modify tic/infocmp to eliminate unnecessary "\" to escape ":" in
165           terminfo format.
166         + add check in tic for duplicate "use=" clauses.
167
168 20210220
169         + improve tic warning when oc/op do not mention SGR 39/49 for xterm
170           compatible XT flag.
171         + revert change to lib_addch.c in waddch_literal() from 20210130, since
172           the followup fix in PutCharLR() actually corrects the problem while
173           this change causes too-early filling/wrapping (report by Johannes
174           Altmanninger).
175         + add/use vt220+pcedit and vt220+vtedit  -TD
176         + add scrt/securecrt and absolute -TD
177         + add nel to xterm-new, though supported since X11R5 -TD
178         + add/use xterm+nofkeys -TD
179         + move use of ecma+italics from xterm-basic to xterm+nofkeys -TD
180
181 20210213
182         + add test/back_ground.c, to exercise the wide-character background
183           functions.
184         + add a check in _nc_build_wch() in case the background character is a
185           wide-character, rather than a new part of a multibyte character.
186         + improve tracemunch's coverage of form/menu/panel libraries.
187         + improve tracemunch's checking/reporting the type for the first
188           parameter, e.g., "WINDOW*" rather than "#1".
189
190 20210206
191         + provide for wide-characters as background character in wbkgrnd
192           (report/testcase by Anton Vidovic)
193         + add name for Fedora's pcre2 to configure check for "--with-pcre2"
194           option, from xterm #363 -TD
195         + modify adjustment in PutCharLR to restore the cursor position before
196           writing to the lower-right corner, rather than decrementing the
197           cursor column, in case it was a double-width character (cf: 20210130).
198
199 20210130
200         + correct an off-by-one in comparison in waddch_literal() which caused
201           scrolling when a double-cell character would not fit at the lower
202           right corner of the screen (report by Benno Schulenberg).
203         + split-out att610+cvis, vt220+cvis, vt220+cvis8 -TD
204         + add vt220-base, for terminal emulators which generally have not
205           supported att610's blinking cursor control -TD
206         + use vt220+cvis in vt220, etc -TD
207         + use att610+cvis, xterm+tmux and ansi+enq in kitty -TD
208         + use vt220+cvis in st, terminology, termite since they ignore
209           blinking-cursor detail in att610+cvis -TD
210
211 20210123
212         + modify package/config scripts to provide an explicit -L option for
213           cases when the loader search path has other directories preceding
214           the one in which ncurses is installed (report by Yuri Victorovich).
215         + minor build-fixes in configure script and makefiles to work around
216           quirks of pmake.
217
218 20210116
219         + add comment for linux2.6 regarding CONFIG_CONSOLE_TRANSLATIONS
220           (report by Patrick McDermott) -TD
221         + make opts extension for getcchar work as documented for ncurses 6.1,
222           adding "-g" flag to test/demo_new_pair to illustrate.
223
224 20210109
225         + fix errata in man/ncurses.3x from recent updates.
226         + improve quoting/escaping in configure script, uses some features of
227           autoconf 2.52.20210105
228
229 20210102
230         + update man/curs_memleaks.3x, to include <term.h> which declares
231           exit_terminfo.
232         + clarify man/curs_terminfo.3x, to mention why the macro setterm is
233           defined in <curses.h>, and remove it from the list of prototypes
234           (prompted by patch by Graeme McCutcheon).
235         + amend man/curs_terminfo.3x, to note that <curses.h> is required
236           for certain functions, e.g., those using chtype or attr_t for
237           types, as well as mvcur (cf: 20201031).
238         + use parameter-names in prototypes in curs_sp_funcs.3x, for
239           consistency with other manpages.
240
241 20201227
242         + update terminology entry to 1.8.1 -TD
243         + fix some compiler-warnings which gcc8 reports incorrectly.
244
245 20201219
246         + suppress hyphenation in generated html for manpages, to address
247           regression in upgrade of groff 1.22.2 to 1.22.3.
248         + fix inconsistent sort-order in see-also sections of manpages (report
249           by Chris Bennett).
250
251 20201212
252         + improve manual pages for form field-types.
253
254 20201205
255         + amend build-fixes for gnat 10 to work with certain systems lacking
256           gprbuild (cf: 20200627).
257         + eliminate an additional strlen and wsclen.
258         + eliminate an unnecessary strlen in waddnstr() (suggested by Benjamin
259           Abendroth).
260         + modify inopts manpage, separating the items for nodelay and notimeout
261           (patch by Benno Schulenberg).
262         + correct mlterm3 kf1-kf4 (Debian #975322) -TD
263         + add flash to mlterm3 -TD
264
265 20201128
266         + add Smulx to alacritty (Christian Duerr).
267         + add rep to PuTTY -TD
268         + add putty+keypad -TD
269         + add another fflush(stdout) in _nc_flush() to handle time-delays in
270           the middle of strings such as flash when the application uses
271           low-level calls rather than curses (cf: 20161217).
272         + modify configure check for c89/c99 aliases of clang to use its
273           -std option instead, because some platforms, in particular macOS,
274           do not provide workable c89/c99 aliases.
275
276 20201121
277         + fix some compiler-warnings in experimental Windows-10 driver.
278         + add the definitions needed in recent configure-check for clang
279           (report by Steven Pitman).
280
281 20201114
282         + fix some compiler-warnings in experimental Windows-10 driver.
283         + modify a check for parameters in terminfo capabilities to handle the
284           special case where short extended capability strings were not
285           converted from terminfo to termcap format.
286         + modify CF_MIXEDCASE_FILENAMES macro, adding darwin as special case
287           when cross-compiling (report by Eli Rykoff).
288
289 20201107
290         + update kitty+common -TD
291         + add putty+screen and putty-screen (suggested by Alexandre Montaron).
292         + explain in ncurses.3x that functions in the tinfo library do not rely
293           upon wide-characters (prompted by discussion with Reuben Thomas).
294
295 20201031
296         + modify MKterm.h.in so that it is not necessary to include <curses.h>
297           before <term.h> (prompted by discussion with Reuben Thomas).
298         + review/improve synopsis for curs_sp_funcs.3x (prompted by discussion
299           with Reuben Thomas).
300         + improve format of output in tic's check_infotocap() function, to
301           ensure that the messages contain only printable text.
302         + modify configure-check for clang to verify that -Qunused-arguments
303           is supported.  IBM's xlclang does not support it (report by Steven
304           Pitman).
305
306 20201024
307         + provide workaround configure-check for bool when cross-compiling.
308         + fix a potential indexing error in _nc_parse_entry(), seen with
309           Herlim's test data using address-sanitizer.
310         + change a null-pointer check in set_curterm to a valid-string check,
311           needed in to tic's use-resolution when pad_char is cancelled
312           (report/testcase by Robert Sebastian Herlim)
313         + improve tic's -c option to validate the number and type of parameters
314           and compare against expected number/type before deciding which set of
315           parameter-lists to use in tparm calls (report/testcase by Robert
316           Sebastian Herlim).
317         + fix a link for tabs.1 manpage in announce.html.in (report by Nick
318           Black), as well as some fixes via linklint.
319
320 20201017
321         + improve manpage typography.
322         + improve discussion in curs_addch.3x of the use of unctrl to display
323           nonprintable characters.
324         + add a note in terminfo.5 explaining that no-parameter strings such
325           as sgr0 or cnorm should not be used with tparm.
326
327 20201010
328         + correct sgr in aaa+rv (report by Florian Weimer) -TD
329         + fix some sgr inconsistencies in d230c, ibm6153, ibm6154,
330           ncrvt100an -TD
331         + improve tic's check for errors detected in tparm (prompted by
332           discussion with Florian Weimer).
333         + set output-mode to binary in experimental Windows-10 driver (Juergen
334           Pfeifer).
335
336 20201003
337         + remove output-related checks for nl/nonl (report by Leon Winter).
338         + change tmux's kbs to ^? (report by Premysl Eric Janouch)
339         + simplify mlterm initialization with DECSTR -TD
340         + fix a typo in man/curs_terminfo.3 (Reuben Thomas).
341         + add tmux-direct (tmux #2370, Debian #895754)
342         + add user-defined capabilities from mintty to Caps-ncurses, for
343           checking consistency with tic.
344
345 20200926
346         + correct configure-check for gnurx library.
347         + regenerate llib-* files.
348         + modify tracemunch and the panel library to show readable traces for
349           panel- and user-pointers.
350
351 20200919
352         + update mlterm3 for 3.9.0 (report by Premysl Eric Janouch) -TD
353
354 20200918
355         + corrected condition for appending curses.events to the generated
356           curses.h (report by Sven Joachim, Debian #970545).
357
358 20200912
359         + add configure-check for systre/tre with mingw configuration, to get
360           the library-dependencies as seen in msys2 configuration for mingw64.
361         + build-fixes for the win32-driver configuration.
362         + use more defensive binary mode setting for Win32 (Juergen Pfeifer).
363
364 20200907
365         + fix regression in setupterm validating non-empty $TERM (report by
366           Soren Tempel).
367
368 20200906
369         + merge/adapt in-progress work by Juergen Pfeifer for new version of
370           win32-driver.
371         + correct description of vt330/vt340 (Ross Combs).
372
373 20200831
374         + build-fix for awk-scripts modified for win32-driver (report by Werner
375           Fink).
376
377 20200829
378         + remove a redundant NCURSES_EXPORT as a build-fix for "Maarten
379           Anonymous".
380         + merge/adapt in-progress work by Juergen Pfeifer for new version of
381           win32-driver.
382         + modify configure script, moving gcc -Werror options to EXTRA_CFLAGS
383           to avoid breaking configure-checks (adapted from ongoing work on
384           mawk and lynx).
385         > errata for terminfo.src (report by Florian Weimer):
386         + correct icl6404 csr
387         + correct ti916 cup
388         + improve ndr9500
389
390 20200822
391         + improve version-number extraction in MKlib_gen.sh
392         + make the test-package for manpages installable by adjusting the
393           man_db.renames file.
394         + correct an off-by-one loop-limit in convert_strings function
395           (report by Yue Tai).
396         + add CF_SHARED_OPTS cases for HPE NonStop systems (Randall S Becker).
397         + modify CF_SHARED_OPTS case for NetBSD to use the same "-shared"
398           option for the non-rpath case as for the rpath case, to allow gcc to
399           provide suitable runtime initialization (report by Rajeev V Pillai).
400
401 20200817
402         + reduce build-warnings by excluding ncurses-internals from deprecation
403           warnings.
404         + mark wgetch-events feature as deprecated.
405         + add definition for $(LIBS) to ncurses/Makefile.in, to simplify builds
406           using the string-hacks option.
407         + prevent KEY_EVENT from appearing in curses.h unless the configure
408           option --enable-wgetch-events is used (report by Werner Fink).
409
410 20200816
411         + amend tic/infocmp check to allow for the respective tool's absence
412           (report by Steve Wills, cf: 20200808).
413         + improved some of the build-scripts with shellcheck
414         + filter out -MT/-MD/-MTd/-MDd options in script for Visual Studio C++
415           (discussion with "Maarten Anonymous").
416
417 20200808
418         + improve discussion of the system's tic utility when used as part
419           of cross-compiling (discussion with Keith Marshall).
420         + modify configuration checks for build-time tic/infocmp to use
421           AC_CHECK_TOOL. That can still be overridden by --with-tic-path and
422           --with-infocmp-path when fallbacks are used, but even if not using
423           fallbacks, the improved check may help with cross-compiling
424           (discussion with Keith Marshall).
425         + other build-fixes for Ada95 with MinGW.
426         + modify Ada95 source-generation utility to write to a file given as
427           parameter rather than to the standard output, allowing builds with
428           MinGW.
429
430 20200801
431         + remove remaining parts of checks for ISC Unix (cf: 20121006).
432         + add user32.lib to LDFLAGS for Visual Studio C++ configuration
433           (discussion with "Maarten Anonymous").
434         + modify MKkey_defs.sh to hide ncurses' definition of KEY_EVENTS to
435           reduce Visual Studio C++ redefinition warnings.
436         + improve/update checks for external functions in test/configure
437
438 20200725
439         + set LINK_TESTS in CF_SHARED_OPTS for msvc (patch by
440           "Maarten Anonymous")
441         + improved workaround for redefinition-warnings for KEY_EVENT.
442         + improve man/term.5 section on legacy storage format (report by
443           Florian Weimer).
444
445 20200718
446         + reduce redefinition-warnings for KEY_EVENT when building with Visual
447           Studio C++.
448         + define NCURSES_STATIC when compiling programs to link with static
449           libraries, to work with MinGW vs Visual Studio C++.
450         > additional changes for building with Visual Studio C++ and msys2
451           (reports/patches by "Maarten Anonymous")
452         + modify c++/Makefile.in to set the current directory while compiling
453           the main program, so the linker can find related objects.
454         + several changes to allow the c++/demo program to compile/link.
455         + change an ifdef in test-directory, to use VC++ wide-character funcs.
456
457 20200711
458         + fix pound-sign mapping in acsc of linux2.6 entry (report by Ingo
459           Bruckl).
460         + additional changes for building with Visual Studio C++ and msys2
461           (reports/patches by "Maarten Anonymous")
462         + build-improvements for Windows 10 and MinGW (patch by Juergen
463           Pfeifer).
464         + fix a typo in curs_printw.3x (patch by William Pursell).
465         + fix two errors in infotocap which allowed indexing outside the
466           buffer (report/testcases by Zhang Gan).
467         + update length of strings in infocmp's usage function to restore a
468           trailing null on the longest string (report/testcase by Zhang Gen).
469
470 20200704
471         + modify version-check with Ada generics to use the same pattern as in
472           the check for supported gnat versions (report by Pascal Pignard).
473         > additional changes for building with Visual Studio C++ and msys2
474           (patches by "Maarten Anonymous"):
475         + adjust headers/declarations to provide for "dllimport" vs "dllexport"
476           declarations when constructing DLLs, to worko with Visual Studio C++.
477
478 20200627
479         + build-fixes for gnat 10.1.1, whose gnatmake drops integration with
480           gprbuild.
481         + correct buffer-length in test/color_name.h
482
483 20200613
484         + update list of functions in ncurses.3x
485         + move dlclose() call from lib_mouse.c to delscreen() to avoid a case
486           in the former which could be called from SIGTSTP handler (Debian
487           #961097).
488
489 20200606
490         + add xterm+256color2, xterm+88color2, to deprecate nonstandard usage
491           in xterm+256color, xterm+88color -TD
492         + add shifted Linux console keys in linux+sfkeys entry for
493           screen.linux (report by Alexandre Montaron).
494         + use vt100+enq in screen (report by Alexandre Montaron).
495         + add screen.linux-s alias (suggested by Alexandre Montaron).
496
497 20200531
498         + correct configure version-check/warnng for g++ to allow for 10.x
499         + re-enable "bel" in konsole-base (report by Nia Huang)
500         + add linux-s entry (patch by Alexandre Montaron).
501         + drop long-obsolete convert_configure.pl
502         + add test/test_tparm.c, for checking tparm changes.
503         + improve parameter-checking for tparm, adding function _nc_tiparm() to
504           handle the most-used case, which accepts only numeric parameters
505           (report/testcase by "puppet-meteor").
506         + use a more conservative estimate of the buffer-size in lib_tparm.c's
507           save_text() and save_number(), in case the sprintf() function
508           passes-through unexpected characters from a format specifier
509           (report/testcase by "puppet-meteor").
510         + add a check for end-of-string in cvtchar to handle a malformed
511           string in infotocap (report/testcase by "puppet-meteor").
512
513 20200523
514         + update version-check for gnat to allow for gnat 10.x to 99.x
515         + fix an uninitialized variable in lib_mouse.c changes (cf: 20200502)
516         + add a check in EmitRange to guard against repeat_char emitting digits
517           which could be interpreted as BSD-style padding when --enable-bsdpad
518           is configured (report/patch by Hiltjo Posthuma).
519         + add --disable-pkg-ldflags to suppress EXTRA_LDFLAGS from the
520           generated pkg-config and ncurses*-config files, to simplify
521           configuring in the case where rpath is used but the packager wants
522           to hide the feature (report by Michael Stapelberg).
523         > fixes for building with Visual Studio C++ and msys2 (patches by
524           "Maarten Anonymous"):
525         + modify CF_SHARED_OPTS to generate a script which translates linker
526           options into Visual Studio's dialect.
527         + omit parentheses around function-names in generated lib_gen.c to
528           work around a Visual Studio C++ limitation.
529
530 20200516
531         + add notes on termcap.h header in curs_termcap.3x
532         + update notes on vscode / xterm.js -TD
533
534 20200509
535         + add "-r" option to the dots test-programs, to help with scripting
536           a performance comparison.
537         + build-fix test/move_field.c for NetBSD curses, whose form headers
538           use different names than SVr4 or ncurses.
539
540 20200502
541         + add details on the change to Linux SGR 21 in 2018 -TD
542         + add xterm-direct16 and xterm-direct256 -TD
543         + modify lib_mouse.c to check for out-of-range button numbers, convert
544           those to position reports.
545
546 20200425
547         + use vt100+fnkeys in putty -TD
548         + fix a typo in tput.1; "columns" should be "cols".
549
550 20200418
551         + improve tracemunch logic for "RUN" compaction.
552         + fix a special case in wresize() where copying the old text did not
553           check if the last cell on a row was the beginning of a fullwidth
554           character (adapted from patch by Benno Schulenberg).
555         + use vt52+keypad in xterm-vt52, from xterm #354 -TD
556         + improve see-also section of user_caps.5
557
558 20200411
559         + fix find_pair(), overlooked when refactoring for _nc_reserve_pairs()
560           (report/testcase by Brad Town, cf: 20170812).
561         + add a trailing null for magic-string in putwin, flagged by gcc 10
562         + update check for gcc version versus gnat to work with gcc 10.x
563
564 20200404
565         + modify -fvisibility check to work with g++
566         > fixes for building with Visual Studio C++ and msys2 (patches by
567           "Maarten Anonymous"):
568         + add configure option and check for gcc -fvisibility=hidden feature
569         + define NCURSES_NOMACROS in lib_gen.c to work around Visual Studio
570           C++ preprocessor limitations.
571         + modify some of the configure-macros, as well as mk-1st.awk to work
572           with Visual Studio C++ default filenaming.
573
574 20200328
575         + correct length of buffer copied in dup_field().
576         + remove "$(srcdir)/" from path of library.gpr, needed for out-of-tree
577           builds of Ada95 (patch by Adam Van Ymeren).
578
579 20200321
580         + improve configure-checks to reduce warnings about unused variables.
581         + improve description of error-returns in waddch and waddnstr manual
582           pages (prompted by patch by Benno Schulenberg).
583         + add test/move_field.c to demonstrate move_field(), and a stub for
584           a corresponding demo of dup_field().
585
586 20200314
587         + add history note to curs_scanw.3x for <stdarg.h> and <varargs.h>
588         + add history note to curs_printw.3x for <stdarg.h> and <varargs.h>
589         + add portability note to ncurses.3x regarding <stdarg.h>
590
591 20200308
592         + update copyright notices in test-packages.
593         + modify tracemunch to guard against errors in its known_p1 table.
594         + add several --with-xxx-libname options, to help with pkgsrc (prompted
595           by discussion with Thomas Klausner).
596
597 20200301
598         + modify wbkgd() and wbkgrnd() to avoid storing a null in the
599           background character, because it may be used in cases where the
600           corresponding 0x80 is not treated as a null (report by Marc Rechte,
601           cf: 20181208).
602
603 20200229
604         + modify CF_NCURSES_CONFIG to work around xcode's c99 "-W" option,
605           which conflicts with conventional use for passing linker options.
606         > fixes for building with Visual Studio C++ and msys2 (patches by
607           "Maarten Anonymous"):
608         + check for pcre2posix.h instead of pcre2-posix.h
609         + add case in CF_SHARED_OPTS for msys2 + msvc
610         + add fallback definition for STDIN_FILENO in progs.priv.h
611         + modify win_driver.c to use _alloca() rather than gcc's variable
612           length array feature.
613         + add NCURSES_IMPEXP to ncurses wrapped-variable declarations
614         + remove NCURSES_IMPEXP from class variables in c++/cursslk.h
615         + remove fallback prototype for exit() from c++/etip.h.in
616         + use configured check for <sys/time.h> in a couple of places
617         + conditionally include winsock.h in ncurses/win32con/gettimeofday.c,
618           because Visual Studio needs this for the timestruct declaration.
619         + adjust syntax in a couple of files using the NCURSES_API symbol.
620
621 20200222
622         + expanded note in ncurses.3x regarding automatically-included headers
623         + improve vt50h and vt52 based on DECScope manual -TD
624         + add/use vt52+keypad and vt52-basic -TD
625         + check/workaround for line-too-long in Ada95 generate utility when
626           building out-of-tree.
627         + improve/update HEADER_DEPS in */Makefile.in
628         + add "check" rule to include/Makefile, to demonstrate that the headers
629           include all of the required headers for the types used.
630
631 20200215
632         + improve manual page for panel library, extending the portability
633           section as well as documenting error-returns.
634         + show tic's version when installing terminal database in run_tic.sh
635         + correct check for gcc vs other compilers used in ncurses 6.0, from
636           FreeBSD patch by Kyle Evans (cf: 20150725).
637         + add notes for 6.2 to INSTALL.
638
639 20200212 6.2 release for upload to ftp.gnu.org
640         + update release notes
641         + minor build-fixes, mostly to test-package scripts
642
643 20200208
644         + modify check for sizeof(wchar_t) to ensure it gives useful result
645           when cross-compiling.
646         + drop assumption in configure script that Cygwin's linker is broken.
647         + define NCURSES_BROKEN_LINKER if the broken-linker feature is used,
648           to simplify configure-checks for ncurses-examples.
649
650 20200202
651         + reassert copyright on ncurses, per discussion in ncurses FAQ:
652           https://invisible-island.net/ncurses/ncurses.faq.html#relicensed
653
654 20200201
655         + modify comparison in make_hash.c to correct a special case in
656           collision handling for Caps-hpux11
657         + add testing utility report_hashing to check hash-tables used for
658           terminfo and termcap names.
659         + fix a missing prototype for _nc_free_and_exit().
660         + update a few comments about tack 1.07
661         + use an awk script to split too-long pathnames used in Ada95 sample
662           programs for explain.txt
663
664 20200118
665         + expanded description of XM in user_caps.5
666         + improve xm example for xterm+x11mouse, xterm+sm+1006 -TD
667         + add history section to curs_slk.3x and curs_terminfo.3x manpages.
668         + update alacritty entries for 0.4.0 (prompted by patch by
669           Christian Durr) -TD
670         + correct spelling errors found with codespell.
671         + fix for test/configure, from xterm #352.
672
673 20200111
674         + improve configure macros which check for the X11/Intrinsic.h header,
675           to accommodate recent MacOS changes.
676         + suppress gcc's -Winline warning; it has not been useful for some time
677         + update config.guess, config.sub
678
679 20200104
680         + modify a couple of macros in aclocal.m4 to allow autoconf 2.69 to
681           "work", to help illustrate discussion in
682           https://invisible-island.net/autoconf/my-autoconf.html
683         + fix some warnings from autoheader-252
684
685 20191228
686         + in gen-pkgconfig.in, move the RPATH_LIST and PRIVATE_LIBS assignments
687           past the various prefix/libdir assignments, to allow for using those
688           symbols, e.g., as done via CF_SHARED_OPTS.
689         + improve ncurses*-config and pc-files by filtering out linker-specs.
690         + modify test-package to more closely match Fedora's configuration
691           for PIE/PIC feature and debug-packages.
692
693 20191221
694         + correct pathname used in Ada95 sample programs for explain.txt, to
695           work with test-packages.
696         + improve tracemunch:
697           + keep track of TERMINAL* values
698           + if tracing was first turned on after initialization, attempt to
699             show distinct screen, window and terminal names anyway.
700         + ensure that GCC_NORETURN is defined in term.h, because the prototype
701           for exit_terminfo() uses it (report by Werner Fink).
702
703 20191214
704         + add exit_curses() and exit_terminfo() to replace internal symbols for
705           leak-checking.
706
707 20191207
708         + fix a few warnings for test-package builds
709         + add curses_trace(), to replace trace().
710
711 20191130
712         + add portability section to curs_getcchar manpage (prompted by
713           discussion with Nick Black).
714         + improve portability discussion of ACS characters in curs_addch
715           manpage.
716         + improve typography for double-quotes in manpages.
717
718 20191123
719         + fix typo for MinGW rpm test-package.
720         + workaround in rpm specs for NFS problems in Fedora 31.
721
722 20191116
723         + modify ncurses/Makefile.in to fix a case where Debian/testing changes
724           to the ld --as-needed configuration broke ncurses-examples test
725           packages.
726         + drop library-dependency on psapi for MinGW port, since win_driver.c
727           defines PSAPI_VERSION to 2, making it use GetProcessImageFileName
728           from kernel32.dll (prompted by patch by Simon Sobish, cf: 20140503).
729
730 20191109
731         + add warning-check in tic for terminals with parm_dch vs parm_ich.
732         + drop ich1 from rxvt-basic, Eterm and mlterm to improve compatibility
733           with old non-curses programs -TD
734         + reviewed st 0.8.2, updated some details -TD
735         + use ansi+rep several places -TD
736         + corrected tic's check for ich1 (report by Sebastian J. Bronner,
737           cf: 20020901).
738
739 20191102
740         + check parameter of set_escdelay, return ERR if negative.
741         + check parameter of set_tabsize, return ERR if not greater than zero
742           (report/patch by Anthony Sottile).
743         + revise CF_ADD_LIBS macro to prepend rather than append libraries.
744         + add "xterm-mono" to help packagers (report by Sven Joachim) -TD
745
746 20191026
747         + add a note in man/curs_add_wch.3x about Unicode terminology for the
748           line-drawing characters (report by Nick Black).
749         + improve comment in lib_tgoto.c regarding the use of \200 where a
750           \0 would be intended by the caller (report by "64 bit", cf: 20000923).
751         + modify linux-16color to accommodate Linux console driver change in
752           early 2018 (report by Dino Petrucci).
753
754 20191019
755         + modify make_hash to not require --disable-leaks, to simplify building
756           with address-sanitizer.
757         + modify tic to exit if it cannot remove a conflicting name, because
758           treating that as a partial success can cause an infinite loop in
759           use-resolution (report/testcase by Hongxu Chen, cf: 20111001).
760
761 20191015
762         + improve buffer-checks in captoinfo.c, for some cases when the
763           input string is shorter than expected.
764         > fix two errata in tic (report/testcases by Hongxu Chen):
765         + check for missing character after backslash in write_it
766         + check for missing characters after "%>" when converting from termcap
767           syntax (cf: 980530).
768
769 20191012
770         + amend recent changes to ncurses*-config and pc-files to filter out
771           Debian linker-flags (report by Sven Joachim, cf: 20150516).
772         + clarify relationship between tic, infocmp and captoinfo in manpage.
773         + check for invalid hashcode in _nc_find_type_entry and
774           _nc_find_name_entry.
775         > fix several errata in tic (reports/testcases by "zjuchenyuan"):
776         + check for invalid hashcode in _nc_find_entry.
777         + check for missing character after backslash in fmt_entry
778         + check for acsc with odd length in dump_entry in check for one-one
779           mapping (cf: 20060415);
780         + check length when converting from old AIX box_chars_1 capability,
781           overlooked in changes to eliminate strcpy (cf: 20001007).
782
783 20191005
784         + modify the ncurse*-config and pc-files to more closely match for the
785           -I and -l options.
786
787 20190928
788         + amend the ncurses*-config and pc-files to take into account the rpath
789           hack which differed between those files.
790         + improve -L option filtering in ncurses*-config
791         + improve recovery from error when reading command-character in
792           test/ncurses.c, showing the relevant error message and not exiting on
793           EINTR (cf: 20180922)
794
795 20190921
796         + add a note in resizeterm manpage about top-level windows which touch
797           the screen's borders.
798         + modify configure-checks for gnat to identify each of the tools path
799           and version.
800
801 20190914
802         + build-fixes for Ada95 configure-script and corresponding test package
803
804 20190907
805         + add --with-ada-libname option and modify Ada95 configuration to
806           allow renaming the "AdaCurses" library (prompted by proposed changes
807           by Pascal Pignard).
808         + modify configure script to distinguish gcc from icc and clang when
809           the --enable-warnings option is not used, to avoid unnecessary
810           warnings about unrecognized inline options (report by Sven Joachim).
811
812 20190831
813         + build-fixes for configuration using --program-suffix with Ada95,
814           noticed with MacOS but applicable to other platforms without
815           libpanelw, etc.
816
817 20190824
818         + fix some cppcheck warnings, mostly style, in ncurses test-programs.
819
820 20190817
821         + amend 20181208 changes for wbkgd() and wbkgrnd(), fixing a few
822           details where it still differed from SVr4.
823         + fix some cppcheck warnings, mostly style, in ncurses test-programs.
824
825 20190810
826         + fix a few more coverity warnings.
827
828 20190803
829         + improve loop limits in _nc_scroll_window() to handle a case where
830           the scrolled data is a pad which is taller than the window (patch
831           by Rob King).
832         + amend the change to screen, because tmux relies upon that entry
833           and does not support that feature (Debian #933572) -TD
834         + updated ms-terminal entry & notes -TD
835         + updated kitty entry & notes -TD
836         + updated alacritty+common entry & notes -TD
837         + use xterm+sl-twm for consistency -TD
838
839 20190728
840         + fix a few more coverity warnings.
841         + more documentation updates based on tctest.
842
843 20190727
844         + fix a few coverity warnings.
845         + documentation updates based on tctest.
846
847 20190720
848         + fix a few warnings for gcc 4.x
849         + add some portability/historical details to the tic, toe and infocmp
850           manual pages.
851         + correct fix for broken link from terminfo(5) to tabs(1) manpage
852           (report by Sven Joachim).
853
854 20190713
855         + change reset's behavior for margins to simply clear soft-margins if
856           possible, rather than clearing and then setting them according to the
857           terminal's width (suggested by Thomas Wolff).
858         + correct order of one wbkgd versus start_color call in test/padview.c
859
860 20190706
861         + add domterm -TD
862         + improve comments for recent changes, add alias xterm.js -TD
863
864 20190630
865         + add --with-tic-path and --with-infocmp-path to work around problems
866           building fallback source using pre-6.0 tic/infocmp.
867         + add a check in tic for paired indn/rin
868         + correct a buffer-limit in write_entry.c for systems that use caseless
869           filenames.
870         + add ms-terminal -TD
871         + add vscode, vscode-direct -TD
872
873 20190623
874         + improve the tabs.1 manual page to distinguish the PWB/Unix and 7th
875           Edition versions of the tabs utility.
876         + add configure check for getenv() to work around implementation shown
877           in Emscripten #6766, use that to optionally suppress START_TRACE
878           macro, whose call to getenv() may not work properly (report by Ilya
879           Ig Petrov).
880         + modify initialization functions to avoid relying upon persistent
881           data for the result from getenv().
882         + update config.guess, config.sub
883
884 20190615
885         + expand the portability section of the man/tabs.1 manual page.
886         + regenerate HTML manpages.
887
888 20190609
889         + add mintty, mintty-direct (adapted from patch by Thomas Wolff).
890           Some of the suggested user-defined capabilities are commented-out,
891           to allow builds with ncurses 5.9 and 6.0
892         + add Smol/Rmol for tmux, vte-2018 (patch by Nicholas Marriott).
893         + add rs1 to konsole, mlterm -TD
894         + modify _nc_merge_entry() to make a copy of the data which it merges,
895           to avoid modifying the source-data when aligning extended names.
896
897 20190601
898         + modify an internal call to vid_puts to pass extended color pairs
899           e.g., from tty_update.c and lib_mvcur.c (report by Niegodziwy Beru).
900         + improve manual page description of init_tabs capability and TABSIZE
901           variable.
902
903 20190525
904         + modify reset_cmd.c to allow for tabstops at intervals other than 8
905           (report by Vincent Huisman).
906
907 20190518
908         + update xterm-new to xterm patch #345 -TD
909         + add/use xterm+keypad in xterm-new (report by Alain D D Williams) -TD
910         + update terminator entry -TD
911         + remove hard-tabs from ti703 (report by Robert Clausecker)
912         + mention meml/memu/box1 in user_caps manual page.
913         + mention user_caps.5 in tic and infocmp manual pages.
914
915 20190511
916         + fix a spurious blank line seen with "infocmp -1fx xterm+x11mouse"
917         + add checks in repair_subwindows() to keep the current position and
918           scroll-margins inside the resized subwindow.
919         + add a limit check in newline_forces_scroll() for the case where the
920           row is inside scroll-margins, but not at the end (report by Toshio
921           Kuratomi, cf: 20170729).
922         + corrected a warning message in tic for extended capabilities versus
923           number of parameters.
924
925 20190504
926         + improve workaround for Solaris wcwidth versus line-drawing characters
927           (report by Pavel Stehule).
928         + add special case in tic to validate RGB string-capability extension.
929         + corrected string/parameter-field for RGB in Caps-ncurses.
930
931 20190427
932         + corrected problem in terminfo load/realignment which prevented
933           infocmp from comparing extended capabilities with the same name
934           but different types.
935
936 20190420
937         + improve ifdef's for TABSIZE variable, to help with AIX/HPUX ports.
938
939 20190413
940         + check for TABSIZE variable in test/configure script.
941         + used test/test_arrays.c to improve Caps.aix1 and Caps.hpux11
942         + corrected filtering of comments in MKparametrized.sh
943         + reduce duplication across Caps* files by moving some parts which do
944           not depend on order into Caps-ncurses.
945
946 20190406
947         + modify MKcaptab.sh, MKkey_defs.sh, and MKhashsize.sh to handle
948           split-up Caps-files.
949         + build-fixes if extended-functions are disabled.
950
951 20190330
952         + add "screen5", to mention italics (report by Stefan Assmann)
953         + modify description of xterm+x11hilite to eliminate unused p5 -TD
954         + add configure script checks to help with a port to Ultrix 3.1
955           (report by Dennis Grevenstein).
956           + check if "b" binary feature of fopen works
957           + check for missing feature of locale.h
958           + add fallback for strstr() in test-programs
959           + add fallback for STDOUT_FILENO in test-programs
960         + update config.guess, config.sub
961
962 20190323
963         + move macro for is_linetouched() inside NCURSES_NOMACROS ifndef.
964         + corrected prototypes in several manpages using script to extract
965           those in compilable form.
966         + use _nc_copy_termtype2() rather than direct assignment in setupterm,
967           in case it is called repeatedly using fallback terminfo descriptions
968           (report/patch by Werner Fink).
969
970 20190317
971         + regenerate llib-* files.
972         + modify tic to also use new function for user-defined capability info.
973         + modify _nc_parse_entry() to check if a user-defined capability has
974           an unexpected type; ignore it in that case.
975         + fix a special case of link-anchors in generated Ada html files.
976         + use newer rel=author tag in generated html rather than rev=made,
977           which did not become accepted.
978
979 20190309
980         + in-progress changes to add parameter-checking for common user-defined
981           capabilities in tic.
982         + update MKcodes.awk and MKnames.awk to ignore the new "userdef"
983           data in Caps-ncurses (cf: 20190302).
984
985 20190302
986         + corrected some of the undocumented terminfo names in Caps.hpux11
987         + add "Caps-ncurses" file to help with checking inconsistencies in some
988           user-defined capabilities.
989         + amend check for repeat_char to handle a case where setlocale() was
990           called after initscr() (report by "Ampera").
991
992 20190223
993         + fix typo in adds200 -TD
994         + add tic check for consistent alternate character set capabilities.
995         + improve check in mvcur() to decide whether to use hard-tabs, using
996           xt, tbc and hts as clues.
997         + replace check in reset command for obsolete "pt" capability using
998           tbc and hts capabilities as clues (report by Nicolas Marriott).
999
1000 20190216
1001         + improve manual page description of TABSIZE.
1002         + add test/demo_tabs program.
1003
1004 20190209
1005         + add check in tic to provide warnings for mismatched number of
1006           parameters in the documented user-capability extensions.
1007
1008 20190202
1009         + modify rpm test-package ".spec" file to work around naming conflict
1010           with Redhat's package for ncurses6.
1011         + modify no-leaks code in test/picsmap to avoid non-standard tdestroy.
1012         + amend change to configure script which altered the top-level makefile
1013           to avoid attempting to install the terminfo database when it was not
1014           configured, to allow for installing the ".pc" files which are also
1015           in the misc directory (report by Steve Wills).
1016
1017 20190126
1018         + change some "%define" statements in test-packages for RPMs to
1019           "%global" to work around changes in rpm 4.14 from recent Redhat.
1020         + fixes for O_INPUT_FIELD extension (patch by Leon Winter).
1021         + eliminate fixed buffer-size when reading $TERMCAP variable.
1022         + correct logic in read_entry.c which prevented $TERMCAP variable from
1023           being interpreted as a fallback to terminfo entry (prompted by
1024           Savannah #54556, cf: 20110924).
1025
1026 20190121
1027         + add a check in test/configure to work around non-ncurses termcap.h
1028           file in Slackware.
1029         + corrected flag for "seq" method of db 1.8.5 interface, needed by toe
1030           on some of the BSDs.
1031         + updated "string-hacks" feature.
1032         + minor improvements to manpage typography.
1033         + corrected conditionally-compiled limit on color pairs (report by
1034           "Hudd").
1035         + add -x option to test/pair_content, test/color_content for testing
1036           init_extended_pair, extended_pair_content, init_extended_color,
1037           extended_color_content
1038         + add -p option to test/pair_content, test/color_content to show the
1039           return values from the tested functions.
1040         + improve manual page curs_color.3x discussion of error returns and
1041           extensions.
1042         + add O_INPUT_FIELD extension to form library (patch by Leon Winter).
1043         + override/suppress --enable-db-install if --disable-database configure
1044           option was given.
1045         + change a too-large terminal entry in tic from a fatal error to a
1046           warning (prompted by discussion with Gabriele Balducci).
1047
1048 20190112
1049         + fix typo in term(5), improve explanation of format (report by Otto
1050           Modinos).
1051         + add nsterm-direct -TD
1052         + use SGR 1006 mouse for konsole-base -TD
1053         + use SGR 1006 mouse for putty -TD
1054         + add ti703/ti707, ti703-w/ti707-w (Robert Clausecker)
1055
1056 20190105
1057         + add dummy "check" rule in top-level and test-Makefile to simply
1058           building test-packages for Arch.
1059         + modify configure script to avoid conflict with a non-POSIX feature
1060           that enables all parts of the system headers by default.  Some
1061           packagers have come to rely upon this behavior (FreeBSD #234049).
1062         + update config.guess, config.sub
1063
1064 20181229
1065         + improve man/curs_mouse.3x with regard to xterm
1066         + modify tracemunch to accept filename parameters in addition to use
1067           as a pipe/filter.
1068         + minor optimization to reduce calls to _nc_reserve_pairs (prompted by
1069           discussion with Bryan Christ).
1070         + add test/pair_content.c and test/color_content.c
1071         + modify infocmp to omit filtering of "OTxx" names which are used for
1072           obsolete capabilities, when the output is sorted by long-names.
1073           Doing this helps when making a table of the short/long capability
1074           names.
1075
1076 20181215
1077         + several fixes for gcc8 strict compiler warnings.
1078         + fix a typo in comments (Aaron Gyes).
1079         + add nsterm-build309 to replace nsterm-256color, assigning the latter
1080           as an alias of nsterm, to make mouse work with nsterm-256color -TD
1081         + base gnome-256color entry on "gnome", not "vte", for consistency -TD
1082         + updates for configure macros from work on tin and xterm:
1083           + CF_GNU_SOURCE, allow for Cygwin's newlib when checking for the
1084             _DEFAULT_SOURCE symbol.
1085           + CF_VA_COPY, add fallback check if neither va_copy/__va_copy is
1086             supported, to try copying the pointers for va_list, or as an array.
1087             Also add another fallback check, for __builtin_va_copy(), which
1088             could be used with AIX xlc in c89 mode.
1089
1090 20181208
1091         + modify wbkgd() and wbkgrnd() to improve compatibility with SVr4
1092           curses, changing the way the window rendition is updated when the
1093           background character is modified (report by Valery Ushakov).
1094
1095 20181201
1096         + add midnightbsd to CF_XOPEN_SOURCE macro (patch by Urs Jansen).
1097         + add "@" command to test/ncurses F-test, to allow rapid jump to
1098           different character pages.
1099         + update config.guess, config.sub from
1100                 http://git.savannah.gnu.org/cgit/config.git
1101
1102 20181125
1103         + build-fix (reports by Chih-Hsuan Yen, Sven Joachim).
1104
1105 20181124
1106         + check --with-fallbacks option to ensure there is a value, and add
1107           the fallback information to top-level Makefile summary.
1108         + add some traces in initialization to show whether a fallback entry is
1109           used.
1110         + build-fix for test/movewindow with ncurses-examples on Solaris.
1111         + add "-l" option to test/background, to dump screen contents in a form
1112           that lets different curses implementations be compared.
1113         + modify the initialization checks for mouse so that the xterm+sm+1006
1114           block will work with terminal descriptions not mentioning xterm
1115           (report by Tomas Janousek).
1116
1117 20181117
1118         + ignore the hex/b64 $TERMINFO in toe's listing.
1119         + correct a status-check in _nc_read_tic_entry() so that if reading
1120           a hex/b64 $TERMINFO, and the $TERM does not match, fall-through to
1121           the compiled-in search list.
1122
1123 20181110
1124         + several workarounds to ensure proper C compiler used in parts of
1125           Ada95 tree.
1126         + update config.guess, config.sub from
1127                 http://git.savannah.gnu.org/cgit/config.git
1128
1129 20181027
1130         + add OpenGL clients alacritty and kitty -TD
1131         + add Smulx for tmux, vte-2018 -Nicholas Marriott
1132
1133 20181020
1134         + ignore $TERMINFO as a default value in configure script if it came
1135           from the infocmp -Q option.
1136         + allow value for --with-versioned-syms to be a relative pathname
1137         + add a couple of broken-linker symbols to the list of versioned
1138           symbols to help with link-time optimization versus weak symbols.
1139         + apply shift/control/alt logic when decoding xterm's 1006 mode to
1140           wheel-mouse events (Redhat #1610681).
1141
1142 20181013
1143         + amend change from 20180818, which undid a fix for the $INSTALL value
1144           to make it an absolute path.
1145
1146 20181006
1147         + improve a configure check to work with newer optimizers (report by
1148           Denis Pronin, Gentoo #606142).
1149         + fix typo in tput.c (Sven Joachim, cf: 20180825).
1150
1151 20180929
1152         + fix typo in tvi955 -TD
1153         + corrected acsc for regent60 -TD
1154         + add alias n7900 -TD
1155         + corrected acsc for tvi950 -TD
1156         + remove bogus kf0 from tvi950 -TD
1157         + added function-key definitions to agree with Televideo 950 manual -TD
1158         + add bel to tvi950 -TD
1159         + add shifted function-keys to regent60 -TD
1160         + renumber regent40 function-keys to match manual -TD
1161         + add cd (clr_eos) to adds200 -TD
1162
1163 20180923
1164         + build-fix: remove a _tracef call which was used for debugging (report
1165           by Chris Clayton).
1166
1167 20180922
1168         + ignore interrupted system-call in test/ncurses's command-line, e.g.,
1169           if the terminal were resized.
1170         + add shift/control/alt logic for decoding xterm's 1006 mode (Redhat
1171           #1610681, cf: 20141011).
1172         + modify rpm test-packages to not use --disable-relink with Redhat,
1173           since Fedora 28's tools do not work with that feature.
1174
1175 20180908
1176         + document --with-pcre2 configure option in INSTALL.
1177         + improve workaround for special case in PutAttrChar() where a cell is
1178           marked as alternate-character set, to handle a case where the
1179           character in the cell does not correspond to any of the ASCII
1180           fallbacks (report by Leon Winter, cf: 20180505).
1181         + amend change to form library which attempted to avoid unnecessary
1182           update of cursor position in non-public fields, to simply disable
1183           output in this case (patch by Leon Winter, cf: 20180414).
1184         + improve check for LINE_MAX runtime limit, to accommodate broken
1185           implementations of sysconf().
1186
1187 20180901
1188         + improve manual page for wgetnstr, giving background for the length
1189           parameter.
1190         + define a limit for wgetnstr, wgetn_wstr when length is negative or
1191           "too large".
1192         + update configure script to autoconf 2.52.20180819 (Debian #887390).
1193
1194 20180825
1195         + add a section to tput manual page clarifying how it determines the
1196           terminal size (prompted by discussion with Grant Jenks).
1197         + add "--disable-relink" to rpm test-packages, for consistency with the
1198           deb test-packages.
1199         + split spec-file into ncurses6.spec and ncursest6.spec to work around
1200           toolset breakage in Fedora 28.
1201         + drop mention of "--disable-touching", which was not in the final
1202           20180818 updates.
1203
1204 20180818
1205         + build-fix for PDCurses with ncurses-examples.
1206         + improved CF_CC_ENV_FLAGS.
1207         + modify configure scripts to reduce relinking/ranlib during library
1208           install (Debian #903790):
1209           + use "install -p" when available, to avoid need for ranlib of
1210             static libraries.
1211           + modify scripts which use "--disable-relink" to add a 1-second
1212             sleep to work around tools which use whole-second timestamps, e.g.,
1213             in utime() rather than the actual file system resolution.
1214
1215 20180804
1216         + improve logic for clear with E3 extension, in case the terminal
1217           scrolls content onto its saved-lines before actually clearing
1218           the display, by clearing the saved-lines after clearing the
1219           display (report/patch by Nicholas Marriott).
1220
1221 20180728
1222         + improve documentation regarding feature-test macros in curses.h
1223         + improve documentation regarding the virtual and physical screens.
1224         + formatting fixes for manpages, regenerate man-html documentation.
1225
1226 20180721
1227         + build-fixes for gcc8.
1228         + corrected acsc for wy50 -TD
1229         + add wy50 and wy60 shifted function-keys as kF1 to kF16 -TD
1230         + remove ansi+rep mis-added to interix in 2018-02-23 -TD
1231
1232 20180714
1233         + add enum, regex examples to test/demo_forms
1234         + add configure check for pcre-posix library to help with MinGW port.
1235
1236 20180707
1237         + build-fixes for gcc8.
1238         + correct order of WINDOW._ttytype versus WINDOW._windowlist in
1239           report_offsets.
1240         + fix a case where tiparm could return null if the format-string was
1241           empty (Debian #902630).
1242
1243 20180630
1244         + add acsc string to vi200 (Nibby Nebbulous)
1245           add right/down-arrow to vi200's acsc -TD
1246         + add "x" to tput's getopt string so that "tput -x clear" works
1247           (Nicholas Marriott).
1248         + minor fixes prompted by anonymous report on stack overflow:
1249           + correct order of checks in _nc_get_locale(), for systems lacking
1250             locale support.
1251           + add "#error" in a few places to flag unsupported configurations
1252
1253 20180623
1254         + use _WIN32/_WIN64 in preference to __MINGW32__/__MINGW64__ symbols
1255           to simplify building with MSVC, since the former are defined in both
1256           compiler configurations (report by Ali Abdulkadir).
1257         + further improvements to configure-checks from work on dialog, i.e.,
1258           updated CF_ADD_INCDIR, CF_FIND_LINKAGE, CF_GCC_WARNINGS,
1259           CF_GNU_SOURCE, CF_LARGEFILE, CF_POSIX_C_SOURCE, CF_SIZECHANGE, and
1260           CF_TRY_XOPEN_SOURCE.
1261         + update config.guess, config.sub from
1262                 http://git.savannah.gnu.org/cgit/config.git
1263
1264 20180616
1265         + build-fix for ncurses-examples related to gcc8-fixes (cf: 20180526).
1266         + reduce use of _GNU_SOURCE for current glibc where _DEFAULT_SOURCE
1267           combines with _XOPEN_SOURCE (Debian #900987).
1268         + change target configure level for _XOPEN_SOURCE to 600 to address
1269           use of vsscanf and setenv.
1270         + improved configure-checks CF_SIZECHANGE and CF_STRUCT_TERMIOS from
1271           work on dialog.
1272
1273 20180609
1274         + modify generated ncurses*config and ncurses.pc, ncursesw.pc, etc.,
1275           to list helper libraries such as gpm for static linking (Debian
1276           #900839).
1277         + marked vwprintw and vwscanw as deprecated; recommend using vw_printw
1278           and vw_scanw, respectively.
1279
1280 20180602
1281         + add RPM test-package "ncursest-examples".
1282         + modified RPM test-package to work with Mageia6.
1283
1284 20180526
1285         + add note in curs_util.3x about unctrl.h
1286         + review/improve header files to ensure that those include necessary
1287           files except for the previously-documented cases (report by Isaac
1288           Pascual Monells).
1289         + improved test-package scripts, adapted from byacc 1.9 20180525.
1290         + fix some gcc8 warnings seen in Redhat package build, but
1291           work around bug in gcc8 compiler warnings in comp_parse.c
1292
1293 20180519
1294         + formatting fixes for manpages, regenerate man-html documentation.
1295         + trim spurious whitespace from tmux in 2018-02-24 changes;
1296           fix some inconsistencies in/between tmux- and iterm2-entries for SGR
1297           (report by C Anthony Risinger)
1298         + improve iterm2 using some xterm features which it has adapted -TD
1299         + add check in pair_content() to handle the case where caller asks
1300           for an uninitialized pair (Debian #898658).
1301
1302 20180512
1303         + remove trailing ';' from GCC_DEPRECATED definition.
1304         + repair a change from 20110730 which left an error-check/warning dead.
1305         + fix several minor Coverity warnings.
1306
1307 20180505
1308         + add deprecation warnings for internal functions called by older
1309           versions of tack.
1310         + fix a special case in PutAttrChar() where a cell is marked as
1311           alternate-character set, but the terminal does not actually support
1312           the given graphic character.  This would happen in an older terminal
1313           such as vt52, which lacks most line-drawing capability.
1314         + use configure --with-config-suffix option to work around filename
1315           conflict with Debian packages versus test-packages.
1316         + update tracemunch to work with perl 5.26.2, which changed the rules
1317           for escaping regular expressions.
1318
1319 20180428
1320         + document new form-extension O_EDGE_INSERT_STAY (report by Leon
1321           Winter).
1322         + correct error-returns listed in manual pages for a few form functions
1323           (report by Leon Winter).
1324         + add a check in form-library for null-pointer dereference:
1325                 unfocus_current_field (form);
1326                 form_driver (form, REQ_VALIDATION);
1327           (patch by Leon Winter).
1328
1329 20180414
1330         + modify form library to optionally delay cursor movement on a field
1331           edge/boundary (patch by Leon Winter).
1332         + modify form library to avoid unnecessary update of cursor position in
1333           non-public fields (patch by Leon Winter).
1334         + remove unused _nc_import_termtype2() function.
1335         + also add/improve null-pointer checks in other places
1336         + add a null-pointer check in _nc_parse_entry to handle an error when
1337           a use-name is invalid syntax (report by Chung-Yi Lin).
1338
1339 20180407
1340         + clarify in manual pages that vwprintw and vwscanw are obsolete,
1341           not part of X/Open Curses since 2007.
1342         + use "const" in some prototypes rather than NCURSES_CONST where X/Open
1343           Curses was updated to do this, e.g., wscanw, newterm, the terminfo
1344           interface.  Also use "const" for consistency in the termcap
1345           interface, which was withdrawn by X/Open Curses in Issue 5 (2007).
1346           As of Issue 7, X/Open Curses still lacks "const" for certain return
1347           values, e.g., keyname().
1348
1349 20180331
1350         + improve terminfo write/read by modifying the fourth item of the
1351           extended header to denote the number of valid strings in the extended
1352           string table (prompted by a comment in unibilium's sources).
1353
1354 20180324
1355         + amend Scaled256() macro in test/picsmap.c to cover the full range
1356           0..1000 (report by Roger Pau Monne).
1357         + add some checks in tracemunch for undefined variables.
1358         + trim some redundant capabilities from st-0.7 -TD
1359         + trim unnecessary setf/setb from interix -TD
1360
1361 20180317
1362         + fix a check in infotocap which may not have detected a problem when
1363           it should have.
1364         + add a check in tic for the case where setf/setb are given using
1365           different strings, but provide identical results to setaf/setab.
1366         + further improve fix for terminfo.5 (patch by Kir Kolyshkin).
1367         + reorder loop-limit checks in winsnstr() in case the string has no
1368           terminating null and only the number of characters is used (patch
1369           by Gyorgy Jeney).
1370
1371 20180303
1372         + modify TurnOn/TurnOff macros in lib_vidattr.c and lib_vid_attr.c to
1373           avoid expansion of "CUR" in trace.
1374         + improve a few lintian warnings in test-packages.
1375         + modify lib_setup to avoid calling pthread_self() without first
1376           verifying that the address is valid, i.e., for weak symbols
1377           (report/patch by Werner Fink).
1378         + modify generated terminfo.5 to not use "expand" and related width
1379           on the last column of tables, making layout on wide terminals look
1380           better (adapted from patch by Kir Kolyshkin).
1381         + add a category to report_offsets, e.g., "w" for wide-character, "t"
1382           for threads to make the report more readable.  Reorganized the
1383           structures reported to make the categories more apparent.
1384         + simplify some ifdef's for extended-colors.
1385         + add NCURSES_GLOBALS and NCURSES_PRESCREEN to report_offsets, to show
1386           how similar the different tinfo configurations are.
1387
1388 20180224
1389         + modify _nc_resolve_uses2() to detect incompatible types when merging
1390           a "use=" clause of extended capabilities.  The problem was seen in a
1391           defective terminfo integrated from simpleterm sources in 20171111,
1392           compounded by repair in 20180121.
1393         + correct Ss/Ms interchange in st-0.7 entry (tmux #1264) -TD
1394         + fix remaining flash capabilities with trailing mandatory delays -TD
1395         + correct cut/paste in NEWS (report by Sven Joachim).
1396
1397 20180217
1398         + remove incorrect free() from 20170617 changes (report by David Macek).
1399         + correct type for "U8" in user_caps.5; it is a number not boolean.
1400         + add a null-pointer check in safe_sprintf.c (report by Steven Noonan).
1401         + improve fix for Debian #882620 by reusing limit2 variable (report by
1402           Julien Cristau, Sven Joachim).
1403
1404 20180210
1405         + modify misc/Makefile.in to install/uninstall explicit list in case
1406           the build-directory happens to have no ".pc" files when an uninstall
1407           is performed (report by Jeffrey Walton).
1408         + deprecate safe-sprintf, since the vsnprintf function, which does what
1409           was needed, was standardized long ago.
1410         + add several development/experimental options to development packages.
1411         + minor reordering of options in configure script to make the threaded
1412           and reentrant options distinct from the other extensions which are
1413           normally enabled.
1414
1415 20180203
1416         + minor fixes to test/*.h to make them idempotent.
1417         + add/use test/parse_rgb.h to show how the "RGB" capability works.
1418         + add a clarification in user_caps.5 regarding "RGB" capability.
1419         + add extended_slk_color{,_sp} symbols to the appropriate
1420           package/*.{map,sym} files (report by Sven Joachim, cf: 20170401).
1421
1422 20180129
1423         + update "VERSION" file, used in shared-library naming.
1424
1425 20180127 6.1 release for upload to ftp.gnu.org
1426
1427 20180127
1428         + updated release notes
1429         + amend a warning message from tic which should have flagged misuse
1430           of "XT" capability in "screen" terminal description.
1431         > terminfo changes:
1432         + trim "XT" from screen entry, add comments to explain why it was
1433           not suitable -TD
1434         + modify iterm to use xterm+sl-twm building block -TD
1435         + mark konsole-420pc, konsole-vt100, konsole-xf3x obsolete reflecting
1436           konsole's removal in 2008 -TD
1437         + expanded the history section of konsole to explain its flawed
1438           imitation of xterm's keyboard -TD
1439         + use xterm+x11mouse in screen.* entries because screen does not yet
1440           support xterm's 1006 mode -TD
1441         + add nsterm-build400 for macOS 10.13 -TD
1442         + add ansi+idc1, use that in ansi+idc adding dch for consistency -TD
1443         + update vte to vte-2017 -TD
1444         + add ecma+strikeout to vte-2017 -TD
1445         + add iterm2-direct -TD
1446         + updated teraterm, added teraterm-256color -TD
1447         + add mlterm-direct -TD
1448         + add descriptions for ANSI building-blocks -TD
1449
1450 20180121 pre-release
1451         > terminfo changes:
1452         + add xterm+noalt, xterm+titlestack, xterm+alt1049, xterm+alt+title
1453           blocks from xterm #331 -TD
1454         + add xterm+direct, xterm+indirect, xterm-direct entries from xterm
1455           #331 -TD
1456         + modify xterm+256color and xterm+256setaf to use correct number of
1457           color pairs, for ncurses 6.1 -TD
1458         + add rs1 capability to xterm-256color -TD
1459         + modify xterm-r5, xterm-r6 and xterm-xf86-v32 to use xterm+kbs to
1460           match xterm #272, reflecting packager's changes -TD
1461         + remove "boolean" Se, Ss from st-0.7 -TD
1462         + add konsole-direct and st-direct -TD
1463         + remove unsupported "Tc" capability from st-0.7; use st-direct if
1464           direct-colors are wanted -TD
1465         + add vte-direct -TD
1466         + add XT, hpa, indn, and vpa to screen, and invis, E3 to tmux (patch by
1467           Pierre Carru)
1468         + use xterm+sm+1006 in xterm-new, vte-2014 -TD
1469         + use xterm+x11mouse in iterm, iterm2, mlterm3 because xterm's 1006
1470           mode does not work with those programs.  konsole is debatable -TD
1471         + add "termite" entry (report by Markus Pfeiffer) -TD
1472         > merge branch begun April 2, 2017 which provides these features:
1473         + support read/write new binary-format for terminfo which stores
1474           numeric capabilities as a signed 32-bit integer.  The test programs
1475           such as picsmap, ncurses were created or updated during 2017 to use
1476           this feature.
1477         + the new format is written by the wide-character configuration of
1478           tic when it finds a numeric capability larger than 32767.
1479         + other applications such as infocmp built with the wide-character
1480           ncurses library work as expected.
1481         + applications built with the "narrow" (8-bit) configuration will
1482           read the new format, but will limit those extended values to 32767.
1483         + in either wide/narrow configuration, the structure defined in
1484           term.h still uses signed 16-bit values.
1485         + because it is incompatible with the legacy (mid-1980s) binary format,
1486           a new magic value is provided for the "file" program.
1487         + the term.5 manual page is updated to describe this new format.
1488         + the limit on file-size for compiled terminfo is increased in the
1489           wide-character configuration to 32768.
1490
1491 20180120
1492         + build-fix in picsmap.c for stdint.h existence.
1493         + add --disable-stripping option to configure scripts.
1494         + modify ncurses-examples to install test-scripts in the data directory.
1495         + work around tool-breakage in Debian 9 and later by invoking
1496           gprconfig to specify the C compiler to be used by gnatmake,
1497           and conditionally suppressing Library_Options line for static
1498           libraries.
1499         + bump the compat level for test-packages to 7, i.e., Debian 5.
1500
1501 20180106
1502         + fixes for writing extended color pairs in putwin.
1503         + modify test/savescreen.c to add test patterns that exercise 88-,
1504           256-, etc., colors.
1505         + modify configure option --with-build-cc, adding clang, c89 and c99
1506           as possible default values.
1507         + modify ncurses-examples configure script to use pkg-config for the
1508           extra form/menu/panel libraries, to be more consistent with the
1509           handling of the curses/ncurses library.
1510         + modify test-packages for mingw to supply "pc" files.
1511         + modify gen-pkgconfig.in to list -lpthread as a private library when
1512           configured to access it via weak symbols.
1513         + simplify gen-pkgconfig.in, adding -ltinfo without the special linker
1514           checks because some versions of the linker simply hard-code the
1515           behavior.
1516         + update URLs for ncurses website to use https.
1517         + modify CF_CURSES_LIBS to fill in $cf_nculib_root in case the
1518           ncurses-examples are built with a system ncurses that lacks the
1519           standard "curses" symbolic link, as done by SuSE.  The symbol is
1520           needed to make a followup check for the pthread library work, and
1521           would be set properly using the options "--with-screen", etc.
1522         + generate misc/*.pc with "all" rule, as done for "sources" rule
1523           (report by Jeffrey Walton).
1524
1525 20171230
1526         + build-fix for ncurses-examples with Fedora27, adding check for
1527           reset_color_pairs() -- not yet in Fedora's package.
1528         + consistently add $CFLAGS to $MK_SHARED_LIB symbol in configure
1529           script when the latter happens to use the C compiler rather than
1530           directly using the loader (report by Jeffrey Walton).
1531         + set ABI for upcoming 6.1 release in "*.map" files.  While there are
1532           some remaining internals to apply, no ABI-related changes are
1533           anticipated.
1534         + add configure --with-config-suffix option to work around filename
1535           conflict with Redhat packages versus test-packages.
1536
1537 20171223
1538         + modify ncurses-examples to quiet const-warnings when building with
1539           PDCurses.
1540         + modify toe to not exit if unable to read a terminal description,
1541           e.g., if there is a permission problem.
1542         + minor fix for progs/toe.c, using _nc_free_termtype2.
1543         + assign 0 to pointer in _nc_tgetent_leak() after freeing it. Also
1544           avoid reusing pointer from previous successful call to tgetent
1545           if the latest call is unsuccessful (patch by Michael Schroeder,
1546           OpenSuSE #1070450).
1547         + minor fix for test/tracemunch, initialize $awaiting variable.
1548
1549 20171216
1550         + repair template in test/package/ncurses-examples.spec (cf: 20171111).
1551         + improve tic's warning about the number of parameters tparm might use
1552           for u1-u9 by making a special case for u6.
1553         + improve curs_attr.3x discussion of color pairs.
1554
1555 20171209
1556         + modify misc/ncurses-config.in to make output with --includedir
1557           consistent with --cflags, i.e., when --disable-overwrite option was
1558           configured the output should show the subdirectory where headers
1559           are.
1560         + modify MKlib_gen.sh to suppress macros when calling an "implemented"
1561           function in link_test.c
1562         + updated ftp-url used in test-packages, etc.
1563         + modify order of -pie/-shared options in configure script in case
1564           LDFLAGS uses "-pie", working around a defect or limitation in the GNU
1565           linker (prompted by patch by Yogesh Prasad, forwarded by Jay Shah).
1566         + add entry in man_db.renames for user_caps.5
1567
1568 20171125
1569         + modify MKlib_gen.sh to avoid tracing result from getstr/getnstr
1570           before initialized.
1571         + add "-a" aspect-ratio option to picsmap.
1572         + add configure check for default path of rgb.txt, used in picsmap.
1573         + modify _nc_write_entry() to truncate too-long filename (report by
1574           Hosein Askari, Debian #882620).
1575         + build-fix for ncurses-examples with NetBSD curses:
1576           + it lacks the use_env() function.
1577           + it lacks libpanel; a recent change used the wrong ifdef symbol.
1578         + add a macro for is_linetouched() and adjust the function's return
1579           value to make it possible for most applications to check for an
1580           error-return (report by Midolikawa H).
1581         + additional manpage cleanup.
1582         + update config.guess, config.sub from
1583                 http://git.savannah.gnu.org/cgit/config.git
1584
1585 20171118
1586         + add a note to curs_addch.3x on portability.
1587         + add a note to curs_pad.3x on the origin and portability of pads.
1588         + improve manpage description of getattrs (report by Midolikawa H).
1589         + improve manpage macros (prompted by discussion in Debian #880551.
1590         + reviewed test-programs using KEY_RESIZE, made fixes to test/worm.c
1591         + add a "-d" option to picsmap for default-colors.
1592         + modify old terminology entry and a few other terminal emulators to
1593           account for xon -TD
1594         + correct sgr string for tmux, which used screen's "standout" code
1595           rather than the standard code (patch by Roman Kagan)
1596         + correct sgr/sgr0 strings in a few other cases reported by tic, making
1597           those correspond to the non-sgr settings where they differ, but
1598           otherwise use ECMA-48 consistently:
1599           jaixterm, aixterm, att5420_2, att4424, att500, decansi, d410-7b,
1600           dm80, hpterm, emu-220, hp2, iTerm2.app, mterm-ansi, ncrvt100an,
1601           st-0.7, vi603, vwmterm -TD
1602         + build-fix for diagnostics warning in lib_mouse.c for pre-5.0 versions
1603           of gcc which did not recognize the diagnostic "push" pragma (patch by
1604           Vassili Courzakis).
1605
1606 20171111
1607         + add "op" to xterm+256setaf -TD
1608         + reviewed terminology 1.0.0 -TD
1609         + reviewed st 0.7 -TD
1610         + suppress debug-package for ncurses-examples rpm build.
1611
1612 20171104
1613         + check for interrupt in color-pair initialization of dots_curses.c,
1614           dots_xcurses.c
1615         + add z/Z zoom feature to test/ncurses.c C/c screens.
1616         + add '<' and '>' commands to test/ncurses.c S/s screens, to better
1617           test off-by-ones in the overlap/copywin functions.
1618
1619 20171028
1620         + improve man/curs_inwstr.3x, correct end-logic for lib_inwstr.c
1621           (report by Midolikawa H).
1622         + fix typo in a few places for "improvements" (patch by Sven Joachim).
1623         + clear the other half of a double-width character on which a line
1624           drawing character is drawn.
1625         + make test/ncurses.c "s" test easier to understand which subtests are
1626           available; add a "S" wide-character overlap test-screen.
1627         + modify test/ncurses.c C/c tests to allow for extended color pairs.
1628         + add endwin() call in error-returns from test/ncurses.c omitted in
1629           recent redesign of its menu (cf: 20170923).
1630         + improve install of hashed-db by removing the ".db" file as done for
1631           directory-tree terminal databases.
1632         + repair a few overlooked items in include/ncurses_defs from recent
1633           port/refactoring of test-programs (cf: 20170909).
1634         + add test/padview.c, to compare pads with direct updates in view.c
1635
1636 20171021
1637         + modify test/view.c to expand tabs using the ncurses library rather
1638           than in the test-program.
1639         + remove very old SIGWINCH example in test/view.c, just use KEY_RESIZE.
1640         + add -T, -e, -f -m options to "dots" test-programs.
1641         + fix a few typos in usage-messages for test-programs.
1642
1643 20171014
1644         + minor cleanup to test/view.c:
1645           + eliminate "-n" option by simply reading the whole file.
1646           + implement page up/down commands.
1647         + add check in tput for init/reset operands to ensure those use a
1648           terminal.
1649         + improve manual pages which discuss chtype, cchar_t types and the
1650           attribute values which can be stored in those types.
1651         + correct array-index when parsing "-T" command-line option in tabs
1652           program.
1653         + modify demo_new_pair.c to pass extended pairs to setcchar().
1654         + add test/dots_xcurses.c to illustrate a different approach used for
1655           extended colors which can be contrasted with dots_curses.c.
1656         + add a check in tic to note when a description uses non-mandatory
1657           delays without xon_xoff.  This is not an error, but some descriptions
1658           for a terminal emulator may use the combination incorrectly.
1659
1660 20171007
1661         + modify "-T" option of clear and tput to call use_tioctl() to obtain
1662           the operating system's notion of the screensize if possible.
1663         + review/repair some exit-codes for tput, making usage-message exit
1664           with 2 rather than 1, and a failure to open terminal 4+errno.
1665         + amend check in tput, tabs and clear to allow those to use the
1666           database-only features in cron if a -T option gives a suitable
1667           terminal name (report by Lauri Tirkkonen).
1668         + correct an ifdef in test/ncurses.c for systems with soft-keys but
1669           not slk_color().
1670         + regenerate man-html documentation.
1671
1672 20170930
1673         + fix a symbol conflict that made ncurses.c C/c menu not work with
1674           Solaris xpg4 curses.
1675         + add refresh() call to dots_mvcur.c, needed to use mvcur() with
1676           Solaris xpg4 curses after calling newterm().
1677         + minor fixes for configure script from work on ncurses-examples and
1678           tin.
1679         + improve animation in test/xmas.c by adding a time-delay in blinkit().
1680         + modify several test programs to reflect that ncurses honors existing
1681           signal handlers in initscr(), while other implementations do not.
1682         + modify bs.c to make it easier to quit.
1683         + change ncurses-examples to use attr_t vs chtype to follow X/Open
1684           documentation more closely since Solaris xpg4-curses uses different
1685           values for WA_xxx vs A_xxx that rely on attr_t being an unsigned
1686           short.  Tru64 aka OSF1, HPUX, AIX did as ncurses does, equating the
1687           two sets.
1688
1689 20170923
1690         + modify menu for test/ncurses.c to fit on 24-line screen.
1691         + build-fix for configure --with-caps=uwin
1692         + add options to test_arrays.c, for selecting termcap vs terminfo, etc.
1693
1694 20170916
1695         + minor fix to test/filter.c to avoid clearing the command in one case.
1696         + modify filter() to discard clr_eos if back_color_erase is set.
1697
1698 20170909
1699         + improve wide-character implementation of myADDNSTR() in frm_driver.c,
1700           which was inconsistent with the normal implementation.
1701         + save/restore cursor position in Undo_Justification(), matching
1702           behavior of Buffer_To_Window() (report by Leon Winter).
1703         + modify test/knight to provide the "slow" solution for small screens
1704           using "R", noting that Warnsdorf's method is easily done with "a".
1705         + modify several test-programs which call use_default_colors() to
1706           consistently do this only if "-d" option is given.
1707         + additional changes to test with non-standard variants of curses:
1708           + modify a loop limit in firework.c to work around absence of limit
1709             checks in some libraries.
1710           + fill the last row of a window with "?" in firstlast if waddch does
1711             not return ERR on the lower-right corner.
1712         + add checks in test/configure for some functions not in 4.3BSD curses.
1713         + fix a regression in test/configure (cf: 20170826).
1714
1715 20170902
1716         + amend change for endwin-state for better consistency with the older
1717           logic (report/patch by Jeb Rosen, cf: 20170722).
1718         + modify check in fmt_entry() to handle a cancelled reset string
1719           (Debian #873746).  Make similar fixes in other parts of dump_entry.c
1720           and tput.c
1721
1722 20170827
1723         + fix a bug in repeat_char logic (cf: 20170729, report by Chris Clayton).
1724
1725 20170826
1726         + fixes for "iterm2" (report by Leonardo Brondani Schenkel) -TD
1727         + corrected a warning from tic about keys which are the same, to skip
1728           over missing/cancelled values.
1729         + add check in tic for unnecessary use of "2" to denote a shifted
1730           special key.
1731         + improve checks in trim_sgr0, comp_parse.c and parse_entry.c, for
1732           cancelled string capabilities.
1733         + add check in _nc_parse_entry() for invalid entry name, setting the
1734           name to "invalid" to avoid problems storing entries.
1735         + add/improve checks in tic's parser to address invalid input
1736           + add a check in comp_scan.c to handle the special case where a
1737             nontext file ending with a NUL rather than newline is given to tic
1738             as input (Redhat #1484274).
1739           + allow for cancelled capabilities in _nc_save_str (Redhat #1484276).
1740           + add validity checks for "use=" target in _nc_parse_entry (Redhat
1741             #1484284).
1742           + check for invalid strings in postprocess_termcap (Redhat #1484285)
1743           + reset secondary pointers on EOF in next_char() (Redhat #1484287).
1744           + guard _nc_safe_strcpy() and _nc_safe_strcat() against calls using
1745             cancelled strings (Redhat #1484291).
1746         + correct typo in curs_memleaks.3x (Sven Joachim).
1747         + improve test/configure checks for some curses variants not based on
1748           X/Open Curses.
1749         + add options for test/configure to disable checks for form, menu and
1750           panel libraries.
1751
1752 20170819
1753         + update "iterm" entry -TD
1754         + add "iterm2" entry (report by Leonardo Brondani Schenkel) -TD
1755         + regenerate llib-* files.
1756         + regenerate HTML manpages.
1757         + improve picsmap test-program:
1758           + reduce memory used for tsearch
1759           + add report in log file showing cumulative color coverage.
1760         + add -x option to clear/tput to make the E3 extension optional
1761           (cf: 20130622).
1762         + add options -T and -V to clear command for compatibility with tput.
1763         + add usage message to clear command (Debian #371855).
1764         + improve usage messages for tset and tput.
1765         + minor fixes to "RGB" extension and reset_color_pairs().
1766
1767 20170812
1768         + improve description of -R option in infocmp manual page (report by
1769           Stephane Chazelas).
1770         + add reset_color_pairs() function.
1771         + add user_caps.5 manual page to document the terminfo extensions used
1772           by ncurses.
1773         + improve build scripts, using SIGQUIT vs SIGTRAP; add other configure
1774           script fixes from work on xterm, lynx and tack.
1775         + modify install-rule for ncurses-examples to put the data files in
1776           /usr/share/ncurses-examples
1777         + improve tracemunch, by changing address-parameters of add_wch(),
1778           color_content() and pair_content() to dummy parameters.
1779         + minor optimization to _nc_change_pair, to return quickly when the
1780           current screen is marked for clearing.
1781         + in-progress changes to improve performance of test/picsmap.c for
1782           loading image files.
1783         + modify allocation for SCREEN's color-pair table to start small, grow
1784           on demand up to the existing limit.
1785         + add "RGB" extension capability for direct-color support, use this to
1786           improve color_content().
1787         + improve picsmap test-program:
1788           + if no palette file is needed, attempt to load one based on $TERM,
1789             checking first in the current directory, then by adding ".dat"
1790             suffix, and finally in the data-directory, e.g.,
1791             /usr/share/ncurses-examples
1792           + add "-l" option for logging
1793           + add "-d" option for debugging
1794           + add "-s" option for stepping automatically through list of images,
1795             with time delay.
1796           + use tsearch to improve time for loading color table for images.
1797         + update config.guess, config.sub from
1798                 http://git.savannah.gnu.org/cgit/config.git
1799
1800 20170729
1801         + update interix entry using tack and SFU on Windows 7 Ultimate -TD
1802         + use ^? for kdch1 in interix (reported by Jonathan de Boyne Pollard)
1803         + add "rep" to xterm-new, available since 1997/01/26 -TD
1804         + move SGR 24 and 27 from vte-2014 to vte-2012 (request by Alain
1805           Williams) -TD
1806         + add a check in newline_forces_scroll() in case a program moves the
1807           cursor outside scrolling margins (report by Robert King).
1808         + improve _nc_tparm_analyze, using that to extend the checks made by
1809           tic for reporting inconsistencies between the expected number of
1810           parameters for a capability and the actual.
1811         + amend handling of repeat_char capability in EmitRange (adapted from
1812           report/patch by Dick Wesseling):
1813           + translate the character to the alternate character set when the
1814             alternate character set is enabled.
1815           + do not use repeat_char for characters past 255.
1816         + document "_nc_free_tinfo" in manual page, because it could be used in
1817           tack for memory-leak checking.
1818         + add "--without-tack" configure option to refine "--with-progs"
1819           configure option.  Normally tack is no longer built in-tree, but
1820           a few packagers combine it during the build.  If term_entry.h is
1821           installed, there is no advantage to in-tree builds.
1822         + adjust configure-script to define HAVE_CURSES_DATA_BOOLNAMES symbol
1823           needed for tack 1.08 when built in-tree.  Rather than relying upon
1824           internal "_nc_" functions, tack now uses the boolean, number and
1825           string capability name-arrays provided by ncurses and SVr4 Unix
1826           curses.  It still uses term_entry.h for the definitions of the
1827           extended capability arrays.
1828         + add an overlooked null-pointer check in mvcur changes from 20170722
1829
1830 20170722
1831         + improve test-packages for ncurses-examples and AdaCurses for lintian
1832         + modify logic for endwin-state to be able to detect the case where
1833           the screen was never initialized, using that to trigger a flush of
1834           ncurses' buffer for mvcur, e.g., in test/dots_mvcur.c for the
1835           term-driver configuration.
1836         + add dependency upon ncurses_cfg.h to a few other internal header
1837           files to allow each to be compiled separately.
1838         + add dependency upon ncurses_cfg.h to tic's header-files; any program
1839           using tic-library will have to supply this file.  Legacy tack
1840           versions supply this file; ongoing tack development has dropped the
1841           dependency upon tic-library and new releases will not be affected.
1842
1843 20170715
1844         + modify command-line parameters for "convert" used in picsmap to work
1845           with ImageMagick 6.8 and newer.
1846         + fix build-problem with tack and ABI-5 (Debian #868328).
1847         + repair termcap-format from tic/infocmp broken in 20170701 fixes
1848           (Debian #868266).
1849         + reformat terminfo.src with 20170513 updates.
1850         + improve test-packages to address lintian warnings.
1851
1852 20170708
1853         + add a note to tic manual page about -W versus -f options.
1854         + correct a limit-check in fixes from 20170701 (report by Sven Joachim).
1855
1856 20170701
1857         + modify update_getenv() in db_iterator.c to ensure that environment
1858           variables which are not initially set will be checked later if an
1859           application happens to set them (patch by Guillaume Maudoux).
1860         + remove initialization-check for calling napms() in the term-driver
1861           configuration; none is needed.
1862         + add help-screen to test/test_getstr.c and test/test_get_wstr.c
1863         + improve compatibility between different configurations of new_prescr,
1864           fixing a case with threaded code and term-driver where c++/demo did
1865           not work (cf: 20160213).
1866         + the fixes for Redhat #1464685 obscured a problem subsequently
1867           reported in Redhat #1464687; the given test-case was no longer
1868           reproducible.  Testing without the fixes for the earlier reports
1869           showed a problem with buffer overflow in dump_entry.c, which is
1870           addressed by reducing the use of a fixed-size buffer.
1871         + add/improve checks in tic's parser to address invalid input
1872           (Redhat #1464684, #1464685, #1464686, #1464691).
1873           + alloc_entry.c, add a check for a null-pointer.
1874           + parse_entry.c, add several checks for valid pointers as well as
1875             one check to ensure that a single character on a line is not
1876             treated as the 2-character termcap short-name.
1877         + fix a memory leak in delscreen() (report by Bai Junq).
1878         + improve tracemunch, showing thread identifiers as names.
1879         + fix a use-after-free in NCursesMenu::~NCursesMenu()
1880         + further amend incorrect calls for memory-leaks from 20170617 changes
1881           (report by Allen Hewes).
1882
1883 20170624
1884         + modify c++/etip.h.in to accommodate deprecation of throw() and
1885           throws() in c++17 (prompted by patch by Romain Geissler).
1886         + remove some incorrect calls for memory-leaks from 20170617 changes
1887           (report by Allen Hewes).
1888         + add test-programs for termattrs and term_attrs.
1889         + modify _nc_outc_wrapper to use the standard output if the screen was
1890           not initialized, rather than returning an error.
1891         + improve checks for low-level terminfo functions when the terminal
1892           has not been initialized (Redhat #1345963).
1893         + modify make_hash to allow building with address-sanitizer,
1894           assuming that --disable-leaks is configured.
1895         + amend changes for number_format() in 20170506 to avoid undefined
1896           behavior when shifting (patch by Emanuele Giaquinta).
1897
1898 20170617
1899         + fill in some places where TERMTYPE2 vs TERMTYPE was not used
1900           (report by Allen Hewes).
1901         + use ExitTerminfo() internally in error-exits for ncurses' setupterm
1902           to help with leak checking.
1903         + use ExitProgram() in error-exit from initscr() to help with leak
1904           checking.
1905         + review test-programs, adding checks for cases where the terminal
1906           cannot be initialized.
1907
1908 20170610
1909         + add option "-xp" to picsmap.c, to use init_extended_pair().
1910         + make simple performance fixes for picsmap.c
1911         + improve aspect ratio of images read from "convert" in picsmap.c
1912
1913 20170603
1914         + add option to picsmap to use color-palette files, e.g., for mapping
1915           to xterm-256color.
1916         + move the data in SCREEN used for the alloc_pair() function to the
1917           end, to restore compatibility between ncurses/ncursesw libtinfo
1918           (report/patch by Miroslav Lichvar).
1919         + add build-time utility "report_offsets" to help show when the various
1920           configurations of tinfo library are compatible or not.
1921
1922 20170527
1923         + improved test/picsmap.c:
1924           + lookup named colors for xpm files in rgb.txt
1925           + accept blanks in color-keys for xpm files.
1926           + if neither xbm/xpm work, try "convert", which may be available.
1927
1928 20170520
1929         + modify test/picsmap.c to read xpm files.
1930         + modify package/debian/* to create documentation packages, so the
1931           related files can be checked with lintian.
1932         + fix some typos in manpages (report/patch by Sven Joachim).
1933
1934 20170513
1935         + add test/picsmap.c to fill in some testing issues not met by dots.
1936           The initial version reads X bitmap (".xbm") files.
1937         + repair logic which forces a repaint where a color-pair's content is
1938           changed (cf: 20170311).
1939         + improve tracemunch, showing screenXX pointers as names.
1940
1941 20170506
1942         + modify tic/infocmp display of numeric values to use hexadecimal when
1943           they are "close" to a power of two, making the result more readable.
1944         + improve discussion of portability in curs_mouse.3x
1945         + change line-length for generated html/manpages to 78 columns from 65.
1946         + improve discussion of line-drawing characters in curs_add_wch.3x
1947           (prompted by discussion with Lorinczy Zsigmond).
1948         + cleanup formatting of hackguide.html and ncurses-intro.html
1949         + add examples for WACS_D_PLUS and WACS_T_PLUS to test/ncurses.c
1950
1951 20170429
1952         + corrected a case where $with_gpm was set to "maybe" after CF_WITH_GPM,
1953           overlooked in 20160528 fixes (report by Alexandre Bury).
1954         + improve a couple of test-program's help-messages.
1955         + corrected loop in rain.c from 20170415 changes.
1956         + modify winnstr and winchnstr to return error if the output pointer is
1957           null, as well as adding a null pointer check of the window pointer
1958           for better compatibility with other implementations.
1959         + improve discussion of NetBSD curses in scr_dump.5
1960         + modify LIMIT_TYPED macro in new_pair.h to avoid changing sign of the
1961           value to be limited (reports by Darby Payne, Rob Boudreau).
1962         + update config.guess, config.sub from
1963                 http://git.savannah.gnu.org/cgit/config.git
1964
1965 20170422
1966         + build-fix for termcap-configuration (report by Chi-Hsuan Yen).
1967         + improve terminfo manual page discussion of control- and graphics-
1968           characters.
1969         + remove tic warning about "^?" in string capabilities, which was
1970           marked as an extension (cf: 20000610, 20110820); however all Unix
1971           implementations support this and X/Open Curses does not address it.
1972           On the other hand, termcap never did support this feature.
1973         + correct missing comma-separator between string capabilities in
1974           icl6402 and m2-nam -TD
1975         + restore rmir/smir in ansi+idc to better match original ansiterm+idc,
1976           add alias ansiterm (report by Robert King).
1977         + amend an old check for ambiguous use of "ma" in terminfo versus
1978           a termcap use, if the capability is cancelled to treat it as number.
1979         + correct a case in _nc_captoinfo() which read "%%" and emitted "%".
1980         + modify sscanf calls in _nc_infotocap() for patterns "%{number}%+%c"
1981           and "%'char'%+%c" to check that the final character is really 'c',
1982           avoiding a case in icl6404 which cannot be converted to termcap.
1983         + in _nc_infotocap(), add a check to ensure that terminfo "^?" is not
1984           written to termcap, because the BSDs did not implement that.
1985         + in _nc_tic_expand() and _nc_infotocap(), improve string-length check
1986           when deciding whether to use "^X" or "\xxx" format for control
1987           characters, to make the output of tic/infocmp more predictable.
1988         + limit termcap "%d" width to 2 digits on input, and use "%2" in
1989           preference to "%02" on output.
1990         + correct terminfo/termcap conversion of "%02" and "%03" into "%2" and
1991           "%3"; the result repeated the last character.
1992         + add man/scr_dump.5 to document screen-dump format.
1993
1994 20170415
1995         + modify several test programs to use new popup_msgs, adapted from
1996           help-screen used in test/edit_field.c
1997         + drop two symbols obsoleted in 2004: _nc_check_termtype, and
1998           _nc_resolve_uses
1999         + fix some old copyright dates (cf: 20031025).
2000         + build-fixes for test/savescreen.c to work with AIX and HPUX.
2001         + minor fix to configure script, adding a backslash/continuation.
2002         + extend TERMINAL structure for ABI 6 to store numbers internally as
2003           integers rather than short, by adding new data for this purpose.
2004         + more fixes for minor memory-leaks in test-programs.
2005
2006 20170408
2007         + change logic in wins_nwstr() to avoid addressing data past the output
2008           of mbstowcs().
2009         + correct a call to setcchar() in Data_Entry_w() from 20131207 changes.
2010         + fix minor memory-leaks in test-programs.
2011         + further improve ifdef in term_entry.h for internal definitions not
2012           used by tack.
2013
2014 20170401
2015         + minor fixes for vt100+4bsd, e.g., delay in sgr for consistency -TD
2016         + add smso for env230, to match sgr -TD
2017         + remove p7/protect from sgr in fbterm -TD
2018         + drop setf/setb from fbterm; setaf/setab are enough -TD
2019         + make xterm-pcolor sgr consistent with other capabilities -TD
2020         + add rmxx/smxx ECMA-48 strikeout extension to tmux and xterm-basic
2021           (discussion with Nicholas Marriott)
2022         + add test-programs sp_tinfo and extended_color
2023         + modify no-leaks code for lib_cur_term.c to account for the tgetent()
2024           cache.
2025         + modify setupterm() to save original tty-modes so that erasechar()
2026           works as expected.  Also modify _nc_setupscreen() to avoid redundant
2027           calls to get original tty-modes.
2028         + modify set_curterm() to update ttytype[] data used by longname().
2029         + modify wattr_set() and wattr_get() to return ERR if win-parameter is
2030           null, as documented.
2031         + improve cast used for null-pointer checks in header macros, to
2032           reduce compiler warnings.
2033         + modify several functions, using the reserved "opts" parameter to pass
2034           color- and pair-values larger than 16-bits:
2035           + getcchar(), setcchar(), slk_attr_set(), vid_puts(), wattr_get(),
2036             wattr_set(), wchgat(), wcolor_set().
2037           + Other functions call these with the corresponding altered behavior,
2038             including chgat(), mvchgat(), mvwchgat(), slk_color_on(),
2039             slk_color_off(), vid_attr().
2040         + add new functions for manipulating color- and pair-values larger
2041           than 16-bits.  These are extended_color_content(),
2042           extended_pair_content(), extended_slk_color(), init_extended_color(),
2043           init_extended_pair(), and the corresponding sp-funcs.
2044
2045 20170325
2046         + fix a memory leak in the window-list when creating multiple screens
2047           (reports by Andres Martinelli, Debian #783486).
2048         + reviewed calls from link_test.c, added a few more null-pointer
2049           checks.
2050         + add a null-pointer check in ungetmouse, in case mousemask was not
2051           called (report by "Kau").
2052         + updated curs_sp_funcs.3x for new functions.
2053
2054 20170318
2055         + change TERMINAL structure in term.h to make it opaque.  Some
2056           applications misuse its members, e.g., directly modifying it
2057           rather than using def_prog_mode().
2058         + modify utility headers such as tic.h to make it clearer which are
2059           externals that are used by tack.
2060         + improve curs_slk.3x in particular its discussion of portability.
2061         + fix cut/paste in legacy_encoding.3x
2062         + add prototype for find_pair() to new_pair.3x (report by Branden
2063           Robinson).
2064         + fix a couple of broken links in generated man-html documentation.
2065         + regenerate man-html documentation.
2066
2067 20170311
2068         + modify vt100 rs2 string to reset vt52 mode and scrolling regions
2069           (report/analysis by Robert King) -TD
2070         + add vt100+4bsd building block, use that for older terminals rather
2071           than "vt100" which is now mostly used as a building block for
2072           terminal emulators -TD
2073         + correct a few spelling errors in terminfo.src comments -TD
2074         + add fbterm -TD
2075         + fix a typo in ncurses.c test_attr legend (patch by Petr Vanek).
2076         + changed internal colorpair_t to a struct, eliminating an internal
2077           8-bit limit on colors
2078         + add ncurses/new_pair.h
2079         + add ncurses/base/new_pair.c with alloc_pair(), find_pair() and
2080           free_pair() functions
2081         + add test/demo_new_pair.c
2082
2083 20170304
2084         + improve terminfo manual description of terminfo syntax.
2085         + clarify the use of wint_t vs wchar_t in curs_get_wstr.3x
2086         + improve description of endwin() in manual.
2087         + modify setcchar() and getcchar() to treat negative color-pair as an
2088           error.
2089         + fix a typo in include/hashed_db.h (Andre Sa).
2090
2091 20170225
2092         + fixes for CF_CC_ENV_FLAGS (report by Ross Burton).
2093
2094 20170218
2095         + fix several formatting issues with manual pages.
2096         + correct read of terminfo entry in which all strings are absent or
2097           explicitly cancelled.  Before this fix, the result was that all were
2098           treated as only absent.
2099         + modify infocmp to suppress mixture of absent/cancelled capabilities
2100           that would only show as "NULL, NULL", unless the -q option is used,
2101           e.g., to show "-, @" or "@, -".
2102
2103 20170212
2104         + build-fixes for PGI compilers (report by Adam J. Stewart)
2105           + accept whitespace in sed expression for generating expanded.c
2106           + modify configure check that g++ compiler warnings are not used.
2107           + add configure check for -fPIC option needed for shared libraries.
2108         + let configure --disable-ext-funcs override the default for the
2109           --enable-sp-funcs option.
2110         + mark some structs in form/menu/panel libraries as potentially opaque
2111           without modifying API/ABI.
2112         + add configure option --enable-opaque-curses for ncurses library and
2113           similar options for the other libraries.
2114
2115 20170204
2116         + trim newlines, tabs and escaped newlines from terminfo "paths" passed
2117           to db-iterator.
2118         + ignore zero-length files in db-iterator; these are useful for
2119           instance to suppress "$HOME/.terminfo" when not wanted.
2120         + amended "b64:" encoder to work with the terminfo reader.
2121         + modify terminfo reader to accept "b64:" format using RFC-3548 in
2122           as well as RFC-4648 url/filename-safe format.
2123         + modify terminfo reader to accept "hex:" format as generated by
2124           "infocmp -0qQ1" (cf: 20150905).
2125         + adjust authors comment to reflect drop below 1% for SV.
2126
2127 20170128
2128         + minor comment-fixes to help automate links to bug-urls -TD
2129         + add dvtm, dvtm-256color -TD
2130         + add settings corresponding to xterm-keys option to tmux entry to
2131           reflect upcoming change to make that option "on" by default
2132           (patch by Nicholas Marriott).
2133         + uncancel Ms in tmux entry (Harry Gindi, Nicholas Marriott).
2134         + add dumb-emacs-ansi -TD
2135
2136 20170121
2137         + improve discussion of early history of tput program.
2138         + incorporate A_COLOR mask into COLOR_PAIR(), in case user application
2139           provides an out-of-range pair number (report by Elijah Stone).
2140         + clarify description in tput manual page regarding support for
2141           termcap names (prompted by FreeBSD #214709).
2142         + remove a restriction in tput's support for termcap names which
2143           omitted capabilities normally not shown in termcap translations
2144           (cf: 990123).
2145         + modify configure script for clang as used on FreeBSD, to work around
2146           clang's differences in exit codes vs gcc.
2147
2148 20170114
2149         + improve discussion of early history of tset/reset programs.
2150         + clarify in manual pages that the optional verbose option level is
2151           available only when ncurses is configured for tracing.
2152         + amend change from 20161231 to avoid writing traces to the standard
2153           error after initializing the trace feature using the environment
2154           variable.
2155
2156 20170107
2157         + amend changes for tput to reset tty modes to "sane" if the program
2158           is run as "reset", like tset.  Likewise, ensure that tset sends
2159           either reset- or init-strings.
2160         + improve manual page descriptions of tput init/reset and tset/reset,
2161           to make it easier to see how they are similar and different.
2162         + move a static result from key_name() to _nc_globals
2163         + modify _nc_get_screensize to allow for use_env() and use_tioctl()
2164           state to be per-screen when sp-funcs are configured, better matching
2165           the behavior when using the term-driver configuration.
2166         + improve cross-references in manual pages for often used functions
2167         + move SCREEN field for use_tioctl() data before the ncursesw fields,
2168           and limit that to the sp-funcs configuration to improve termlib
2169           compatibility (cf:  20120714).
2170         + correct order of initialization for traces in use_env() and
2171           use_tioctl() versus first trace calls.
2172
2173 20161231
2174         + fix errata for ncurses-howto (report by Damien Ruscoe).
2175         + fix a few places in configure/build scripts where DESTDIR and rpath
2176           were combined (report by Thomas Klausner).
2177         + merge current st description (report by Harry Gindi) -TD
2178         + modify flash capability for linux and wyse entries to put the delay
2179           between the reverse/normal escapes rather than after -TD
2180         + modify program tabs to pass the actual tty file descriptor to
2181           setupterm rather than the standard output, making padding work
2182           consistently.
2183         + explain in clear's manual page that it writes to stdout.
2184         + add special case for verbose debugging traces of command-line
2185           utilities which write to stderr (cf: 20161126).
2186         + remove a trace with literal escapes from skip_DECSCNM(), added in
2187           20161203.
2188         + update config.guess, config.sub from
2189                 http://git.savannah.gnu.org/cgit/config.git
2190
2191 20161224
2192         + correct parameters for copywin call in _nc_Synchronize_Attributes()
2193           (patch by Leon Winter).
2194         + improve color-handling section in terminfo manual page (prompted by
2195           patch by Mihail Konev).
2196         + modify programs clear, tput and tset to pass the actual tty file
2197           descriptor to setupterm rather than the standard output, making
2198           padding work.
2199
2200 20161217
2201         + add tput-colorcube demo script.
2202         + add -r and -s options to tput-initc demo, to match usage in xterm.
2203         + flush the standard output in _nc_flush for the case where SP is zero,
2204           e.g., when called via putp.  This fixes a scenario where "tput flash"
2205           did not work after changes in 20130112.
2206
2207 20161210
2208         + add configure script option --disable-wattr-macros for use in cases
2209           where one wants to use the same headers for ncurses5/ncurses6
2210           development, by suppressing the wattr* macros which differ due to
2211           the introduction of extended colors (prompted by comments in
2212           Debian #230990, Redhat #1270534).
2213         + add test/tput-initc to demonstrate tput used to initialize palette
2214           from a data file.
2215         + modify test/xterm*.dat to use the newer color4/color12 values.
2216
2217 20161203
2218         + improve discussion of field validation in form_driver.3x manual page.
2219         + update curs_trace.3x manual page.
2220
2221 20161126
2222         + modify linux-16color to not mask dim, standout or reverse with the
2223           ncv capability -TD
2224         + add 0.1sec mandatory delay to flash capabilities using the VT100
2225           reverse-video control -TD
2226         + omit selection of ISO-8859-1 for G0 in enacs capability from linux2.6
2227           entry, to avoid conflict with the user-defined mapping.  The reset
2228           feature will use ISO-8859-1 in any case (Mikulas Patocka).
2229         + improve check in tic for delays by also warning about beep/flash
2230           when a delay is not embedded, or if those use the VT100 reverse
2231           video escape without using a delay.
2232         + minor fix for syntax-check of delays from 20161119 changes.
2233         + modify trace() to avoid overwriting existing file (report by Maor
2234           Shwartz).
2235
2236 20161119
2237         + add check in tic for some syntax errors of delays, as well as use of
2238           proportional delays for non-line capabilities.
2239         + document history of the clear program and the E3 extension, prompted
2240           by various discussions including
2241           http://unix.stackexchange.com/questions/87469/clearing-the-old-scrollback-buffer
2242
2243 20161112
2244         + improve -W option in tic/infocmp:
2245           + correct order of size-adjustments in wrapped lines
2246           + if -f option splits line, do not further split it with -W
2247           + begin a new line when adding "use=" after a wrapped line
2248
2249 20161105
2250         + fix typo in man/terminfo.tail (Alain Williams).
2251         + correct program-name in adacurses6-config.1 manual page.
2252
2253 20161029
2254         + add new function "unfocus_current_field" (Leon Winter)
2255
2256 20161022
2257         + modify tset -w (and tput reset) to update the program's copy of the
2258           screensize if it was already set in the system, to improve tabstop
2259           setting which relies upon knowing the actual screensize.
2260         + add functionality of tset -w to tput, like the "-c" feature this is
2261           not optional in tput.
2262         + add "clear" as a possible link/alias to tput.
2263         + improve tput's check for being called as "init" or "reset" to allow
2264           for transformed names.
2265         + split-out the "clear" function from progs/clear.c, share with
2266           tput to get the same behavior, e.g., the E3 extension.
2267
2268 20161015
2269         + amend internal use of tputs to consistently use the number of lines
2270           affected, e.g., for insert/delete character operations.  While
2271           merging terminfo source early in 1995, several descriptions used the
2272           "*" proportional delay for these operations, prompting a change in
2273           doupdate.
2274         + regenerate llib-* files.
2275         + regenerate HTML manpages.
2276         + fix several formatting issues with manual pages.
2277
2278 20161008
2279         + adjust size in infocmp/tic to work with strlcpy.
2280         + fix configure script to record when strlcat is found on OpenBSD.
2281         + build-fix for "recent" OpenBSD vs baudrate.
2282
2283 20161001
2284         + add -W option to tic/infocmp to force long strings to wrap.  This is
2285           in addition to the -w option which attempts to fit capabilities into
2286           a given line-length.
2287         + add linux-m1 minitel entries (patch by Alexandre Montaron).
2288         + correct rs2 string for vt100-nam -TD
2289
2290 20160924
2291         + modify _nc_tic_expand to escape comma if it immediately follows a
2292           percent sign, to work with minitel change.
2293         + updated minitel and viewdata descriptions (Alexandre Montaron).
2294
2295 20160917
2296         + build-fix for gnat6, which unhelpfully attempts to compile C files.
2297         + fix typo in 20160910 changes (Debian #837892, patch by Sven Joachim).
2298
2299 20160910
2300         + trim dead code ifdef'd with HIDE_EINTR since 970830 (discussion with
2301           Leon Winter).
2302         + trim some obsolete/incorrect wording about EINTR from wgetch manual
2303           page (patch by Leon Winter).
2304         + really correct 20100515 change (patch by Rich Coe).
2305         + add "--enable-string-hacks" option to test/configure
2306         + completed string-hacks for "sprintf", etc., including test-programs.
2307         + make "--enable-string-hacks" work with Debian by checking for the
2308           "bsd" library and its associated "<bsd/string.h>" header.
2309
2310 20160903
2311         + correct 20100515 change for weak signals versus sigprocmask (report
2312           by Rich Coe).
2313         + modify misc/Makefile.in to work around OpenBSD "make" which unlike
2314           all other versions of "make" does not recognize continuation lines
2315           of comments.
2316         + amend the last change to CF_C_ENV_FLAGS to move only the
2317           preprocessor, optimization and warning flags to CPPFLAGS and CFLAGS,
2318           leaving the residue in CC.  That happens to work for gcc's various
2319           "model" options, but may require tuning for other compilers (report
2320           by Sven Joachim).
2321
2322 20160827
2323         + add "v" menu entry to test/ncurses.c to show baudrate and other
2324           values.
2325         + add "newer" baudrate symbols from Linux and FreeBSD to progs/tset.c,
2326           lib_baudrate.c
2327         + modify CF_XOPEN_SOURCE macro:
2328           + add "uclinux" to case for "linux" (patch by Yann E. Morin)
2329           + modify _GNU_SOURCE for cygwin headers, tested with cygwin 2.3, 2.5
2330             (patch by Corinna Vinschen, from changes to tin).
2331         + improve CF_CC_ENV_FLAGS macro to allow for compiler wrappers such
2332           as "ccache" (report by Enrico Scholz).
2333         + update config.guess, config.sub from
2334                 http://git.savannah.gnu.org/cgit/config.git
2335
2336 20160820
2337         + update tput manual page to reflect changes to manipulate terminal
2338           modes by sharing functions with tset.
2339         + add the terminal-mode parts of "reset" (aka tset) to the "tput reset"
2340           command, making the two almost the same except for window-size.
2341         + adapt logic used in dialog "--keep-tite" option for test/filter.c as
2342           "-a" option.  When set, test/filter attempts to suppress the
2343           alternate screen.
2344         + correct a typo in interix entry -TD
2345
2346 20160813
2347         + add a dependency upon generated-sources in Ada95/src/Makefile.in to
2348           handle a case of "configure && make install".
2349         + trim trailing blanks from include/Caps*, to work around a problem
2350           in sed (Debian #818067).
2351
2352 20160806
2353         + improve CF_GNU_SOURCE configure macro to optionally define
2354           _DEFAULT_SOURCE work around a nuisance in recent glibc releases.
2355         + move the terminfo-specific parts of tput's "reset" function into
2356           the shared reset_cmd.c, making the two forms of reset use the same
2357           strings.
2358         + split-out the terminal initialization functions from tset as
2359           progs/reset_cmd.c, as part of changes to merge the reset-feature
2360           with tput.
2361
2362 20160730
2363         + change tset's initialization to allow it to get settings from the
2364           standard input as well as /dev/tty, to be more effective when
2365           output or error are redirected.
2366         + improve discussion of history and portability for tset/reset/tput
2367           manual pages.
2368
2369 20160723
2370         + improve error message from tset/reset when both stderr/stdout are
2371           redirected to a file or pipe.
2372         + improve organization of curs_attr.3x, curs_color.3x
2373
2374 20160709
2375         + work around Debian's antique/unmaintained version of mawk when
2376           building link_test.
2377         + improve test/list_keys.c, showing ncurses's convention of modifiers
2378           for special keys, based on xterm.
2379
2380 20160702
2381         + improve test/list_keys.c, using $TERM if no parameters are given.
2382
2383 20160625
2384         + build-fixes for ncurses "test_progs" rule.
2385         + amend change to CF_CC_ENV_FLAGS in 20160521 to make multilib build
2386           work (report by Sven Joachim).
2387
2388 20160618
2389         + build-fixes for ncurses-examples with NetBSD curses.
2390         + improve test/list_keys.c, fixing column-widths and sorting the list
2391           to make it more readable.
2392
2393 20160611
2394         + revise fix for Debian #805618 (report by Vlado Potisk, cf: 20151128).
2395         + modify test/ncurses.c a/A screens to make exiting on an escape
2396           character depend on the start of keypad and timeout modes, to allow
2397           better testing of function-keys.
2398         + modify rs1 for xterm-16color, xterm-88color and xterm-256color to
2399           reset palette using "oc" string as in linux -TD
2400         + use ANSI reply for u8 in xterm-new, to reflect vt220-style responses
2401           that could be returned -TD
2402         + added a few capabilities fixed in recent vte -TD
2403
2404 20160604
2405         + correct logic for -f option in test/demo_terminfo.c
2406         + add test/list_keys.c
2407
2408 20160528
2409         + further workaround for PIE/PIC breakage which causes gpm to not link.
2410         + fix most cppcheck warnings, mostly style, in ncurses library.
2411
2412 20160521
2413         + improved manual page description of tset/reset versus window-size.
2414         + fixes to work with a slightly broken compiler configuration which
2415           cannot compile "Hello World!" without adding compiler options
2416           (report by Ola x Nilsson):
2417           + pass appropriate compiler options to the CF_PROG_CC_C_O macro.
2418           + when separating compiler and options in CF_CC_ENV_FLAGS, ensure
2419             that all options are split-off into CFLAGS or CPPFLAGS
2420           + restore some -I options removed in 20140726 because they appeared
2421             to be redundant.  In fact, they are needed for a compiler that
2422             cannot combine -c and -o options.
2423
2424 20160514
2425         + regenerate HTML manpages.
2426         + improve manual pages for wgetch and wget_wch to point out that they
2427           might return values without names in curses.h (Debian #822426).
2428         + make linux3.0 entry the default linux entry (Debian #823658) -TD
2429         + modify linux2.6 entry to improve line-drawing so that the linux3.0
2430           entry can be used in non-UTF-8 mode -TD
2431         + document return value of use_extended_names (report by Mike Gran).
2432
2433 20160507
2434         + amend change to _nc_do_color to restore the early return for the
2435           special case used in _nc_screen_wrap (report by Dick Streefland,
2436           cf: 20151017).
2437         + modify test/ncurses.c:
2438           + check return-value of putwin
2439           + correct ifdef which made the 'g' test's legend not reflect changes
2440             to keypad- and scroll-modes.
2441         + correct return-value of extended putwin (report by Mike Gran).
2442
2443 20160423
2444         + modify test/ncurses.c 'd' edit-color menu to optionally read xterm
2445           color palette directly from terminal, as well as handling KEY_RESIZE
2446           and screen-repainting with control/L and control/R.
2447         + add 'oc' capability to xterm+256color, allowing palette reset for
2448           xterm -TD
2449
2450 20160416
2451         + add workaround in configure script for inept transition to PIE vs
2452           PIC builds documented in
2453                   https://fedoraproject.org/wiki/Changes/Harden_All_Packages
2454         + add "reset" to list of programs whose names might change in manpages
2455           due to program-transformation configure options.
2456         + drop long-obsolete "-n" option from tset.
2457
2458 20160409
2459         + modify test/blue.c to use Unicode values for card-glyphs when
2460           available, as well as improving the check for CP437 and CP850.
2461
2462 20160402
2463         + regenerate HTML manpages.
2464         + improve manual pages for utilities with respect to POSIX versus
2465           X/Open Curses.
2466
2467 20160326
2468         + regenerate HTML manpages.
2469         + improve test/demo_menus.c, allowing mouse-click on the menu-headers
2470           to switch the active menu.  This requires a new extension option
2471           O_MOUSE_MENU to tell the menu driver to put mouse events which do not
2472           apply to the active menu back into the queue so that the application
2473           can handle the event.
2474
2475 20160319
2476         + improve description of tgoto parameters (report by Steffen Nurpmeso).
2477         + amend workaround for Solaris line-drawing to restore a special case
2478           that maps Unicode line-drawing characters into the acsc string for
2479           non-Unicode locales (Debian #816888).
2480
2481 20160312
2482         + modified test/filter.c to illustrate an alternative to getnstr, that
2483           polls for input while updating a clock on the right margin as well
2484           as responding to window size-changes.
2485
2486 20160305
2487         + omit a redefinition of "inline" when traces are enabled, since this
2488           does not work with gcc 5.3.x MinGW cross-compiling (cf: 20150912).
2489
2490 20160220
2491         + modify test/configure script to check for pthread dependency of
2492           ncursest or ncursestw library when building ncurses examples, e.g.,
2493           in case weak symbols are used.
2494         + modify configure macro for shared-library rules to use -Wl,-rpath
2495           rather than -rpath to work around a bug in scons (FreeBSD #178732,
2496           cf: 20061021).
2497         + double-width multibyte characters were not counted properly in
2498           winsnstr and wins_nwstr (report/example by Eric Pruitt).
2499         + update config.guess, config.sub from
2500                 http://git.savannah.gnu.org/cgit/config.git
2501
2502 20160213
2503         + amend fix for _nc_ripoffline from 20091031 to make test/ditto.c work
2504           in threaded configuration.
2505         + move _nc_tracebits, _tracedump and _tracemouse to curses.priv.h,
2506           since they are not part of the suggested ABI6.
2507
2508 20160206
2509         + define WIN32_LEAN_AND_MEAN for MinGW port, making builds faster.
2510         + modify test/ditto.c to allow $XTERM_PROG environment variable to
2511           override "xterm" as the name of the program to run in the threaded
2512           configuration.
2513
2514 20160130
2515         + improve formatting of man/curs_refresh.3x and man/tset.1 manpages
2516         + regenerate HTML manpages using newer man2html to eliminate some
2517           unwanted blank lines.
2518
2519 20160123
2520         + ifdef'd header-file definition of mouse_trafo() with NCURSES_NOMACROS
2521           (report by Corey Minyard).
2522         + fix some strict compiler-warnings in traces.
2523
2524 20160116
2525         + tidy up comments about hardcoded 256color palette (report by
2526           Leonardo Brondani Schenkel) -TD
2527         + add putty-noapp entry, and amend putty entry to use application mode
2528           for better consistency with xterm (report by Leonardo Brondani
2529           Schenkel) -TD
2530         + modify _nc_viscbuf2() and _tracecchar_t2() to trace wide-characters
2531           as a whole rather than their multibyte equivalents.
2532         + minor fix in wadd_wchnstr() to ensure that each cell has nonzero
2533           width.
2534         + move PUTC_INIT calls next to wcrtomb calls, to avoid carry-over of
2535           error status when processing Unicode values which are not mapped.
2536
2537 20160102
2538         + modify ncurses c/C color test-screens to take advantage of wide
2539           screens, reducing the number of lines used for 88- and 256-colors.
2540         + minor refinement to check versus ncv to ignore two parameters of
2541           SGR 38 and 48 when those come from color-capabilities.
2542
2543 20151226
2544         + add check in tic for use of bold, etc., video attributes in the
2545           color capabilities, accounting whether the feature is listed in ncv.
2546         + add check in tic for conflict between ritm, rmso, rmul versus sgr0.
2547
2548 20151219
2549         + add a paragraph to curs_getch.3x discussing key naming (discussion
2550           with James Crippen).
2551         + amend workaround for Solaris vs line-drawing to take the configure
2552           check into account.
2553         + add a configure check for wcwidth() versus the ncurses line-drawing
2554           characters, to use in special-casing systems such as Solaris.
2555
2556 20151212
2557         + improve CF_XOPEN_CURSES macro used in test/configure, to define as
2558           needed NCURSES_WIDECHAR for platforms where _XOPEN_SOURCE_EXTENDED
2559           does not work.  Also modified the test program to ensure that if
2560           building with ncurses, that the cchar_t type is checked, since that
2561           normally is since 20111030 ifdef'd depending on this test.
2562         + improve 20121222 workaround for broken acs, letting Solaris "work"
2563           in spite of its misconfigured wcwidth which marks all of the line
2564           drawing characters as double-width.
2565
2566 20151205
2567         + update form_cursor.3x, form_post.3x, menu_attributes.3x to list
2568           function names in NAME section (patch by Jason McIntyre).
2569         + minor fixes to manpage NAME/SYNOPSIS sections to consistently use
2570           rule that either all functions which are prototyped in SYNOPSIS are
2571           listed in the NAME section, or the manual-page name is the sole item
2572           listed in the NAME section.  The latter is used to reduce clutter,
2573           e.g., for the top-level library manual pages as well as for certain
2574           feature-pages such as SP-funcs and threading (prompted by patches by
2575           Jason McIntyre).
2576
2577 20151128
2578         + add option to preserve leading whitespace in form fields (patch by
2579           Leon Winter).
2580         + add missing assignment in lib_getch.c to make notimeout() work
2581           (Debian #805618).
2582         + add 't' toggle for notimeout() function in test/ncurses.c a/A screens
2583         + add viewdata terminal description (Alexandre Montaron).
2584         + fix a case in tic/infocmp for formatting capabilities where a
2585           backslash at the end of a string was mishandled.
2586         + fix some typos in curs_inopts.3x (Benno Schulenberg).
2587
2588 20151121
2589         + fix some inconsistencies in the pccon* entries -TD
2590         + add bold to pccon+sgr+acs and pccon-base (Tati Chevron).
2591         + add keys f12-f124 to pccon+keys (Tati Chevron).
2592         + add test/test_sgr.c program to exercise all combinations of sgr.
2593
2594 20151107
2595         + modify tset's assignment to TERM in its output to reflect the name by
2596           which the terminal description is found, rather than the primary
2597           name.  That was an unnecessary part from the initial conversion of
2598           tset from termcap to terminfo.  The termcap program in 4.3BSD did
2599           this to avoid using the short 2-character name (report by Rich
2600           Burridge).
2601         + minor fix to configure script to ensure that rules for resulting.map
2602           are only generated when needed (cf: 20151101).
2603         + modify configure script to handle the case where tic-library is
2604           renamed, but the --with-debug option is used by itself without
2605           normal or shared libraries (prompted by comment in Debian #803482).
2606
2607 20151101
2608         + amend change for pkg-config which allows build of pc-files when no
2609           valid pkg-config library directory was configured to suppress the
2610           actual install if it is not overridden to a valid directory at
2611           install time (cf: 20150822).
2612         + modify editing script which generates resulting.map to work with the
2613           clang configuration on recent FreeBSD, which gives an error on an
2614           empty "local" section.
2615         + fix a spurious "(Part)" message in test/ncurses.c b/B tests due
2616           to incorrect attribute-masking.
2617
2618 20151024
2619         + modify MKexpanded.sh to update the expansion of a temporary filename
2620           to "expanded.c", for use in trace statements.
2621         + modify layout of b/B tests in test/ncurses.c to allow for additional
2622           annotation on the right margin; some terminals with partial support
2623           did not display well.
2624         + fix typo in curs_attr.3x (patch by Sven Joachim).
2625         + fix typo in INSTALL (patch by Tomas Cech).
2626         + improve configure check for setting WILDCARD_SYMS variable; on ppc64
2627           the variable is in the Data section rather than Text (patch by Michel
2628           Normand, Novell #946048).
2629         + using configure option "--without-fallbacks" incorrectly caused
2630           FALLBACK_LIST to be set to "no" (patch by Tomas Cech).
2631         + updated minitel entries to fix kel problem with emacs, and add
2632           minitel1b-nb (Alexandre Montaron).
2633         + reviewed/updated nsterm entry Terminal.app in OSX -TD
2634         + replace some dead URLs in comments with equivalents from the
2635           Internet Archive -TD
2636         + update config.guess, config.sub from
2637                 http://git.savannah.gnu.org/cgit/config.git
2638
2639 20151017
2640         + modify ncurses/Makefile.in to sort keys.list in POSIX locale
2641           (Debian #801864, patch by Esa Peuha).
2642         + remove an early-return from _nc_do_color, which can interfere with
2643           data needed by bkgd when ncurses is configured with extended colors
2644           (patch by Denis Tikhomirov).
2645         > fixes for OS/2 (patches by KO Myung-Hun)
2646         + use button instead of kbuf[0] in EMX-specific part of lib_mouse.c
2647         + support building with libtool on OS/2
2648         + use stdc++ on OS/2 kLIBC
2649         + clear cf_XOPEN_SOURCE on OS/2
2650
2651 20151010
2652         + add configure check for openpty to test/configure script, for ditto.
2653         + minor fixes to test/view.c in investigating Debian #790847.
2654         + update autoconf patch to 2.52.20150926, incorporates a fix for Cdk.
2655         + add workaround for breakage of POSIX makefiles by recent binutils
2656           change.
2657         + improve check for working poll() by using posix_openpt() as a
2658           fallback in case there is no valid terminal on the standard input
2659           (prompted by discussion on bug-ncurses mailing list, Debian #676461).
2660
2661 20150926
2662         + change makefile rule for removing resulting.map to distclean rather
2663           than clean.
2664         + add /lib/terminfo to terminfo-dirs in ".deb" test-package.
2665         + add note on portability of resizeterm and wresize to manual pages.
2666
2667 20150919
2668         + clarify in resizeterm.3x how KEY_RESIZE is pushed onto the input
2669           stream.
2670         + clarify in curs_getch.3x that the keypad mode affects ability to
2671           read KEY_MOUSE codes, but does not affect KEY_RESIZE.
2672         + add overlooked build-fix needed with Cygwin for separate Ada95
2673           configure script, cf: 20150606 (report by Nicolas Boulenguez)
2674
2675 20150912
2676         + fixes for configure/build using clang on OSX (prompted by report by
2677           William Gallafent).
2678           + do not redefine "inline" in ncurses_cfg.h; this was originally to
2679             solve a problem with gcc/g++, but is aggravated by clang's misuse
2680             of symbols to pretend it is gcc.
2681           + add braces to configure script to prevent unwanted add of
2682             "-lstdc++" to the CXXLIBS symbol.
2683           + improve/update test-program used for checking existence of stdc++
2684             library.
2685           + if $CXXLIBS is set, the linkage test uses that in addition to $LIBS
2686
2687 20150905
2688         + add note in curs_addch.3x about line-drawing when it depends upon
2689           UTF-8.
2690         + add tic -q option for consistency with infocmp, use it to suppress
2691           all comments from the "tic -I" output.
2692         + modify infocmp -q option to suppress the "Reconstructed from"
2693           header.
2694         + add infocmp/tic -Q option, which allows one to dump the compiled
2695           form of the terminal entry, in hexadecimal or base64.
2696
2697 20150822
2698         + sort options in usage message for infocmp, to make it simpler to
2699           see unused letters.
2700         + update usage message for tic, adding "-0" option.
2701         + documented differences in ESCDELAY versus AIX's implementation.
2702         + fix some compiler warnings from ports.
2703         + modify --with-pkg-config-libdir option to make it possible to install
2704           ".pc" files even if pkg-config is not found (adapted from patch by
2705           Joshua Root).
2706
2707 20150815
2708         + disallow "no" as a possible value for "--with-shlib-version" option,
2709           overlooked in cleanup-changes for 20000708 (report by Tommy Alex).
2710         + update release notes in INSTALL.
2711         + regenerate llib-* files to help with review for release notes.
2712
2713 20150810
2714         + workaround for Debian #65617, which was fixed in mawk's upstream
2715           releases in 2009 (report by Sven Joachim).  See
2716                 https://invisible-island.net/mawk/CHANGES.html#t20090727
2717
2718 20150808 6.0 release for upload to ftp.gnu.org
2719
2720 20150808
2721         + build-fix for Ada95 on older platforms without stdint.h
2722         + build-fix for Solaris, whose /bin/sh and /usr/bin/sed are non-POSIX.
2723         + update release announcement, summarizing more than 800 changes across
2724           more than 200 snapshots.
2725         + minor fixes to manpages, etc., to simplify linking from announcement
2726           page.
2727
2728 20150725
2729         + updated llib-* files.
2730         + build-fixes for ncurses library "test_progs" rule.
2731         + use alternate workaround for gcc 5.x feature (adapted from patch by
2732           Mikhail Peselnik).
2733         + add status line to tmux via xterm+sl (patch by Nicholas Marriott).
2734         + fixes for st 0.5 from testing with tack -TD
2735         + review/improve several manual pages to break up wall-of-text:
2736           curs_add_wch.3x, curs_attr.3x, curs_bkgd.3x, curs_bkgrnd.3x,
2737           curs_getcchar.3x, curs_getch.3x, curs_kernel.3x, curs_mouse.3x,
2738           curs_outopts.3x, curs_overlay.3x, curs_pad.3x, curs_termattrs.3x
2739           curs_trace.3x, and curs_window.3x
2740
2741 20150719
2742         + correct an old logic error for %A and %O in tparm (report by "zreed").
2743         + improve documentation for signal handlers by adding section in the
2744           curs_initscr.3x page.
2745         + modify logic in make_keys.c to not assume anything about the size
2746           of strnames and strfnames variables, since those may be functions
2747           in the thread- or broken-linker configurations (problem found by
2748           Coverity).
2749         + modify test/configure script to check for pthreads configuration,
2750           e.g., ncursestw library.
2751
2752 20150711
2753         + modify scripts to build/use test-packages for the pthreads
2754           configuration of ncurses6.
2755         + add references to ttytype and termcap symbols in demo_terminfo.c and
2756           demo_termcap.c to ensure that when building ncursest.map, etc., that
2757           the corresponding names such as _nc_ttytype are added to the list of
2758           versioned symbols (report by Werner Fink)
2759         + fix regression from 20150704 (report/patch by Werner Fink).
2760
2761 20150704
2762         + fix a few problems reported by Coverity.
2763         + fix comparison against "/usr/include" in misc/gen-pkgconfig.in
2764           (report by Daiki Ueno, Debian #790548, cf:  20141213).
2765
2766 20150627
2767         + modify configure script to remove deprecated ABI 5 symbols when
2768           building ABI 6.
2769         + add symbols _nc_Default_Field, _nc_Default_Form, _nc_has_mouse to
2770           map-files, but marked as deprecated so that they can easily be
2771           suppressed from ABI 6 builds (Debian #788610).
2772         + comment-out "screen.xterm" entry, and inherit screen.xterm-256color
2773           from xterm-new (report by Richard Birkett) -TD
2774         + modify read_entry.c to set the error-return to -1 if no terminal
2775           databases were found, as documented for setupterm.
2776         + add test_setupterm.c to demonstrate normal/error returns from the
2777           setupterm and restartterm functions.
2778         + amend cleanup change from 20110813 which removed redundant definition
2779           of ret_error, etc., from tinfo_driver.c, to account for the fact that
2780           it should return a bool rather than int (report/analysis by Johannes
2781           Schindelin).
2782
2783 20150613
2784         + fix overflow warning for OSX with lib_baudrate.c (cf: 20010630).
2785         + modify script used to generate map/sym files to mark 5.9.20150530 as
2786           the last "5.9" version, and regenerated the files.  That makes the
2787           files not use ".current" for the post-5.9 symbols.  This also
2788           corrects the label for _nc_sigprocmask used in when weak symbols are
2789           configured for the ncursest/ncursestw libraries (prompted by
2790           discussion with Sven Joachim).
2791         + fix typo in NEWS (report by Sven Joachim).
2792
2793 20150606 pre-release
2794         + make ABI 6 the default by updates to dist.mk and VERSION, with the
2795           intention that the existing ABI 5 should build as before using the
2796           "--with-abi-version=5" option.
2797         + regenerate ada- and man-html documentation.
2798         + minor fixes to color- and util-manpages.
2799         + fix a regression in Ada95/gen/Makefile.in, to handle special case of
2800           Cygwin, which uses the broken-linker feature.
2801         + amend fix for CF_NCURSES_CONFIG used in test/configure to assume that
2802           ncurses package scripts work when present for cross-compiling, as the
2803           lessor of two evils (cf: 20150530).
2804         + add check in configure script to disallow conflicting options
2805           "--with-termlib" and "--enable-term-driver".
2806         + move defaults for "--disable-lp64" and "--with-versioned-syms" into
2807           CF_ABI_DEFAULTS macro.
2808
2809 20150530
2810         + change private type for Event_Mask in Ada95 binding to work when
2811           mmask_t is set to 32-bits.
2812         + remove spurious "%;" from st entry (report by Daniel Pitts) -TD
2813         + add vte-2014, update vte to use that -TD
2814         + modify tic and infocmp to "move" a diagnostic for tparm strings that
2815           have a syntax error to tic's "-c" option (report by Daniel Pitts).
2816         + fix two problems with configure script macros (Debian #786436,
2817           cf: 20150425, cf: 20100529).
2818
2819 20150523
2820         + add 'P' menu item to test/ncurses.c, to show pad in color.
2821         + improve discussion in curs_color.3x about color rendering (prompted
2822           by comment on Stack Overflow forum):
2823         + remove screen-bce.mlterm, since mlterm does not do "bce" -TD
2824         + add several screen.XXX entries to support the respective variations
2825           for 256 colors -TD
2826         + add putty+fnkeys* building-block entries -TD
2827         + add smkx/rmkx to capabilities analyzed with infocmp "-i" option.
2828
2829 20150516
2830         + amend change to ".pc" files to only use the extra loader flags which
2831           may have rpath options (report by Sven Joachim, cf: 20150502).
2832         + change versioning for dpkg's in test-packages for Ada95 and
2833           ncurses-examples for consistency with Debian, to work with package
2834           updates.
2835         + regenerate html manpages.
2836         + clarify handling of carriage return in waddch manual page; it was
2837           discussed only in the portability section (prompted by comment on
2838           Stack Overflow forum):
2839
2840 20150509
2841         + add test-packages for cross-compiling ncurses-examples using the
2842           MinGW test-packages.  These are only the Debian packages; RPM later.
2843         + cleanup format of debian/copyright files
2844         + add pc-files to the MinGW cross-compiling test-packages.
2845         + correct a couple of places in gen-pkgconfig.in to handle renaming of
2846           the tinfo library.
2847
2848 20150502
2849         + modify the configure script to allow different default values
2850           for ABI 5 versus ABI 6.
2851         + add wgetch-events to test-packages.
2852         + add a note on how to build ncurses-examples to test/README.
2853         + fix a memory leak in delscreen (report by Daniel Kahn Gillmor,
2854           Debian #783486) -TD
2855         + remove unnecessary ';' from E3 capabilities -TD
2856         + add tmux entry, derived from screen (patch by Nicholas Marriott).
2857         + split-out recent change to nsterm-bce as nsterm-build326, and add
2858           nsterm-build342 to reflect changes with successive releases of OSX
2859           (discussion with Leonardo B Schenkel)
2860         + add xon, ich1, il1 to ibm3161 (patch by Stephen Powell, Debian
2861           #783806)
2862         + add sample "magic" file, to document ext-putwin.
2863         + modify gen-pkgconfig.in to add explicit -ltinfo, etc., to the
2864           generated ".pc" file when ld option "--as-needed" is used, or when
2865           ncurses and tinfo are installed without using rpath (prompted by
2866           discussion with Sylvain Bertrand).
2867         + modify test-package for ncurses6 to omit rpath feature when installed
2868           in /usr.
2869         + add OSX's "*.dSYM" to clean-rules in makefiles.
2870         + make extra-suffix work for OSX configuration, e.g., for shared
2871           libraries.
2872         + modify Ada95/configure script to work with pkg-config
2873         + move test-package for ncurses6 to /usr, since filename-conflicts have
2874           been eliminated.
2875         + corrected build rules for Ada95/gen/generate; it does not depend on
2876           the ncurses library aside from headers.
2877         + reviewed man pages, fixed a few other spelling errors.
2878         + fix a typo in curs_util.3x (Sven Joachim).
2879         + use extra-suffix in some overlooked shared library dependencies
2880           found by 20150425 changes for test-packages.
2881         + update config.guess, config.sub from
2882                 http://git.savannah.gnu.org/cgit/config.git
2883
2884 20150425
2885         + expanded description of tgetstr's area pointer in manual page
2886           (report by Todd M Lewis).
2887         + in-progress changes to modify test-packages to use ncursesw6 rather
2888           than ncursesw, with updated configure scripts.
2889         + modify CF_NCURSES_CONFIG in Ada95- and test-configure scripts to
2890           check for ".pc" files via pkg-config, but add a linkage check since
2891           frequently pkg-config configurations are broken.
2892         + modify misc/gen-pkgconfig.in to include EXTRA_LDFLAGS, e.g., for the
2893           rpath option.
2894         + add 'dim' capability to screen entry (report by Leonardo B Schenkel)
2895         + add several key definitions to nsterm-bce to match preconfigured
2896           keys, e.g., with OSX 10.9 and 10.10 (report by Leonardo B Schenkel)
2897         + fix repeated "extra-suffix" in ncurses-config.in (cf: 20150418).
2898         + improve term_variables manual page, adding section on the terminfo
2899           long-name symbols which are defined in the term.h header.
2900         + fix bug in lib_tracebits.c introduced in const-fixes (cf: 20150404).
2901
2902 20150418
2903         + avoid a blank line in output from tabs program by ending it with
2904           a carriage return as done in FreeBSD (patch by James Clarke).
2905         + build-fix for the "--enable-ext-putwin" feature when not using
2906           wide characters (report by Werner Fink).
2907         + modify autoconf macros to use scripting improvement from xterm.
2908         + add -brtl option to compiler options on AIX 5-7, needed to link
2909           with the shared libraries.
2910         + add --with-extra-suffix option to help with installing nonconflicting
2911           ncurses6 packages, e.g., avoiding header- and library-conflicts.
2912           NOTE: as a side-effect, this renames
2913                   adacurses-config to adacurses5-config and
2914                   adacursesw-config to adacursesw5-config
2915         + modify debian/rules test package to suffix programs with "6".
2916         + clarify in curs_inopts.3x that window-specific settings do not
2917           inherit into new windows.
2918
2919 20150404
2920         + improve description of start_color() in the manual.
2921         + modify several files in ncurses- and progs-directories to allow
2922           const data used in internal tables to be put by the linker into the
2923           readonly text segment.
2924
2925 20150329
2926         + correct cut/paste error for "--enable-ext-putwin" that made it the
2927           same as "--enable-ext-colors" (report by Roumen Petrov)
2928
2929 20150328
2930         + add "-f" option to test/savescreen.c to help with testing/debugging
2931           the extended putwin/getwin.
2932         + add logic for writing/reading combining characters in the extended
2933           putwin/getwin.
2934         + add "--enable-ext-putwin" configure option to turn on the extended
2935           putwin/getwin.
2936
2937 20150321
2938         + in-progress changes to provide an extended version of putwin and
2939           getwin which will be capable of reading screen-dumps between the
2940           wide/normal ncurses configurations.  These are text files, except
2941           for a magic code at the beginning:
2942           0       string          \210\210        Screen-dump (ncurses)
2943
2944 20150307
2945         + document limitations of getwin in manual page (prompted by discussion
2946           with John S Urban).
2947         + extend test/savescreen.c to demonstrate that color pair values
2948           and graphic characters can be restored using getwin.
2949
2950 20150228
2951         + modify win_driver.c to eliminate the constructor, to make it more
2952           usable in an application which may/may not need the console window
2953           (report by Grady Martin).
2954
2955 20150221
2956         + capture define's related to -D_XOPEN_SOURCE from the configure check
2957           and add those to the *-config and *.pc files, to simplify use for
2958           the wide-character libraries.
2959         + modify ncurses.spec to accommodate Fedora21's location of pkg-config
2960           directory.
2961         + correct sense of "--disable-lib-suffixes" configure option (report
2962           by Nicolas Boos, cf: 20140426).
2963
2964 20150214
2965         + regenerate html manpages using improved man2html from work on xterm.
2966         + regenerated ".map" and ".sym" files using improved script, accounting
2967           for the "--enable-weak-symbols" configure option (report by Werner
2968           Fink).
2969
2970 20150131
2971         + regenerated ".map" and ".sym" files using improved script, showing
2972           the combinations of configure options used at each stage.
2973
2974 20150124
2975         + add configure check to determine if "local: _*;" can be used in the
2976           ".map" files to selectively omit symbols beginning with "_".  On at
2977           least recent FreeBSD, the wildcard applies to all "_" symbols.
2978         + remove obsolete/conflicting rule for ncurses.map from
2979           ncurses/Makefile.in (cf:  20130706).
2980
2981 20150117
2982         + improve description in INSTALL of the --with-versioned-syms option.
2983         + add combination of --with-hashed-db and --with-ticlib to
2984           configurations for ".map" files (report by Werner Fink).
2985
2986 20150110
2987         + add a step to generating ".map" files, to declare any remaining
2988           symbols beginning with "_" as local, at the last version node.
2989         + improve configure checks for pkg-config, addressing a variant found
2990           with FreeBSD ports.
2991         + modify win_driver.c to provide characters for special keys, like
2992           ansi.sys, when keypad mode is off, rather than returning nothing at
2993           all (discussion with Eli Zaretskii).
2994         + add "broken_linker" and "hashed-db" configure options to combinations
2995           use for generating the ".map" and ".sym" files.
2996         + avoid using "ld" directly when creating shared library, to simplify
2997           cross-compiles.  Also drop "-Bsharable" option from shared-library
2998           rules for FreeBSD and DragonFly (FreeBSD #196592).
2999         + fix a memory leak in form library Free_RegularExpression_Type()
3000           (report by Pavel Balaev).
3001
3002 20150103
3003         + modify_nc_flush() to retry if interrupted (patch by Stian Skjelstad).
3004         + change map files to make _nc_freeall a global, since it may be used
3005           via the Ada95 binding when checking for memory leaks.
3006         + improve sed script used in 20141220 to account for wide-, threaded-
3007           variations in ABI 6.
3008
3009 20141227
3010         + regenerate ".map" files, using step overlooked in 20141213 to use
3011           the same patch-dates across each file to match ncurses.map (report by
3012           Sven Joachim).
3013
3014 20141221
3015         + fix an incorrect variable assignment in 20141220 changes (report by
3016           Sven Joachim).
3017
3018 20141220
3019         + updated Ada95/configure with macro changes from 20141213
3020         + tie configure options --with-abi-version and --with-versioned-syms
3021           together, so that ABI 6 libraries have distinct symbol versions from
3022           the ABI 5 libraries.
3023         + replace obsolete/nonworking link to man2html with current one,
3024           regenerate html-manpages.
3025
3026 20141213
3027         + modify misc/gen-pkgconfig.in to add -I option for include-directory
3028           when using both --prefix and --disable-overwrite (report by Misty
3029           De Meo).
3030         + add configure option --with-pc-suffix to allow minor renaming of
3031           ".pc" files and the corresponding library.  Use this in the test
3032           package for ncurses6.
3033         + modify configure script so that if pkg-config is not installed, it
3034           is still possible to install ".pc" files (report by Misty De Meo).
3035         + updated ".sym" files, removing symbols which are marked as "local"
3036           in the corresponding ".map" files.
3037         + updated ".map" files to reflect move of comp_captab and comp_hash
3038           from tic-library to tinfo-library in 20090711 (report by Sven
3039           Joachim).
3040
3041 20141206
3042         + updated ".map" files so that each symbol that may be shared across
3043           the different library configurations has the same label.  Some
3044           review is needed to ensure these are really compatible.
3045         + modify MKlib_gen.sh to work around change in development version of
3046           gcc introduced here:
3047                   https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html
3048                   https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html
3049           (reports by Marcus Shawcroft, Maohui Lei).
3050         + improved configure macro CF_SUBDIR_PATH, from lynx changes.
3051
3052 20141129
3053         + improved ".map" files by generating them with a script that builds
3054           ncurses with several related configurations and merges the results.
3055           A further refinement is planned, to make the tic- and tinfo-library
3056           symbols use the same versions across each of the four configurations
3057           which are represented (reports by Sven Joachim, Werner Fink).
3058
3059 20141115
3060         + improve description of limits for color values and color pairs in
3061           curs_color.3x (prompted by patch by Tim van der Molen).
3062         + add VERSION file, using first field in that to record the ABI version
3063           used for configure --with-libtool --disable-libtool-version
3064         + add configure options for applying the ".map" and ".sym" files to
3065           the ncurses, form, menu and panel libraries.
3066         + add ".map" and ".sym" files to show exported symbols, e.g., for
3067           symbol-versioning.
3068
3069 20141101
3070         + improve strict compiler-warnings by adding a cast in TRACE_RETURN
3071           and making a new TRACE_RETURN1 macro for cases where the cast does
3072           not apply.
3073
3074 20141025
3075         + in-progress changes to integrate the win32 console driver with the
3076           msys2 configuration.
3077
3078 20141018
3079         + reviewed terminology 0.6.1, add function key definitions.  None of
3080           the vt100-compatibility issues were improved -TD
3081         + improve infocmp conversion of extended capabilities to termcap by
3082           correcting the limit check against parametrized[], as well as filling
3083           in a check if the string happens to have parameters, e.g., "xm"
3084           in recent changes.
3085         + add check for zero/negative dimensions for resizeterm and resize_term
3086           (report by Mike Gran).
3087
3088 20141011
3089         + add experimental support for xterm's 1005 mouse mode, to use in a
3090           demonstration of its limitations.
3091         + add experimental support for "%u" format to terminfo.
3092         + modify test/ncurses.c to also show position reports in 'a' test.
3093         + minor formatting fixes to _nc_trace_mmask_t, make this function
3094           exported to help with debugging mouse changes.
3095         + improve behavior of wheel-mice for xterm protocol, noting that there
3096           are only button-presses for buttons "4" and "5", so there is no need
3097           to wait to combine events into double-clicks (report/analysis by
3098           Greg Field).
3099         + provide examples xterm-1005 and xterm-1006 terminfo entries -TD
3100         + implement decoder for xterm SGR 1006 mouse mode.
3101
3102 20140927
3103         + implement curs_set in win_driver.c
3104         + implement flash in win_driver.c
3105         + fix an infinite loop in win_driver.c if the command-window loses
3106           focus.
3107         + improve the non-buffered mode, i.e., NCURSES_CONSOLE2, of
3108           win_driver.c by temporarily changing the buffer-size to match the
3109           window-size to eliminate the scrollback.  Also enforce a minimum
3110           screen-size of 24x80 in the non-buffered mode.
3111         + modify generated misc/Makefile to suppress install.data from the
3112           dependencies if the --disable-db-install option is used, compensating
3113           for the top-level makefile changes used to add ncurses*-config in the
3114           20140920 changes (report by Steven Honeyman).
3115
3116 20140920
3117         + add ncurses*-config to bin-directory of sample package-scripts.
3118         + add check to ensure that getopt is available; this is a problem in
3119           some older cross-compiler environments.
3120         + expanded on the description of --disable-overwrite in INSTALL
3121           (prompted by reports by Joakim Tjernlund, Thomas Klausner).
3122           See Gentoo #522586 and NetBSD #49200 for examples.
3123           which relates to the clarified guidelines.
3124         + remove special logic from CF_INCLUDE_DIRS which adds the directory
3125           for the --includedir from the build (report by Joakim Tjernlund).
3126         + add case for Unixware to CF_XOPEN_SOURCE, from lynx changes.
3127         + update config.sub from
3128                 http://git.savannah.gnu.org/cgit/config.git
3129
3130 20140913
3131         + add a configure check to ignore some of the plethora of non-working
3132           C++ cross-compilers.
3133         + build-fixes for Ada95 with gnat 4.9
3134
3135 20140906
3136         + build-fix and other improvements for port of ncurses-examples to
3137           NetBSD.
3138         + minor compiler-warning fixes.
3139
3140 20140831
3141         + modify test/demo_termcap.c and test/demo_terminfo.c to make their
3142           options more directly comparable, and add "-i" option to specify
3143           a terminal description filename to parse for names to lookup.
3144
3145 20140823
3146         + fix special case where double-width character overwrites a single-
3147           width character in the first column (report by Egmont Koblinger,
3148           cf: 20050813).
3149
3150 20140816
3151         + fix colors in ncurses 'b' test which did not work after changing
3152           it to put the test-strings in subwindows (cf: 20140705).
3153         + merge redundant SEE-ALSO sections in form and menu manpages.
3154
3155 20140809
3156         + modify declarations for user-data pointers in C++ binding to use
3157           reinterpret_cast to facilitate converting typed pointers to void*
3158           in user's application (patch by Adam Jiang).
3159         + regenerated html manpages.
3160         + add note regarding cause and effect for TERM in ncurses manpage,
3161           having noted clueless verbiage in Terminal.app's "help" file
3162           which reverses cause/effect.
3163         + remove special fallback definition for NCURSES_ATTR_T, since macros
3164           have resolved type-mismatches using casts (cf: 970412).
3165         + fixes for win_driver.c:
3166           + handle repainting on endwin/refresh combination.
3167           + implement beep().
3168           + minor cleanup.
3169
3170 20140802
3171         + minor portability fixes for MinGW:
3172           + ensure WINVER is defined in makefiles rather than using headers
3173           + add check for gnatprep "-T" option
3174           + work around bug introduced by gcc 4.8.1 in MinGW which breaks
3175             "trace" feature:
3176             http://stackoverflow.com/questions/20877689/gcc-4-8-1-minggw-d-option-does-not-work-as-usual
3177         + fix most compiler warnings for Cygwin ncurses-examples.
3178         + restore "redundant" -I options in test/Makefile.in, since they are
3179           typically needed when building the derived ncurses-examples package
3180           (cf: 20140726).
3181
3182 20140726
3183         + eliminate some redundant -I options used for building libraries, and
3184           ensure that ${srcdir} is added to the include-options (prompted by
3185           discussion with Paul Gilmartin).
3186         + modify configure script to work with Minix3.2
3187         + add form library extension O_DYNAMIC_JUSTIFY option which can be
3188           used to override the different treatment of justification for static
3189           versus dynamic fields (adapted from patch by Leon Winter).
3190         + add a null pointer check in test/edit_field.c (report/analysis by
3191           Leon Winter, cf: 20130608).
3192
3193 20140719
3194         + make workarounds for compiling test-programs with NetBSD curses.
3195         + improve configure macro CF_ADD_LIBS, to eliminate repeated -l/-L
3196           options, from xterm changes.
3197
3198 20140712
3199         + correct Charable() macro check for A_ALTCHARSET in wide-characters.
3200         + build-fix for position-debug code in tty_update.c, to work with or
3201           without sp-funcs.
3202
3203 20140705
3204         + add w/W toggle to ncurses.c 'B' test, to demonstrate permutation of
3205           video-attributes and colors with double-width character strings.
3206
3207 20140629
3208         + correct check in win_driver.c for saving screen contents, e.g., when
3209           NCURSES_CONSOLE2 is set (cf: 20140503).
3210         + reorganize b/B menu items in ncurses.c, putting the test-strings into
3211           subwindows.  This is needed for a planned change to use Unicode
3212           fullwidth characters in the test-screens.
3213         + correct update to form status for _NEWTOP, broken by fixes for
3214           compiler warnings (patch by Leon Winter, cf: 20120616).
3215
3216 20140621
3217         + change shared-library suffix for AIX 5 and 6 to ".so", avoiding
3218           conflict with the static library (report by Ben Lentz).
3219         + document RPATH_LIST in INSTALLATION file, as part of workarounds for
3220           upgrading an ncurses library using the "--with-shared" option.
3221         + modify test/ncurses.c c/C tests to cycle through subsets of the
3222           total number of colors, to better illustrate 8/16/88/256-colors by
3223           providing directly comparable screens.
3224         + add test/dots_curses.c, for comparison with the low-level examples.
3225
3226 20140614
3227         + fix dereference before null check found by Coverity in tic.c
3228           (cf: 20140524).
3229         + fix sign-extension bug in read_entry.c which prevented "toe" from
3230           reading empty "screen+italics" entry.
3231         + modify sgr for screen.xterm-new to support dim capability -TD
3232         + add dim capability to nsterm+7 -TD
3233         + cancel dim capability for iterm -TD
3234         + add dim, invis capabilities to vte-2012 -TD
3235         + add sitm/ritm to konsole-base and mlterm3 -TD
3236
3237 20140609
3238         > fix regression in screen terminfo entries (reports by Christian
3239           Ebert, Gabriele Balducci) -TD
3240         + revert the change to screen; see notes for why this did not work -TD
3241         + cancel sitm/ritm for entries which extend "screen", to work around
3242           screen's hardcoded behavior for SGR 3 -TD
3243
3244 20140607
3245         + separate masking for sgr in vidputs from sitm/ritm, which do not
3246           overlap with sgr functionality.
3247         + remove unneeded -i option from adacurses-config; put -a in the -I
3248           option for consistency (patch by Pascal Pignard).
3249         + update xterm-new terminfo entry to xterm patch #305 -TD
3250         + change format of test-scripts for Debian Ada95 and ncurses-examples
3251           packages to quilted to work around Debian #700177 (cf: 20130907).
3252         + build fix for form_driver_w.c as part of ncurses-examples package for
3253           older ncurses than 20131207.
3254         + add Hello World example to adacurses-config manpage.
3255         + remove unused --enable-pc-files option from Ada95/configure.
3256         + add --disable-gnat-projects option for testing.
3257         + revert changes to Ada95 project-files configuration (cf: 20140524).
3258         + corrected usage message in adacurses-config.
3259
3260 20140524
3261         + fix typo in ncurses manpage for the NCURSES_NO_MAGIC_COOKIE
3262           environment variable.
3263         + improve discussion of input-echoing in curs_getch.3x
3264         + clarify discussion in curs_addch.3x of wrapping.
3265         + modify parametrized.h to make fln non-padded.
3266         + correct several entries which had termcap-style padding used in
3267           terminfo: adm21, aj510, alto-h19, att605-pc, x820 -TD
3268         + correct syntax for padding in some entries: dg211, h19 -TD
3269         + correct ti924-8 which had confused padding versus octal escapes -TD
3270         + correct padding in sbi entry -TD
3271         + fix an old bug in the termcap emulation; "%i" was ignored in tparm()
3272           because the parameters to be incremented were already on the internal
3273           stack (report by Corinna Vinschen).
3274         + modify tic's "-c" option to take into account the "-C" option to
3275           activate additional checks which compare the results from running
3276           tparm() on the terminfo expressions versus the translated termcap
3277           expressions.
3278         + modify tic to allow it to read from FIFOs (report by Matthieu Fronton,
3279           cf: 20120324).
3280         > patches by Nicolas Boulenguez:
3281         + explicit dereferences to suppress some style warnings.
3282         + when c_varargs_to_ada.c includes its header, use double quotes
3283           instead of <>.
3284         + samples/ncurses2-util.adb:  removed unused with clause.  The warning
3285           was removed by an obsolete pragma.
3286         + replaced Unreferenced pragmas with Warnings (Off).  The latter,
3287           available with older GNATs, needs no configure test.  This also
3288           replaces 3 untested Unreferenced pragmas.
3289         + simplified To_C usage in trace handling.  Using two parameters allows
3290           some basic formatting, and avoids a warning about security with some
3291           compiler flags.
3292         + for generated Ada sources, replace many snippets with one pure
3293           package.
3294         + removed C_Chtype and its conversions.
3295         + removed C_AttrType and its conversions.
3296         + removed conversions between int, Item_Option_Set, Menu_Option_Set.
3297         + removed int, Field_Option_Set, Item_Option_Set conversions.
3298         + removed C_TraceType, Attribute_Option_Set conversions.
3299         + replaced C.int with direct use of Eti_Error, now enumerated.  As it
3300           was used in a case statement, values were tested by the Ada compiler
3301           to be consecutive anyway.
3302         + src/Makefile.in: remove duplicate stanza
3303         + only consider using a project for shared libraries.
3304         + style. Silent gnat-4.9 warning about misplaced "then".
3305         + generate shared library project to honor ADAFLAGS, LDFLAGS.
3306
3307 20140510
3308         + cleanup recently introduced compiler warnings for MingW port.
3309         + workaround for ${MAKEFLAGS} configure check versus GNU make 4.0,
3310           which introduces more than one gratuitous incompatibility.
3311
3312 20140503
3313         + add vt520ansi terminfo entry (patch by Mike Gran)
3314         + further improve MinGW support for the scenario where there is an
3315           ANSI-escapes handler such as ansicon running in the console window
3316           (patch by Juergen Pfeifer).
3317
3318 20140426
3319         + add --disable-lib-suffixes option (adapted from patch by Juergen
3320           Pfeifer).
3321         + merge some changes from Juergen Pfeifer's work with MSYS2, to
3322           simplify later merging:
3323           + use NC_ISATTY() macro for isatty() in library
3324           + add _nc_mingw_isatty() and related functions to windows-driver
3325           + rename terminal driver entrypoints to simplify grep's
3326         + remove a check in the sp-funcs flavor of newterm() which allowed only
3327           the first call to newterm() to succeed (report by Thomas Beierlein,
3328           cf: 20090927).
3329
3330 20140419
3331         + update config.guess, config.sub from
3332                 http://git.savannah.gnu.org/cgit/config.git
3333
3334 20140412
3335         + modify configure script:
3336           + drop the -no-gcc option from Intel compiler, from lynx changes.
3337           + extend the --with-hashed-db configure option to simplify building
3338             with different versions of Berkeley database using FreeBSD ports.
3339         + improve initialization for MinGW port (Juergen Pfeifer):
3340           + enforce Windows-style path-separator if cross-compiling,
3341           + add a driver-name method to each of the drivers,
3342           + allow the Windows driver name to match "unknown", ignoring case,
3343           + lengthen the built-in name for the Windows console driver to
3344             "#win32console", and
3345           + move the comparison of driver-names allowing abbreviation, e.g.,
3346             to "#win32con" into the Windows console driver.
3347
3348 20140329
3349         + add check in tic for mismatch between ccc and initp/initc
3350         + cancel ccc in putty-256color and konsole-256color for consistency
3351           with the cancelled initc capability (patch by Sven Zuhlsdorf).
3352         + add xterm+256setaf building block for various terminals which only
3353           get the 256-color feature half-implemented -TD
3354         + updated "st" entry (leaving the 0.1.1 version as "simpleterm") to
3355           0.4.1 -TD
3356
3357 20140323
3358         + fix typo in "mlterm" entry (report by Gabriele Balducci) -TD
3359
3360 20140322
3361         + use types from <stdint.h> in sample build-scripts for chtype, etc.
3362         + modify configure script and curses.h.in to allow the types specified
3363           using --with-chtype and related options to be defined in <stdint.h>
3364         + add terminology entry -TD
3365         + add mlterm3 entry, use that as "mlterm" -TD
3366         + inherit mlterm-256color from mlterm -TD
3367
3368 20140315
3369         + modify _nc_New_TopRow_and_CurrentItem() to ensure that the menu's
3370           top-row is adjusted as needed to ensure that the current item is
3371           on the screen (patch by Johann Klammer).
3372         + add wgetdelay() to retrieve _delay member of WINDOW if it happens to
3373           be opaque, e.g., in the pthread configuration (prompted by patch by
3374           Soren Brinkmann).
3375
3376 20140308
3377         + modify ifdef in read_entry.c to handle the case where
3378           NCURSES_USE_DATABASE is not defined (patch by Xin Li).
3379         + add cast in form_driver_w() to fix ARM build (patch by Xin Li).
3380         + add logic to win_driver.c to save/restore screen contents when not
3381           allocating a console-buffer (cf: 20140215).
3382
3383 20140301
3384         + clarify error-returns from newwin (report by Ruslan Nabioullin).
3385
3386 20140222
3387         + fix some compiler warnings in win_driver.c
3388         + updated notes for wsvt25 based on tack and vttest -TD
3389         + add teken entry to show actual properties of FreeBSD's "xterm"
3390           console -TD
3391
3392 20140215
3393         + in-progress changes to win_driver.c to implement output without
3394           allocating a console-buffer.  This uses a pre-existing environment
3395           variable NCGDB used by Juergen Pfeifer for debugging (prompted by
3396           discussion with Erwin Waterlander regarding Console2, which hangs
3397           when reading in an allocated console-buffer).
3398         + add -t option to gdc.c, and modify to accept "S" to step through the
3399           scrolling-stages.
3400         + regenerate NCURSES-Programming-HOWTO.html to fix some of the broken
3401           html emitted by docbook.
3402
3403 20140209
3404         + modify CF_XOPEN_SOURCE macro to omit followup check to determine if
3405           _XOPEN_SOURCE can/should be defined.  g++ 4.7.2 built on Solaris 10
3406           has some header breakage due to its own predefinition of this symbol
3407           (report by Jean-Pierre Flori, Sage #15796).
3408
3409 20140201
3410         + add/use symbol NCURSES_PAIRS_T like NCURSES_COLOR_T, to illustrate
3411           which "short" types are for color pairs and which are color values.
3412         + fix build for s390x, by correcting field bit offsets in generated
3413           representation clauses when int=32 long=64 and endian=big, or at
3414           least on s390x (patch by Nicolas Boulenguez).
3415         + minor cleanup change to test/form_driver_w.c (patch by Gaute Hope).
3416
3417 20140125
3418         + remove unnecessary ifdef's in Ada95/gen/gen.c, which reportedly do
3419           not work as is with gcc 4.8 due to fixes using chtype cast made for
3420           new compiler warnings by gcc 4.8 in 20130824 (Debian #735753, patch
3421           by Nicolas Boulenguez).
3422
3423 20140118
3424         + apply includesubdir variable which was introduced in 20130805 to
3425           gen-pkgconfig.in (Debian #735782).
3426
3427 20131221
3428         + further improved man2html, used this to fix broken links in html
3429           manpages.  See
3430           ftp://ftp.invisible-island.net/ncurses/patches/man2html
3431
3432 20131214
3433         + modify configure-script/ifdef's to allow OLD_TTY feature to be
3434           suppressed if the type of ospeed is configured using the option
3435           --with-ospeed to not be a short.  By default, it is a short for
3436           termcap-compatibility (adapted from suggestion by Christian
3437           Weisgerber).
3438         + correct a typo in _nc_baudrate() (patch by Christian Weisgerber,
3439           cf: 20061230).
3440         + fix a few -Wlogical-op warnings.
3441         + updated llib-l* files.
3442
3443 20131207
3444         + add form_driver_w() entrypoint to wide-character forms library, as
3445           well as test program form_driver_w (adapted from patch by Gaute
3446           Hope).
3447
3448 20131123
3449         + minor fix for CF_GCC_WARNINGS to special-case options which are not
3450           recognized by clang.
3451
3452 20131116
3453         + add special case to configure script to move _XOPEN_SOURCE_EXTENDED
3454           definition from CPPFLAGS to CFLAGS if it happens to be needed for
3455           Solaris, because g++ errors with that definition (report by
3456           Jean-Pierre Flori, Sage #15268).
3457         + correct logic in infocmp's -i option which was intended to ignore
3458           strings which correspond to function-keys as candidates for piecing
3459           together initialization- or reset-strings.  The problem dates to
3460           1.9.7a, but was overlooked until changes in -Wlogical-op warnings for
3461           gcc 4.8 (report by David Binderman).
3462         + updated CF_GCC_WARNINGS to documented options for gcc 4.9.0, moving
3463           checks for -Wextra and -Wdeclaration-after-statement into the macro,
3464           and adding checks for -Wignored-qualifiers, -Wlogical-op and
3465           -Wvarargs
3466         + updated CF_CURSES_UNCTRL_H and CF_SHARED_OPTS macros from ongoing
3467           work on cdk.
3468         + update config.sub from
3469                 http://git.savannah.gnu.org/cgit/config.git
3470
3471 20131110
3472         + minor cleanup of terminfo.tail
3473
3474 20131102
3475         + use TS extension to describe xterm's title-escapes -TD
3476         + modify terminator and nsterm-s to use xterm+sl-twm building block -TD
3477         + update hurd.ti, add xenl to reflect 2011-03-06 change in
3478           http://git.savannah.gnu.org/cgit/hurd/hurd.git/log/console/display.c
3479           (Debian #727119).
3480         + simplify pfkey expression in ansi.sys -TD
3481
3482 20131027
3483         + correct/simplify ifdef's for cur_term versus broken-linker and
3484           reentrant options (report by Jean-Pierre Flori, cf: 20090530).
3485         + modify release/version combinations in test build-scripts to make
3486           them more consistent with other packages.
3487
3488 20131019
3489         + add nc_mingw.h to installed headers for MinGW port; needed for
3490           compiling ncurses-examples.
3491         + add rpm-script for testing cross-compile of ncurses-examples.
3492
3493 20131014
3494         + fix new typo in CF_ADA_INCLUDE_DIRS macro (report by Roumen Petrov).
3495
3496 20131012
3497         + fix a few compiler warnings in progs and test.
3498         + minor fix to package/debian-mingw/rules, do not strip dll's.
3499         + minor fixes to configure script for empty $prefix, e.g., when doing
3500           cross-compiles to MinGW.
3501         + add script for building test-packages of binaries cross-compiled to
3502           MinGW using NSIS.
3503
3504 20131005
3505         + minor fixes for ncurses-example package and makefile.
3506         + add scripts for test-builds of cross-compiler packages for ncurses6
3507           to MinGW.
3508
3509 20130928
3510         + some build-fixes for ncurses-examples with NetBSD-6.0 curses, though
3511           it lacks some common functions such as use_env() which is not yet
3512           addressed.
3513         + build-fix and some compiler warning fixes for ncurses-examples with
3514           OpenBSD 5.3
3515         + fix a possible null-pointer reference in a trace message from newterm.
3516         + quiet a few warnings from NetBSD 6.0 namespace pollution by
3517           nonstandard popcount() function in standard strings.h header.
3518         + ignore g++ 4.2.1 warnings for "-Weffc++" in c++/cursesmain.cc
3519         + fix a few overlooked places for --enable-string-hacks option.
3520
3521 20130921
3522         + fix typo in curs_attr.3x (patch by Sven Joachim, cf: 20130831).
3523         + build-fix for --with-shared option for DragonFly and FreeBSD (report
3524           by Rong-En Fan, cf: 20130727).
3525
3526 20130907
3527         + build-fixes for MSYS for two test-programs (patches by Ray Donnelly,
3528           Alexey Pavlov).
3529         + revert change to two of the dpkg format files, to work with dpkg
3530           before/after Debian #700177.
3531         + fix gcc -Wconversion warning in wattr_get() macro.
3532         + add msys and msysdll to known host/configuration types (patch by
3533           Alexey Pavlov).
3534         + modify CF_RPATH_HACK configure macro to not rely upon "-u" option
3535           of sort, improving portability.
3536         + minor improvements for test-programs from reviewing Solaris port.
3537         + update config.guess, config.sub from
3538                 http://git.savannah.gnu.org/cgit/config.git
3539
3540 20130831
3541         + modify test/ncurses.c b/B tests to display lines only for the
3542           attributes which a given terminal supports, to make room for an
3543           italics test.
3544         + completed ncv table in terminfo.tail; it did not list the wide
3545           character codes listed in X/Open Curses issue 7.
3546         + add A_ITALIC extension (prompted by discussion with Egmont Koblinger).
3547
3548 20130824
3549         + fix some gcc 4.8 -Wconversion warnings.
3550         + change format of dpkg test-scripts to quilted to work around bug
3551           introduced by Debian #700177.
3552         + discard cached keyname() values if meta() is changed after a value
3553           was cached using (report by Kurban Mallachiev).
3554
3555 20130816
3556         + add checks in tic to warn about terminals which lack cursor
3557           addressing, capabilities or having those, are marked as hard_copy or
3558           generic_type.
3559         + use --without-progs in mingw-ncurses rpm.
3560         + split out _nc_init_termtype() from alloc_entry.c to use in MinGW
3561           port when tic and other programs are not needed.
3562
3563 20130805
3564         + minor fixes to the --disable-overwrite logic, to ensure that the
3565           configured $(includedir) is not cancelled by the mingwxx-filesystem
3566           rpm macros.
3567         + add --disable-db-install configure option, to simplify building
3568           cross-compile support packages.
3569         + add mingw-ncurses.spec file, for testing cross-compiles.
3570
3571 20130727
3572         + improve configure macros from ongoing work on cdk, dialog, xterm:
3573           + CF_ADD_LIB_AFTER - fix a problem with -Wl options
3574           + CF_RPATH_HACK - add missing result-message
3575           + CF_SHARED_OPTS - modify to use $rel_builddir in cygwin and mingw
3576             dll symbols (which can be overridden) rather than explicit "../".
3577           + CF_SHARED_OPTS - modify NetBSD and DragonFly symbols to use ${CC}
3578             rather than ${LD} to improve rpath support.
3579           + CF_SHARED_OPTS - add a symbol to denote the temporary files that
3580             are created by the macro, to simplify clean-rules.
3581           + CF_X_ATHENA - trim extra libraries to work with -Wl,--as-needed
3582         + fix a regression in hashed-database support for NetBSD, which uses
3583           the key-size differently from other implementations (cf: 20121229).
3584
3585 20130720
3586         + further improvements for setupterm manpage, clarifying the
3587           initialization of cur_term.
3588
3589 20130713
3590         + improve manpages for initscr and setupterm.
3591         + minor compiler-warning fixes
3592
3593 20130706
3594         + add fallback defs for <inttypes.h> and <stdint.h> (cf: 20120225).
3595         + add check for size of wchar_t, use that to suppress a chunk of
3596           wcwidth.h in MinGW port.
3597         + quiet linker warnings for MinGW cross-compile with dll's using the
3598           --enable-auto-import flag.
3599         + add ncurses.map rule to ncurses/Makefile to help diagnose symbol
3600           table issues.
3601
3602 20130622
3603         + modify the clear program to take into account the E3 extended
3604           capability to clear the terminal's scrollback buffer (patch by
3605           Miroslav Lichvar, Redhat #815790).
3606         + clarify in resizeterm manpage that LINES and COLS are updated.
3607         + updated ansi example in terminfo.tail, correct misordered example
3608           of sgr.
3609         + fix other doclifter warnings for manpages
3610         + remove unnecessary ".ta" in terminfo.tail, add missing ".fi"
3611           (patch by Eric Raymond).
3612
3613 20130615
3614         + minor changes to some configure macros to make them more reusable.
3615         + fixes for tabs program (prompted by report by Nick Andrik).
3616           + corrected logic in command-line parsing of -a and -c predefined
3617             tab-lists options.
3618           + allow "-0" and "-8" options to be combined with others, e.g.,"-0d".
3619           + make warning messages more consistent with the other utilities by
3620             not printing the full pathname of the program.
3621           + add -V option for consistency with other utilities.
3622         + fix off-by-one in columns for tabs program when processing an option
3623           such as "-5" (patch by Nick Andrik).
3624
3625 20130608
3626         + add to test/demo_forms.c examples of using the menu-hooks as well
3627           as showing how the menu item user-data can be used to pass a callback
3628           function pointer.
3629         + add test/dots_termcap.c
3630         + remove setupterm call from test/demo_termcap.c
3631         + build-fix if --disable-ext-funcs configure option is used.
3632         + modified test/edit_field.c and test/demo_forms.c to move the lengths
3633           into a user-data structure, keeping the original string for later
3634           expansion to free-format input/out demo.
3635         + modified test/demo_forms.c to load data from file.
3636         + added note to clarify Terminal.app's non-emulation of the various
3637           terminal types listed in the preferences dialog -TD
3638         + fix regression in error-reporting in lib_setup.c (Debian #711134,
3639           cf: 20121117).
3640         + build-fix for a case where --enable-broken_linker and
3641           --enable-reentrant options are combined (report by George R Goffe).
3642
3643 20130525
3644         + modify mvcur() to distinguish between internal use by the ncurses
3645           library, and external callers, preventing it from reading the content
3646           of the screen which is only nonblank when curses calls have updated
3647           it.  This makes test/dots_mvcur.c avoid painting colored cells in
3648           the left margin of the display.
3649         + minor fix to test/dots_mvcur.c
3650         + move configured symbols USE_DATABASE and USE_TERMCAP to term.h as
3651           NCURSES_USE_DATABASE and NCURSES_USE_TERMCAP to allow consistent
3652           use of these symbols in term_entry.h
3653
3654 20130518
3655         + corrected ifdefs in test/testcurs.c to allow comparison of mouse
3656           interface versus pdcurses (cf: 20130316).
3657         + add pow() to configure-check for math library, needed since
3658           20121208 for test/hanoi (Debian #708056).
3659         + regenerated html manpages.
3660         + update doctype used for html documentation.
3661
3662 20130511
3663         + move nsterm-related entries out of "obsolete" section to more
3664           plausible "ansi consoles" -TD
3665         + additional cleanup of table-of-contents by reordering -TD
3666         + revise fix for check for 8-bit value in _nc_insert_ch(); prior fix
3667           prevented inserts when video attributes were attached to the data
3668           (cf: 20121215) (Redhat #959534).
3669
3670 20130504
3671         + fixes for issues found by Coverity:
3672           + correct FNKEY() macro in progs/dump_entry.c, allowing kf11-kf63 to
3673             display when infocmp's -R option is used for HP or AIX subsets.
3674           + fix dead-code issue with test/movewindow.c
3675           + improve limited-checking in _nc_read_termtype().
3676
3677 20130427
3678         + fix clang 3.2 warning in progs/dump_entry.c
3679         + drop AC_TYPE_SIGNAL check; ncurses relies on c89 and later.
3680
3681 20130413
3682         + add MinGW to cases where ncurses installs by default into /usr
3683           (prompted by discussion with Daniel Silva Ferreira).
3684         + add -D option to infocmp's usage-message (patch by Miroslav Lichvar).
3685         + add a missing 'int' type for main function in configure check for
3686           type of bool variable, to work with clang 3.2 (report by Dmitri
3687           Gribenko).
3688         + improve configure check for static_cast, to work with clang 3.2
3689           (report by Dmitri Gribenko).
3690         + re-order rule for demo.o and macros defining header dependencies in
3691           c++/Makefile.in to accommodate gmake (report by Dmitri Gribenko).
3692
3693 20130406
3694         + improve parameter checking in copywin().
3695         + modify configure script to work around OS X's "libtool" program, to
3696           choose glibtool instead.  At the same time, chance the autoconf macro
3697           to look for a "tool" rather than a "prog", to help with potential use
3698           in cross-compiling.
3699         + separate the rpath usage for c++ library from demo program
3700           (Redhat #911540)
3701         + update/correct header-dependencies in c++ makefile (report by Werner
3702           Fink).
3703         + add --with-cxx-shared to dpkg-script, as done for rpm-script.
3704
3705 20130324
3706         + build-fix for libtool configuration (reports by Daniel Silva Ferreira
3707           and Roumen Petrov).
3708
3709 20130323
3710         + build-fix for OS X, to handle changes for --with-cxx-shared feature
3711           (report by Christian Ebert).
3712         + change initialization for vt220, similar entries for consistency
3713           with cursor-key strings (NetBSD #47674) -TD
3714         + further improvements to linux-16color (Benjamin Sittler)
3715
3716 20130316
3717         + additional fix for tic.c, to allocate missing buffer space.
3718         + eliminate configure-script warnings for gen-pkgconfig.in
3719         + correct typo in sgr string for sun-color,
3720           add bold for consistency with sgr,
3721           change smso for consistency with sgr -TD
3722         + correct typo in sgr string for terminator -TD
3723         + add blink to the attributes masked by ncv in linux-16color (report
3724           by Benjamin Sittler)
3725         + improve warning message from post-load checking for missing "%?"
3726           operator by tic/infocmp by showing the entry name and capability.
3727         + minor formatting improvement to tic/infocmp -f option to ensure
3728           line split after "%;".
3729         + amend scripting for --with-cxx-shared option to handle the debug
3730           library "libncurses++_g.a" (report by Sven Joachim).
3731
3732 20130309
3733         + amend change to toe.c for reading from /dev/zero, to ensure that
3734           there is a buffer for the temporary filename (cf: 20120324).
3735         + regenerated html manpages.
3736         + fix typo in terminfo.head (report by Sven Joachim, cf: 20130302).
3737         + updated some autoconf macros:
3738           + CF_ACVERSION_CHECK, from byacc 1.9 20130304
3739           + CF_INTEL_COMPILER, CF_XOPEN_SOURCE from luit 2.0-20130217
3740         + add configure option --with-cxx-shared to permit building
3741           libncurses++ as a shared library when using g++, e.g., the same
3742           limitations as libtool but better integrated with the usual build
3743           configuration (Redhat #911540).
3744         + modify MKkey_defs.sh to filter out build-path which was unnecessarily
3745           shown in curses.h (Debian #689131).
3746
3747 20130302
3748         + add section to terminfo manpage discussing user-defined capabilities.
3749         + update manpage description of NCURSES_NO_SETBUF, explaining why it
3750           is obsolete.
3751         + add a check in waddch_nosync() to ensure that tab characters are
3752           treated as control characters; some broken locales claim they are
3753           printable.
3754         + add some traces to the Windows console driver.
3755         + initialize a temporary array in _nc_mbtowc, needed for some cases
3756           of raw input in MinGW port.
3757
3758 20130218
3759         + correct ifdef on change to lib_twait.c (report by  Werner Fink).
3760         + update config.guess, config.sub
3761
3762 20130216
3763         + modify test/testcurs.c to work with mouse for ncurses as it does for
3764           pdcurses.
3765         + modify test/knight.c to work with mouse for pdcurses as it does for
3766           ncurses.
3767         + modify internal recursion in wgetch() which handles cooked mode to
3768           check if the call to wgetnstr() returned an error.  This can happen
3769           when both nocbreak() and nodelay() are set, for instance (report by
3770           Nils Christopher Brause) (cf: 960418).
3771         + fixes for issues found by Coverity:
3772           + add a check for valid position in ClearToEOS()
3773           + fix in lib_twait.c when --enable-wgetch-events is used, pointer
3774             use after free.
3775           + improve a limit-check in make_hash.c
3776           + fix a memory leak in hashed_db.c
3777
3778 20130209
3779         + modify test/configure script to make it simpler to override names
3780           of curses-related libraries, to help with linking with pdcurses in
3781           MinGW environment.
3782         + if the --with-terminfo-dirs configure option is not used, there is
3783           no corresponding compiled-in value for that.  Fill in "no default
3784           value" for that part of the manpage substitution.
3785
3786 20130202
3787         + correct initialization in knight.c which let it occasionally make
3788           an incorrect move (cf: 20001028).
3789         + improve documentation of the terminfo/termcap search path.
3790
3791 20130126
3792         + further fixes to mvcur to pass callback function (cf: 20130112),
3793           needed to make test/dots_mvcur work.
3794         + reduce calls to SetConsoleActiveScreenBuffer in win_driver.c, to
3795           help reduce flicker.
3796         + modify configure script to omit "+b" from linker options for very
3797           old HP-UX systems (report by Dennis Grevenstein)
3798         + add HP-UX workaround for missing EILSEQ on old HP-UX systems (patch
3799           by Dennis Grevenstein).
3800         + restore memmove/strdup support for antique systems (request by
3801           Dennis Grevenstein).
3802         + change %l behavior in tparm to push the string length onto the stack
3803           rather than saving the formatted length into the output buffer
3804           (report by Roy Marples, cf: 980620).
3805
3806 20130119
3807         + fixes for issues found by Coverity:
3808           + fix memory leak in safe_sprintf.c
3809           + add check for return-value in tty_update.c
3810           + correct initialization for -s option in test/view.c
3811           + add check for numeric overflow in lib_instr.c
3812           + improve error-checking in copywin
3813         + add advice in infocmp manpage for termcap users (Debian #698469).
3814         + add "-y" option to test/demo_termcap and test/demo_terminfo to
3815           demonstrate behavior with/without extended capabilities.
3816         + updated termcap manpage to document legacy termcap behavior for
3817           matching capability names.
3818         + modify name-comparison for tgetstr, etc., to accommodate legacy
3819           applications as well as to improve compatibility with BSD 4.2
3820           termcap implementations (Debian #698299) (cf: 980725).
3821
3822 20130112
3823         + correct prototype in manpage for vid_puts.
3824         + drop ncurses/tty/tty_display.h, ncurses/tty/tty_input.h, since they
3825           are unused in the current driver model.
3826         + modify mvcur to use stdout except when called within the ncurses
3827           library.
3828         + modify vidattr and vid_attr to use stdout as documented in manpage.
3829         + amend changes made to buffering in 20120825 so that the low-level
3830           putp() call uses stdout rather than ncurses' internal buffering.
3831           The putp_sp() call does the same, for consistency (Redhat #892674).
3832
3833 20130105
3834         + add "-s" option to test/view.c to allow it to start in single-step
3835           mode, reducing size of trace files when it is used for debugging
3836           MinGW changes.
3837         + revert part of 20121222 change to tinfo_driver.c
3838         + add experimental logic in win_driver.c to improve optimization of
3839           screen updates.  This does not yet work with double-width characters,
3840           so it is ifdef'd out for the moment (prompted by report by Erwin
3841           Waterlander regarding screen flicker).
3842
3843 20121229
3844         + fix Coverity warnings regarding copying into fixed-size buffers.
3845         + add throw-declarations in the c++ binding per Coverity warning.
3846         + minor changes to new-items for consistent reference to bug-report
3847           numbers.
3848
3849 20121222
3850         + add *.dSYM directories to clean-rule in ncurses directory makefile,
3851           for Mac OS builds.
3852         + add a configure check for gcc option -no-cpp-precomp, which is not
3853           available in all Mac OS X configurations (report by Andras Salamon,
3854           cf: 20011208).
3855         + improve 20021221 workaround for broken acs, handling a case where
3856           that ACS_xxx character is not in the acsc string but there is a known
3857           wide-character which can be used.
3858
3859 20121215
3860         + fix several warnings from clang 3.1 --analyze, includes correcting
3861           a null-pointer check in _nc_mvcur_resume.
3862         + correct display of double-width characters with MinGW port (report
3863           by Erwin Waterlander).
3864         + replace MinGW's wcrtomb(), fixing a problem with _nc_viscbuf
3865         > fixes based on Coverity report:
3866         + correct coloring in test/bs.c
3867         + correct check for 8-bit value in _nc_insert_ch().
3868         + remove dead code in progs/tset.c, test/linedata.h
3869         + add null-pointer checks in lib_tracemse.c, panel.priv.h, and some
3870           test-programs.
3871
3872 20121208
3873         + modify test/knight.c to show the number of choices possible for
3874           each position in automove option, e.g., to allow user to follow
3875           Warnsdorff's rule to solve the puzzle.
3876         + modify test/hanoi.c to show the minimum number of moves possible for
3877           the given number of tiles (prompted by patch by Lucas Gioia).
3878         > fixes based on Coverity report:
3879         + remove a few redundant checks.
3880         + correct logic in test/bs.c, when randomly placing a specific type of
3881           ship.
3882         + check return value from remove/unlink in tic.
3883         + check return value from sscanf in test/ncurses.c
3884         + fix a null dereference in c++/cursesw.cc
3885         + fix two instances of uninitialized variables when configuring for the
3886           terminal driver.
3887         + correct scope of variable used in SetSafeOutcWrapper macro.
3888         + set umask when calling mkstemp in tic.
3889         + initialize wbkgrndset() temporary variable when extended-colors are
3890           used.
3891
3892 20121201
3893         + also replace MinGW's wctomb(), fixing a problem with setcchar().
3894         + modify test/view.c to load UTF-8 when built with MinGW by using
3895           regular win32 API because the MinGW functions mblen() and mbtowc()
3896           do not work.
3897
3898 20121124
3899         + correct order of color initialization versus display in some of the
3900           test-programs, e.g., test_addstr.c
3901         > fixes based on Coverity report:
3902         + delete windows on exit from some of the test-programs.
3903
3904 20121117
3905         > fixes based on Coverity report:
3906         + add missing braces around FreeAndNull in two places.
3907         + various fixes in test/ncurses.c
3908         + improve limit-checks in tinfo/make_hash.c, tinfo/read_entry.c
3909         + correct malloc size in progs/infocmp.c
3910         + guard against negative array indices in test/knight.c
3911         + fix off-by-one limit check in test/color_name.h
3912         + add null-pointer check in progs/tabs.c, test/bs.c, test/demo_forms.c,
3913           test/inchs.c
3914         + fix memory-leak in tinfo/lib_setup.c, progs/toe.c,
3915           test/clip_printw.c, test/demo_menus.c
3916         + delete unused windows in test/chgat.c, test/clip_printw.c,
3917           test/insdelln.c, test/newdemo.c on error-return.
3918
3919 20121110
3920         + modify configure macro CF_INCLUDE_DIRS to put $CPPFLAGS after the
3921           local -I include options in case someone has set conflicting -I
3922           options in $CPPFLAGS (prompted by patch for ncurses/Makefile.in by
3923           Vassili Courzakis).
3924         + modify the ncurses*-config scripts to eliminate relative paths from
3925           the RPATH_LIST variable, e.g., "../lib" as used in installing shared
3926           libraries or executables.
3927
3928 20121102
3929         + realign these related pages:
3930             curs_add_wchstr.3x
3931             curs_addchstr.3x
3932             curs_addstr.3x
3933             curs_addwstr.3x
3934           and fix a long-ago error in curs_addstr.3x which said that a -1
3935           length parameter would only write as much as fit onto one line
3936           (report by Reuben Thomas).
3937         + remove obsolete fallback _nc_memmove() for memmove()/bcopy().
3938         + remove obsolete fallback _nc_strdup() for strdup().
3939         + cancel any debug-rpm in package/ncurses.spec
3940         + reviewed vte-2012, reverted most of the change since it was incorrect
3941           based on testing with tack -TD
3942         + un-cancel the initc in vte-256color, since this was implemented
3943           starting with version 0.20 in 2009 -TD
3944
3945 20121026
3946         + improve malloc/realloc checking (prompted by discussion in Redhat
3947           #866989).
3948         + add ncurses test-program as "ncurses6" to the rpm- and dpkg-scripts.
3949         + updated configure macros CF_GCC_VERSION and CF_WITH_PATHLIST.  The
3950           first corrects pattern used for Mac OS X's customization of gcc.
3951
3952 20121017
3953         + fix change to _nc_scroll_optimize(), which incorrectly freed memory
3954           (Redhat #866989).
3955
3956 20121013
3957         + add vte-2012, gnome-2012, making these the defaults for vte/gnome
3958           (patch by Christian Persch).
3959
3960 20121006
3961         + improve CF_GCC_VERSION to work around Debian's customization of gcc
3962           --version message.
3963         + improve configure macros as done in byacc:
3964           + drop 2.13 compatibility; use 2.52.xxxx version only since EMX port
3965             has used that for a while.
3966           + add 3rd parameter to AC_DEFINE's to allow autoheader to run, i.e.,
3967             for experimental use.
3968           + remove unused configure macros.
3969         + modify configure script and makefiles to quiet new autoconf warning
3970           for LIBS_TO_MAKE variable.
3971         + modify configure script to show $PATH_SEPARATOR variable.
3972         + update config.guess, config.sub
3973
3974 20120922
3975         + modify setupterm to set its copy of TERM to "unknown" if configured
3976           for the terminal driver and TERM was null or empty.
3977         + modify treatment of TERM variable for MinGW port to allow explicit
3978           use of the windows console driver by checking if $TERM is set to
3979           "#win32con" or an abbreviation of that.
3980         + undo recent change to fallback definition of vsscanf() to build with
3981           older Solaris compilers (cf: 20120728).
3982
3983 20120908
3984         + add test-screens to test/ncurses to show 256-characters at a time,
3985           to help with MinGW port.
3986
3987 20120903
3988         + simplify varargs logic in lib_printw.c; va_copy is no longer needed
3989           there.
3990         + modifications for MinGW port to make wide-character display usable.
3991
3992 20120902
3993         + regenerate configure script (report by Sven Joachim, cf: 20120901).
3994
3995 20120901
3996         + add a null-pointer check in _nc_flush (cf: 20120825).
3997         + fix a case in _nc_scroll_optimize() where the _oldnums_list array
3998           might not be allocated.
3999         + improve comparisons in configure.in for unset shell variables.
4000
4001 20120826
4002         + increase size of ncurses' output-buffer, in case of very small
4003           initial screen-sizes.
4004         + fix evaluation of TERMINFO and TERMINFO_DIRS default values as needed
4005           after changes to use --datarootdir (reports by Gabriele Balducci,
4006           Roumen Petrov).
4007
4008 20120825
4009         + change output buffering scheme, using buffer maintained by ncurses
4010           rather than stdio, to avoid problems with SIGTSTP handling (report
4011           by Brian Bloniarz).
4012
4013 20120811
4014         + update autoconf patch to 2.52.20120811, adding --datarootdir
4015           (prompted by discussion with Erwin Waterlander).
4016         + improve description of --enable-reentrant option in README and the
4017           INSTALL file.
4018         + add nsterm-256color, make this the default nsterm -TD
4019         + remove bw from nsterm-bce, per testing with tack -TD
4020
4021 20120804
4022         + update test/configure, adding check for tinfo library.
4023         + improve limit-checks for the getch fifo (report by Werner Fink).
4024         + fix a remaining mismatch between $with_echo and the symbols updated
4025           for CF_DISABLE_ECHO affecting parameters for mk-2nd.awk (report by
4026           Sven Joachim, cf:  20120317).
4027         + modify followup check for pkg-config's library directory in the
4028           --enable-pc-files option to validate syntax (report by Sven Joachim,
4029           cf: 20110716).
4030
4031 20120728
4032         + correct path for ncurses_mingw.h in include/headers, in case build
4033           is done outside source-tree (patch by Roumen Petrov).
4034         + modify some older xterm entries to align with xterm source -TD
4035         + separate "xterm-old" alias from "xterm-r6" -TD
4036         + add E3 extended capability to xterm-basic and putty -TD
4037         + parenthesize parameters of other macros in curses.h -TD
4038         + parenthesize parameter of COLOR_PAIR and PAIR_NUMBER in curses.h
4039           in case it happens to be a comma-expression, etc.  (patch by Nick
4040           Black).
4041
4042 20120721
4043         + improved form_request_by_name() and menu_request_by_name().
4044         + eliminate two fixed-size buffers in toe.c
4045         + extend use_tioctl() to have expected behavior when use_env(FALSE) and
4046           use_tioctl(TRUE) are called.
4047         + modify ncurses test-program, adding -E and -T options to demonstrate
4048           use_env() versus use_tioctl().
4049
4050 20120714
4051         + add use_tioctl() function (adapted from patch by Werner Fink,
4052           Novell #769788):
4053
4054 20120707
4055         + add ncurses_mingw.h to installed headers (prompted by patch by
4056           Juergen Pfeifer).
4057         + clarify return-codes from wgetch() in response to SIGWINCH (prompted
4058           by Novell #769788).
4059         + modify resizeterm() to always push a KEY_RESIZE onto the fifo, even
4060           if screensize is unchanged.  Modify _nc_update_screensize() to push a
4061           KEY_RESIZE if there was a SIGWINCH, even if it does not call
4062           resizeterm().  These changes eliminate the case where a SIGWINCH is
4063           received, but ERR returned from wgetch or wgetnstr because the screen
4064           dimensions did not change (Novell #769788).
4065
4066 20120630
4067         + add --enable-interop to sample package scripts (suggested by Juergen
4068           Pfeifer).
4069         + update CF_PATH_SYNTAX macro, from mawk changes.
4070         + modify mk-0th.awk to allow for generating llib-ltic, etc., though
4071           some work is needed on cproto to work with lib_gen.c to update
4072           llib-lncurses.
4073         + remove redundant getenv() cal in database-iterator leftover from
4074           cleanup in 20120622 changes (report by Sven Joachim).
4075
4076 20120622
4077         + add -d, -e and -q options to test/demo_terminfo and test/demo_termcap
4078         + fix caching of environment variables in database-iterator (patch by
4079           Philippe Troin, Redhat #831366).
4080
4081 20120616
4082         + add configure check to distinguish clang from gcc to eliminate
4083           warnings about unused command-line parameters when compiler warnings
4084           are enabled.
4085         + improve behavior when updating terminfo entries which are hardlinked
4086           by allowing for the possibility that an alias has been repurposed to
4087           a new primary name.
4088         + fix some strict compiler warnings based on package scripts.
4089         + further fixes for configure check for working poll (Debian #676461).
4090
4091 20120608
4092         + fix an uninitialized variable in -c/-n logic for infocmp changes
4093           (cf: 20120526).
4094         + corrected fix for building c++ binding with clang 3.0 (report/patch
4095           by Richard Yao, Gentoo #417613, cf: 20110409)
4096         + correct configure check for working poll, fixing the case where stdin
4097           is redirected, e.g., in rpm/dpkg builds (Debian #676461).
4098         + add rpm- and dpkg-scripts, to test those build-environments.
4099           The resulting packages are used only for testing.
4100
4101 20120602
4102         + add kdch1 aka "Remove" to vt220 and vt220-8 entries -TD
4103         + add kdch1, etc., to qvt108 -TD
4104         + add dl1/il1 to some entries based on dl/il values -TD
4105         + add dl to simpleterm -TD
4106         + add consistency-checks in tic for insert-line vs delete-line
4107           controls, and insert/delete-char keys
4108         + correct no-leaks logic in infocmp when doing comparisons, fixing
4109           duplicate free of entries given via the command-line, and freeing
4110           entries loaded from the last-but-one of files specified on the
4111           command-line.
4112         + add kdch1 to wsvt25 entry from NetBSD CVS (reported by David Lord,
4113           analysis by Martin Husemann).
4114         + add cnorm/civis to wsvt25 entry from NetBSD CVS (report/analysis by
4115           Onno van der Linden).
4116
4117 20120526
4118         + extend -c and -n options of infocmp to allow comparing more than two
4119           entries.
4120         + correct check in infocmp for number of terminal names when more than
4121           two are given.
4122         + correct typo in curs_threads.3x (report by Yanhui Shen on
4123           freebsd-hackers mailing list).
4124
4125 20120512
4126         + corrected 'op' for bterm (report by Samuel Thibault) -TD
4127         + modify test/background.c to demonstrate a background character
4128           holding a colored ACS_HLINE.  The behavior differs from SVr4 due to
4129           the thick- and double-line extension (cf: 20091003).
4130         + modify handling of acs characters in PutAttrChar to avoid mapping an
4131           unmapped character to a space with A_ALTCHARSET set.
4132         + rewrite vt520 entry based on vt420 -TD
4133
4134 20120505
4135         + remove p6 (bold) from opus3n1+ for consistency -TD
4136         + remove acs stuff from env230 per clues in Ingres termcap -TD
4137         + modify env230 sgr/sgr0 to match other capabilities -TD
4138         + modify smacs/rmacs in bq300-8 to match sgr/sgr0 -TD
4139         + make sgr for dku7202 agree with other caps -TD
4140         + make sgr for ibmpc agree with other caps -TD
4141         + make sgr for tek4107 agree with other caps -TD
4142         + make sgr for ndr9500 agree with other caps -TD
4143         + make sgr for sco-ansi agree with other caps -TD
4144         + make sgr for d410 agree with other caps -TD
4145         + make sgr for d210 agree with other caps -TD
4146         + make sgr for d470c, d470c-7b agree with other caps -TD
4147         + remove redundant AC_DEFINE for NDEBUG versus Makefile definition.
4148         + fix a back-link in _nc_delink_entry(), which is needed if ncurses is
4149           configured with --enable-termcap and --disable-getcap.
4150
4151 20120428
4152         + fix some inconsistencies between vt320/vt420, e.g., cnorm/civis -TD
4153         + add eslok flag to dec+sl -TD
4154         + dec+sl applies to vt320 and up -TD
4155         + drop wsl width from xterm+sl -TD
4156         + reuse xterm+sl in putty and nsca-m -TD
4157         + add ansi+tabs to vt520 -TD
4158         + add ansi+enq to vt220-vt520 -TD
4159         + fix a compiler warning in example in ncurses-intro.doc (Paul Waring).
4160         + added paragraph in keyname manpage telling how extended capabilities
4161           are interpreted as key definitions.
4162         + modify tic's check of conflicting key definitions to include extended
4163           capability strings in addition to the existing check on predefined
4164           keys.
4165
4166 20120421
4167         + improve cleanup of temporary files in tic using atexit().
4168         + add msgr to vt420, similar DEC vtXXX entries -TD
4169         + add several missing vt420 capabilities from vt220 -TD
4170         + factor out ansi+pp from several entries -TD
4171         + change xterm+sl and xterm+sl-twm to include only the status-line
4172           capabilities and not "use=xterm", making them more generally useful
4173           as building-blocks -TD
4174         + add dec+sl building block, as example -TD
4175
4176 20120414
4177         + add XT to some terminfo entries to improve usefulness for other
4178           applications than screen, which would like to pretend that xterm's
4179           title is a status-line.  -TD
4180         + change use-clauses in ansi-mtabs, hp2626, and hp2622 based on review
4181           of ordering and overrides -TD
4182         + add consistency check in tic for screen's "XT" capability.
4183         + add section in terminfo.src summarizing the user-defined capabilities
4184           used in that file -TD
4185
4186 20120407
4187         + fix an inconsistency between tic/infocmp "-x" option; tic omits all
4188           non-standard capabilities, while infocmp was ignoring only the user
4189           definable capabilities.
4190         + improve special case in tic parsing of description to allow it to be
4191           followed by terminfo capabilities.  Previously the description had to
4192           be the last field on an input line to allow tic to distinguish
4193           between termcap and terminfo format while still allowing commas to be
4194           embedded in the description.
4195         + correct variable name in gen_edit.sh which broke configurability of
4196           the --with-xterm-kbs option.
4197         + revert 2011-07-16 change to "linux" alias, return to "linux2.2" -TD
4198         + further amend 20110910 change, providing for configure-script
4199           override of the "linux" terminfo entry to install and changing the
4200           default for that to "linux2.2" (Debian #665959).
4201
4202 20120331
4203         + update Ada95/configure to use CF_DISABLE_ECHO (cf: 20120317).
4204         + correct order of use-clauses in st-256color -TD
4205         + modify configure script to look for gnatgcc if the Ada95 binding
4206           is built, in preference to the default gcc/cc (suggested by
4207           Nicolas Boulenguez).
4208         + modify configure script to ensure that the same -On option used for
4209           the C compiler in CFLAGS is used for ADAFLAGS rather than simply
4210           using "-O3" (suggested by Nicolas Boulenguez)
4211
4212 20120324
4213         + amend an old fix so that next_char() exits properly for empty files,
4214           e.g., from reading /dev/null (cf: 20080804).
4215         + modify tic so that it can read from the standard input, or from
4216           a character device.  Because tic uses seek's, this requires writing
4217           the data to a temporary file first (prompted by remark by Sven
4218           Joachim) (cf: 20000923).
4219
4220 20120317
4221         + correct a check made in lib_napms.c, so that terminfo applications
4222           can again use napms() (cf: 20110604).
4223         + add a note in tic.h regarding required casts for ABSENT_BOOLEAN
4224           (cf: 20040327).
4225         + correct scripting for --disable-echo option in test/configure.
4226         + amend check for missing c++ compiler to work when no error is
4227           reported, and no variables set (cf: 20021206).
4228         + add/use configure macro CF_DISABLE_ECHO.
4229
4230 20120310
4231         + fix some strict compiler warnings for abi6 and 64-bits.
4232         + use begin_va_copy/end_va_copy macros in lib_printw.c (cf: 20120303).
4233         + improve a limit-check in infocmp.c (Werner Fink):
4234
4235 20120303
4236         + minor tidying of terminfo.tail, clarify reason for limitation
4237           regarding mapping of \0 to \200
4238         + minor improvement to _nc_copy_termtype(), using memcpy to replace
4239           loops.
4240         + fix no-leaks checking in test/demo_termcap.c to account for multiple
4241           calls to setupterm().
4242         + modified the libgpm change to show previous load as a problem in the
4243           debug-trace.
4244         > merge some patches from OpenSUSE rpm (Werner Fink):
4245         + ncurses-5.7-printw.dif, fixes for varargs handling in lib_printw.c
4246         + ncurses-5.7-gpm.dif, do not dlopen libgpm if already loaded by
4247           runtime linker
4248         + ncurses-5.6-fallback.dif, do not free arrays and strings from static
4249           fallback entries
4250
4251 20120228
4252         + fix breakage in tic/infocmp from 20120225 (report by Werner Fink).
4253
4254 20120225
4255         + modify configure script to allow creating dll's for MinGW when
4256           cross-compiling.
4257         + add --enable-string-hacks option to control whether strlcat and
4258           strlcpy may be used.  The same issue applies to OpenBSD's warnings
4259           about snprintf, noting that this function is weakly standardized.
4260         + add configure checks for strlcat, strlcpy and snprintf, to help
4261           reduce bogus warnings with OpenBSD builds.
4262         + build-fix for OpenBSD 4.9 to supply consistent intptr_t declaration
4263           (cf:20111231)
4264         + update config.guess, config.sub
4265
4266 20120218
4267         + correct CF_ETIP_DEFINES configure macro, making it exit properly on
4268           the first success (patch by Pierre Labastie).
4269         + improve configure macro CF_MKSTEMP by moving existence-check for
4270           mkstemp out of the AC_TRY_RUN, to help with cross-compiles.
4271         + improve configure macro CF_FUNC_POLL from luit changes to detect
4272           broken implementations, e.g., with Mac OS X.
4273         + add configure option --with-tparm-arg
4274         + build-fix for MinGW cross-compiling, so that make_hash does not
4275           depend on TTY definition (cf: 20111008).
4276
4277 20120211
4278         + make sgr for xterm-pcolor agree with other caps -TD
4279         + make sgr for att5425 agree with other caps -TD
4280         + make sgr for att630 agree with other caps -TD
4281         + make sgr for linux entries agree with other caps -TD
4282         + make sgr for tvi9065 agree with other caps -TD
4283         + make sgr for ncr260vt200an agree with other caps -TD
4284         + make sgr for ncr160vt100pp agree with other caps -TD
4285         + make sgr for ncr260vt300an agree with other caps -TD
4286         + make sgr for aaa-60-dec-rv, aaa+dec agree with other caps -TD
4287         + make sgr for cygwin, cygwinDBG agree with other caps -TD
4288         + add configure option --with-xterm-kbs to simplify configuration for
4289           Linux versus most other systems.
4290
4291 20120204
4292         + improved tic -D option, avoid making target directory and provide
4293           better diagnostics.
4294
4295 20120128
4296         + add mach-gnu (Debian #614316, patch by Samuel Thibault)
4297         + add mach-gnu-color, tweaks to mach-gnu terminfo -TD
4298         + make sgr for sun-color agree with smso -TD
4299         + make sgr for prism9 agree with other caps -TD
4300         + make sgr for icl6404 agree with other caps -TD
4301         + make sgr for ofcons agree with other caps -TD
4302         + make sgr for att5410v1, att4415, att620 agree with other caps -TD
4303         + make sgr for aaa-unk, aaa-rv agree with other caps -TD
4304         + make sgr for avt-ns agree with other caps -TD
4305         + amend fix intended to separate fixups for acsc to allow "tic -cv" to
4306           give verbose warnings (cf:  20110730).
4307         + modify misc/gen-edit.sh to make the location of the tabset directory
4308           consistent with misc/Makefile.in, i.e., using ${datadir}/tabset
4309           (Debian #653435, patch by Sven Joachim).
4310
4311 20120121
4312         + add --with-lib-prefix option to allow configuring for old/new flavors
4313           of OS/2 EMX.
4314         + modify check for gnat version to allow for year, as used in FreeBSD
4315           port.
4316         + modify check_existence() in db_iterator.c to simply check if the
4317           path is a directory or file, according to the need.  Checking for
4318           directory size also gives no usable result with OS/2 (cf: 20120107).
4319         + support OS/2 kLIBC (patch by KO Myung-Hun).
4320
4321 20120114
4322         + several improvements to test/movewindow.c (prompted by discussion on
4323           Linux Mint forum):
4324           + modify movement commands to make them continuous
4325           + rewrote the test for mvderwin
4326           + rewrote the test for recursive mvwin
4327         + split-out reusable CF_WITH_NCURSES_ETC macro in test/configure.in
4328         + updated configure macro CF_XOPEN_SOURCE, build-fixes for Mac OS X
4329           and OpenBSD.
4330         + regenerated html manpages.
4331
4332 20120107
4333         + various improvements for MinGW (Juergen Pfeifer):
4334           + modify stat() calls to ignore the st_size member
4335           + drop mk-dlls.sh script.
4336           + change recommended regular expression library.
4337           + modify rain.c to allow for threaded configuration.
4338           + modify tset.c to allow for case when size-change logic is not used.
4339
4340 20111231
4341         + modify toe's report when -a and -s options are combined, to add
4342           a column showing which entries belong to a given database.
4343         + add -s option to toe, to sort its output.
4344         + modify progs/toe.c, simplifying use of db-iterator results to use
4345           caching improvements from 20111001 and 20111126.
4346         + correct generation of pc-files when ticlib or termlib options are
4347           given to rename the corresponding tic- or tinfo-libraries (report
4348           by Sven Joachim).
4349
4350 20111224
4351         + document a portability issue with tput, i.e., that scripts which work
4352           with ncurses may fail in other implementations that do no parameter
4353           analysis.
4354         + add putty-sco entry -TD
4355
4356 20111217
4357         + review/fix places in manpages where --program-prefix configure option
4358           was not being used.
4359         + add -D option to infocmp, to show the database locations that it
4360           could use.
4361         + fix build for the special case where term-driver, ticlib and termlib
4362           are all enabled.  The terminal driver depends on a few features in
4363           the base ncurses library, so tic's dependencies include both ncurses
4364           and termlib.
4365         + fix build work for term-driver when --enable-wgetch-events option is
4366           enabled.
4367         + use <stdint.h> types to fix some questionable casts to void*.
4368
4369 20111210
4370         + modify configure script to check if thread library provides
4371           pthread_mutexattr_settype(), e.g., not provided by Solaris 2.6
4372         + modify configure script to suppress check to define _XOPEN_SOURCE
4373           for IRIX64, since its header files have a conflict versus
4374           _SGI_SOURCE.
4375         + modify configure script to add ".pc" files for tic- and
4376           tinfo-libraries, which were omitted in recent change (cf: 20111126).
4377         + fix inconsistent checks on $PKG_CONFIG variable in configure script.
4378
4379 20111203
4380         + modify configure-check for etip.h dependencies, supplying a temporary
4381           copy of ncurses_dll.h since it is a generated file (prompted by
4382           Debian #646977).
4383         + modify CF_CPP_PARAM_INIT "main" function to work with current C++.
4384
4385 20111126
4386         + correct database iterator's check for duplicate entries
4387           (cf: 20111001).
4388         + modify database iterator to ignore $TERMCAP when it is not an
4389           absolute pathname.
4390         + add -D option to tic, to show the database locations that it could
4391           use.
4392         + improve description of database locations in tic manpage.
4393         + modify the configure script to generate a list of the ".pc" files to
4394           generate, rather than deriving the list from the libraries which have
4395           been built (patch by Mike Frysinger).
4396         + use AC_CHECK_TOOLS in preference to AC_PATH_PROGS when searching for
4397           ncurses*-config, e.g., in Ada95/configure and test/configure (adapted
4398           from patch by Mike Frysinger).
4399
4400 20111119
4401         + remove obsolete/conflicting fallback definition for _POSIX_SOURCE
4402           from curses.priv.h, fixing a regression with IRIX64 and Tru64
4403           (cf: 20110416)
4404         + modify _nc_tic_dir() to ensure that its return-value is nonnull,
4405           i.e., the database iterator was not initialized.  This case is needed
4406           to when tic is translating to termcap, rather than loading the
4407           database (cf:  20111001).
4408
4409 20111112
4410         + add pccon entries for OpenBSD console (Alexei Malinin).
4411         + build-fix for OpenBSD 4.9 with gcc 4.2.1, setting _XOPEN_SOURCE to
4412           600 to work around inconsistent ifdef'ing of wcstof between C and
4413           C++ header files.
4414         + modify capconvert script to accept more than exact match on "xterm",
4415           e.g., the "xterm-*" variants, to exclude from the conversion (patch
4416           by Robert Millan).
4417         + add -lc_r as alternative for -lpthread, allows build of threaded code
4418           in older FreeBSD machines.
4419         + build-fix for MirBSD, which fails when either _XOPEN_SOURCE or
4420           _POSIX_SOURCE are defined.
4421         + fix a typo misc/Makefile.in, used in uninstalling pc-files.
4422
4423 20111030
4424         + modify make_db_path() to allow creating "terminfo.db" in the same
4425           directory as an existing "terminfo" directory.  This fixes a case
4426           where switching between hashed/filesystem databases would cause the
4427           new hashed database to be installed in the next best location -
4428           root's home directory.
4429         + add variable cf_cv_prog_gnat_correct to those passed to
4430           config.status, fixing a problem with Ada95 builds (cf: 20111022).
4431         + change feature test from _XPG5 to _XOPEN_SOURCE in two places, to
4432           accommodate broken implementations for _XPG6.
4433         + eliminate usage of NULL symbol from etip.h, to reduce header
4434           interdependencies.
4435         + add configure check to decide when to add _XOPEN_SOURCE define to
4436           compiler options, i.e., for Solaris 10 and later (cf: 20100403).
4437           This is a workaround for gcc 4.6, which fails to build the c++
4438           binding if that symbol is defined by the application, due to
4439           incorrectly combining the corresponding feature test macros
4440           (report by Peter Kruse).
4441
4442 20111022
4443         + correct logic for discarding mouse events, retaining the partial
4444           events used to build up click, double-click, etc, until needed
4445           (cf: 20110917).
4446         + fix configure script to avoid creating unused Ada95 makefile when
4447           gnat does not work.
4448         + cleanup width-related gcc 3.4.3 warnings for 64-bit platform, for the
4449           internal functions of libncurses.  The external interface of courses
4450           uses bool, which still produces these warnings.
4451
4452 20111015
4453         + improve description of --disable-tic-depends option to make it
4454           clear that it may be useful whether or not the --with-termlib
4455           option is also given (report by Sven Joachim).
4456         + amend termcap equivalent for set_pglen_inch to use the X/Open
4457           "YI" rather than the obsolete Solaris 2.5 "sL" (cf: 990109).
4458         + improve manpage for tgetent differences from termcap library.
4459
4460 20111008
4461         + moved static data from db_iterator.c to lib_data.c
4462         + modify db_iterator.c for memory-leak checking, fix one leak.
4463         + modify misc/gen-pkgconfig.in to use Requires.private for the parts
4464           of ncurses rather than Requires, as well as Libs.private for the
4465           other library dependencies (prompted by Debian #644728).
4466
4467 20111001
4468         + modify tic "-K" option to only set the strict-flag rather than force
4469           source-output.  That allows the same flag to control the parser for
4470           input and output of termcap source.
4471         + modify _nc_getent() to ignore backslash at the end of a comment line,
4472           making it consistent with ncurses' parser.
4473         + restore a special-case check for directory needed to make termcap
4474           text files load as if they were databases (cf: 20110924).
4475         + modify tic's resolution/collision checking to attempt to remove the
4476           conflicting alias from the second entry in the pair, which is
4477           normally following in the source file.  Also improved the warning
4478           message to make it simpler to see which alias is the problem.
4479         + improve performance of the database iterator by caching search-list.
4480
4481 20110925
4482         + add a missing "else" in changes to _nc_read_tic_entry().
4483
4484 20110924
4485         + modify _nc_read_tic_entry() so that hashed-database is checked before
4486           filesystem.
4487         + updated CF_CURSES_LIBS check in test/configure script.
4488         + modify configure script and makefiles to split TIC_ARGS and
4489           TINFO_ARGS into pieces corresponding to LDFLAGS and LIBS variables,
4490           to help separate searches for tic- and tinfo-libraries (patch by Nick
4491           Alcock aka "Nix").
4492         + build-fix for lib_mouse.c changes (cf: 20110917).
4493
4494 20110917
4495         + fix compiler warning for clang 2.9
4496         + improve merging of mouse events (integrated patch by Damien
4497           Guibouret).
4498         + correct mask-check used in lib_mouse for wheel mouse buttons 4/5
4499           (patch by Damien Guibouret).
4500
4501 20110910
4502         + modify misc/gen_edit.sh to select a "linux" entry which works with
4503           the current kernel rather than assuming it is always "linux3.0"
4504           (cf: 20110716).
4505         + revert a change to getmouse() which had the undesirable side-effect
4506           of suppressing button-release events (report by Damien Guibouret,
4507           cf: 20100102).
4508         + add xterm+kbs fragment from xterm #272 -TD
4509         + add configure option --with-pkg-config-libdir to provide control over
4510           the actual directory into which pc-files are installed, do not use
4511           the pkg-config environment variables (discussion with Frederic L W
4512           Meunier).
4513         + add link to mailing-list archive in announce.html.in, as done in
4514           FAQ (prompted by question by Andrius Bentkus).
4515         + improve manpage install by adjusting the "#include" examples to
4516           show the ncurses-subdirectory used when --disable-overwrite option
4517           is used.
4518         + install an alias for "curses" to the ncurses manpage, tied to the
4519           --with-curses-h configure option (suggested by Reuben Thomas).
4520
4521 20110903
4522         + propagate error-returns from wresize, i.e., the internal
4523           increase_size and decrease_size functions through resize_term (report
4524           by Tim van der Molen, cf:  20020713).
4525         + fix typo in tset manpage (patch by Sven Joachim).
4526
4527 20110820
4528         + add a check to ensure that termcap files which might have "^?" do
4529           not use the terminfo interpretation as "\177".
4530         + minor cleanup of X-terminal emulator section of terminfo.src -TD
4531         + add terminator entry -TD
4532         + add simpleterm entry -TD
4533         + improve wattr_get macros by ensuring that if the window pointer is
4534           null, then the attribute and color values returned will be zero
4535           (cf: 20110528).
4536
4537 20110813
4538         + add substitution for $RPATH_LIST to misc/ncurses-config.in
4539         + improve performance of tic with hashed-database by caching the
4540           database connection, using atexit() to cleanup.
4541         + modify treatment of 2-character aliases at the beginning of termcap
4542           entries so they are not counted in use-resolution, since these are
4543           guaranteed to be unique.  Also ignore these aliases when reporting
4544           the primary name of the entry (cf: 20040501)
4545         + double-check gn (generic) flag in terminal descriptions to
4546           accommodate old/buggy termcap databases which misused that feature.
4547         + minor fixes to _nc_tgetent(), ensure buffer is initialized even on
4548           error-return.
4549
4550 20110807
4551         + improve rpath fix from 20110730 by ensuring that the new $RPATH_LIST
4552           variable is defined in the makefiles which use it.
4553         + build-fix for DragonFlyBSD's pkgsrc in test/configure script.
4554         + build-fixes for NetBSD 5.1 with termcap support enabled.
4555         + corrected k9 in dg460-ansi, add other features based on manuals -TD
4556         + improve trimming of whitespace at the end of terminfo/termcap output
4557           from tic/infocmp.
4558         + when writing termcap source, ensure that colons in the description
4559           field are translated to a non-delimiter, i.e., "=".
4560         + add "-0" option to tic/infocmp, to make the termcap/terminfo source
4561           use a single line.
4562         + add a null-pointer check when handling the $CC variable.
4563
4564 20110730
4565         + modify configure script and makefiles in c++ and progs to allow the
4566           directory used for rpath option to be overridden, e.g., to work
4567           around updates to the variables used by tic during an install.
4568         + add -K option to tic/infocmp, to provide stricter BSD-compatibility
4569           for termcap output.
4570         + add _nc_strict_bsd variable in tic library which controls the
4571           "strict" BSD termcap compatibility from 20110723, plus these
4572           features:
4573           + allow escapes such as "\8" and "\9" when reading termcap
4574           + disallow "\a", "\e", "\l", "\s" and "\:" escapes when reading
4575             termcap files, passing through "a", "e", etc.
4576           + expand "\:" as "\072" on output.
4577         + modify _nc_get_token() to reset the token's string value in case
4578           there is a string-typed token lacking the "=" marker.
4579         + fix a few memory leaks in _nc_tgetent.
4580         + fix a few places where reading from a termcap file could refer to
4581           freed memory.
4582         + add an overflow check when converting terminfo/termcap numeric
4583           values, since terminfo stores those in a short, and they must be
4584           positive.
4585         + correct internal variables used for translating to termcap "%>"
4586           feature, and translating from termcap %B to terminfo, needed by
4587           tctest (cf: 19991211).
4588         + amend a minor fix to acsc when loading a termcap file to separate it
4589           from warnings needed for tic (cf: 20040710)
4590         + modify logic in _nc_read_entry() and _nc_read_tic_entry() to allow
4591           a termcap file to be handled via TERMINFO_DIRS.
4592         + modify _nc_infotocap() to include non-mandatory padding when
4593           translating to termcap.
4594         + modify _nc_read_termcap_entry(), passing a flag in the case where
4595           getcap is used, to reduce interactive warning messages.
4596
4597 20110723
4598         + add a check in start_color() to limit color-pairs to 256 when
4599           extended colors are not supported (patch by David Benjamin).
4600         + modify setcchar to omit no-longer-needed OR'ing of color pair in
4601           the SetAttr() macro (patch by David Benjamin).
4602         + add kich1 to sun terminfo entry (Yuri Pankov)
4603         + use bold rather than reverse for smso in sun-color terminfo entry
4604           (Yuri Pankov).
4605         + improve generation of termcap using tic/infocmp -C option, e.g.,
4606           to correspond with 4.2BSD (prompted by discussion with Yuri Pankov
4607           regarding Schilling's test program):
4608           + translate %02 and %03 to %2 and %3 respectively.
4609           + suppress string capabilities which use %s, not supported by tgoto
4610           + use \040 rather than \s
4611           + expand null characters as \200 rather than \0
4612         + modify configure script to support shared libraries for DragonFlyBSD.
4613
4614 20110716
4615         + replace an assert() in _nc_Free_Argument() with a regular null
4616           pointer check (report/analysis by Franjo Ivancic).
4617         + modify configure --enable-pc-files option to take into account the
4618           PKG_CONFIG_PATH variable (report by Frederic L W Meunier).
4619         + add/use xterm+tmux chunk from xterm #271 -TD
4620         + resync xterm-new entry from xterm #271 -TD
4621         + add E3 extended capability to linux-basic (Miroslav Lichvar)
4622         + add linux2.2, linux2.6, linux3.0 entries to give context for E3 -TD
4623         + add SI/SO change to linux2.6 entry (Debian #515609) -TD
4624         + fix inconsistent tabset path in pcmw (Todd C. Miller).
4625         + remove a backslash which continued comment, obscuring altos3
4626           definition with OpenBSD toolset (Nicholas Marriott).
4627
4628 20110702
4629         + add workaround from xterm #271 changes to ensure that compiler flags
4630           are not used in the $CC variable.
4631         + improve support for shared libraries, tested with AIX 5.3, 6.1 and
4632           7.1 with both gcc 4.2.4 and cc.
4633         + modify configure checks for AIX to include release 7.x
4634         + add loader flags/libraries to libtool options so that dynamic loading
4635           works properly, adapted from ncurses-5.7-ldflags-with-libtool.patch
4636           at gentoo prefix repository (patch by Michael Haubenwallner).
4637
4638 20110626
4639         + move include of nc_termios.h out of term_entry.h, since the latter
4640           is installed, e.g., for tack while the former is not (report by
4641           Sven Joachim).
4642
4643 20110625
4644         + improve cleanup() function in lib_tstp.c, using _exit() rather than
4645           exit() and checking for SIGTERM rather than SIGQUIT (prompted by
4646           comments forwarded by Nicholas Marriott).
4647         + reduce name pollution from term.h, moving fallback #define's for
4648           tcgetattr(), etc., to new private header nc_termios.h (report by
4649           Sergio NNX).
4650         + two minor fixes for tracing (patch by Vassili Courzakis).
4651         + improve trace initialization by starting it in use_env() and
4652           ripoffline().
4653         + review old email, add details for some changelog entries.
4654
4655 20110611
4656         + update minix entry to minix 3.2 (Thomas Cort).
4657         + fix a strict compiler warning in change to wattr_get (cf: 20110528).
4658
4659 20110604
4660         + fixes for MirBSD port:
4661           + set default prefix to /usr.
4662           + add support for shared libraries in configure script.
4663           + use S_ISREG and S_ISDIR consistently, with fallback definitions.
4664         + add a few more checks based on ncurses/link_test.
4665         + modify MKlib_gen.sh to handle sp-funcs renaming of NCURSES_OUTC type.
4666
4667 20110528
4668         + add case to CF_SHARED_OPTS for Interix (patch by Markus Duft).
4669         + used ncurses/link_test to check for behavior when the terminal has
4670           not been initialized and when an application passes null pointers
4671           to the library.  Added checks to cover this (prompted by Redhat
4672           #707344).
4673         + modify MKlib_gen.sh to make its main() function call each function
4674           with zero parameters, to help find inconsistent checking for null
4675           pointers, etc.
4676
4677 20110521
4678         + fix warnings from clang 2.7 "--analyze"
4679
4680 20110514
4681         + compiler-warning fixes in panel and progs.
4682         + modify CF_PKG_CONFIG macro, from changes to tin -TD
4683         + modify CF_CURSES_FUNCS configure macro, used in test directory
4684           configure script:
4685           + work around (non-optimizer) bug in gcc 4.2.1 which caused
4686             test-expression to be omitted from executable.
4687           + force the linker to see a link-time expression of a symbol, to
4688             help work around weak-symbol issues.
4689
4690 20110507
4691         + update discussion of MKfallback.sh script in INSTALL; normally the
4692           script is used automatically via the configured makefiles.  However
4693           there are still occasions when it might be used directly by packagers
4694           (report by Gunter Schaffler).
4695         + modify misc/ncurses-config.in to omit the "-L" option from the
4696           "--libs" output if the library directory is /usr/lib.
4697         + change order of tests for curses.h versus ncurses.h headers in the
4698           configure scripts for Ada95 and test-directories, to look for
4699           ncurses.h, from fixes to tin -TD
4700         + modify ncurses/tinfo/access.c to account for Tandem's root uid
4701           (report by Joachim Schmitz).
4702
4703 20110430
4704         + modify rules in Ada95/src/Makefile.in to ensure that the PIC option
4705           is not used when building a static library (report by Nicolas
4706           Boulenguez):
4707         + Ada95 build-fix for big-endian architectures such as sparc.  This
4708           undoes one of the fixes from 20110319, which added an "Unused" member
4709           to representation clauses, replacing that with pragmas to suppress
4710           warnings about unused bits (patch by Nicolas Boulenguez).
4711
4712 20110423
4713         + add check in test/configure for use_window, use_screen.
4714         + add configure-checks for getopt's variables, which may be declared
4715           as different types on some Unix systems.
4716         + add check in test/configure for some legacy curses types of the
4717           function pointer passed to tputs().
4718         + modify init_pair() to accept -1's for color value after
4719           assume_default_colors() has been called (Debian #337095).
4720         + modify test/background.c, adding commmand-line options to demonstrate
4721           assume_default_colors() and use_default_colors().
4722
4723 20110416
4724         + modify configure script/source-code to only define _POSIX_SOURCE if
4725           the checks for sigaction and/or termios fail, and if _POSIX_C_SOURCE
4726           and _XOPEN_SOURCE are undefined (report by Valentin Ochs).
4727         + update config.guess, config.sub
4728
4729 20110409
4730         + fixes to build c++ binding with clang 3.0 (patch by Alexander
4731           Kolesen).
4732         + add check for unctrl.h in test/configure, to work around breakage in
4733           some ncurses packages.
4734         + add "--disable-widec" option to test/configure script.
4735         + add "--with-curses-colr" and "--with-curses-5lib" options to the
4736           test/configure script to address testing with very old machines.
4737
4738 20110404 5.9 release for upload to ftp.gnu.org
4739
4740 20110402
4741         + various build-fixes for the rpm/dpkg scripts.
4742         + add "--enable-rpath-link" option to Ada95/configure, to allow
4743           packages to suppress the rpath feature which is normally used for
4744           the in-tree build of sample programs.
4745         + corrected definition of libdir variable in Ada95/src/Makefile.in,
4746           needed for rpm script.
4747         + add "--with-shared" option to Ada95/configure script, to allow
4748           making the C-language parts of the binding use appropriate compiler
4749           options if building a shared library with gnat.
4750
4751 20110329
4752         > portability fixes for Ada95 binding:
4753         + add configure check to ensure that SIGINT works with gnat.  This is
4754           needed for the "rain" sample program.  If SIGINT does not work, omit
4755           that sample program.
4756         + correct typo in check of $PKG_CONFIG variable in Ada95/configure
4757         + add ncurses_compat.c, to supply functions used in the Ada95 binding
4758           which were added in 5.7 and later.
4759         + modify sed expression in CF_NCURSES_ADDON to eliminate a dependency
4760           upon GNU sed.
4761
4762 20110326
4763         + add special check in Ada95/configure script for ncurses6 reentrant
4764           code.
4765         + regen Ada html documentation.
4766         + build-fix for Ada shared libraries versus the varargs workaround.
4767         + add rpm and dpkg scripts for Ada95 and test directories, for test
4768           builds.
4769         + update test/configure macros CF_CURSES_LIBS, CF_XOPEN_SOURCE and
4770           CF_X_ATHENA_LIBS.
4771         + add configure check to determine if gnat's project feature supports
4772           libraries, i.e., collections of .ali files.
4773         + make all dereferences in Ada95 samples explicit.
4774         + fix typo in comment in lib_add_wch.c (patch by Petr Pavlu).
4775         + add configure check for, ifdef's for math.h which is in a separate
4776           package on Solaris and potentially not installed (report by Petr
4777           Pavlu).
4778         > fixes for Ada95 binding (Nicolas Boulenguez):
4779         + improve type-checking in Ada95 by eliminating a few warning-suppress
4780           pragmas.
4781         + suppress unreferenced warnings.
4782         + make all dereferences in binding explicit.
4783
4784 20110319
4785         + regen Ada html documentation.
4786         + change order of -I options from ncurses*-config script when the
4787           --disable-overwrite option was used, so that the subdirectory include
4788           is listed first.
4789         + modify the make-tar.sh scripts to add a MANIFEST and NEWS file.
4790         + modify configure script to provide value for HTML_DIR in
4791           Ada95/gen/Makefile.in, which depends on whether the Ada95 binding is
4792           distributed separately (report by Nicolas Boulenguez).
4793         + modify configure script to add "-g" and/or "-O3" to ADAFLAGS if the
4794           CFLAGS for the build has these options.
4795         + amend change from 20070324, to not add 1 to the result of getmaxx
4796           and getmaxy in the Ada binding (report by Nicolas Boulenguez for
4797           thread in comp.lang.ada).
4798         + build-fix Ada95/samples for gnat 4.5
4799         + spelling fixes for Ada95/samples/explain.txt
4800         > fixes for Ada95 binding (Nicolas Boulenguez):
4801         + add item in Trace_Attribute_Set corresponding to TRACE_ATTRS.
4802         + add workaround for binding to set_field_type(), which uses varargs.
4803           The original binding from 990220 relied on the prevalent
4804           implementation of varargs which did not support or need va_copy().
4805         + add dependency on gen/Makefile.in needed for *-panels.ads
4806         + add Library_Options to library.gpr
4807         + add Languages to library.gpr, for gprbuild
4808
4809 20110307
4810         + revert changes to limit-checks from 20110122 (Debian #616711).
4811         > minor type-cleanup of Ada95 binding (Nicolas Boulenguez):
4812         + corrected a minor sign error in a field of Low_Level_Field_Type, to
4813           conform to form.h.
4814         + replaced C_Int by Curses_Bool as return type for some callbacks, see
4815           fieldtype(3FORM).
4816         + modify samples/sample-explain.adb to provide explicit message when
4817           explain.txt is not found.
4818
4819 20110305
4820         + improve makefiles for Ada95 tree (patch by Nicolas Boulenguez).
4821         + fix an off-by-one error in _nc_slk_initialize() from 20100605 fixes
4822           for compiler warnings (report by Nicolas Boulenguez).
4823         + modify Ada95/gen/gen.c to declare unused bits in generated layouts,
4824           needed to compile when chtype is 64-bits using gnat 4.4.5
4825
4826 20110226 5.8 release for upload to ftp.gnu.org
4827
4828 20110226
4829         + update release notes, for 5.8.
4830         + regenerated html manpages.
4831         + change open() in _nc_read_file_entry() to fopen() for consistency
4832           with write_file().
4833         + modify misc/run_tic.in to create parent directory, in case this is
4834           a new install of hashed database.
4835         + fix typo in Ada95/mk-1st.awk which causes error with original awk.
4836
4837 20110220
4838         + configure script rpath fixes from xterm #269.
4839         + workaround for cygwin's non-functional features.h, to force ncurses'
4840           configure script to define _XOPEN_SOURCE_EXTENDED when building
4841           wide-character configuration.
4842         + build-fix in run_tic.sh for OS/2 EMX install
4843         + add cons25-debian entry (patch by Brian M Carlson, Debian #607662).
4844
4845 20110212
4846         + regenerated html manpages.
4847         + use _tracef() in show_where() function of tic, to work correctly with
4848           special case of trace configuration.
4849
4850 20110205
4851         + add xterm-utf8 entry as a demo of the U8 feature -TD
4852         + add U8 feature to denote entries for terminal emulators which do not
4853           support VT100 SI/SO when processing UTF-8 encoding -TD
4854         + improve the NCURSES_NO_UTF8_ACS feature by adding a check for an
4855           extended terminfo capability U8 (prompted by mailing list
4856           discussion).
4857
4858 20110122
4859         + start documenting interface changes for upcoming 5.8 release.
4860         + correct limit-checks in derwin().
4861         + correct limit-checks in newwin(), to ensure that windows have nonzero
4862           size (report by Garrett Cooper).
4863         + fix a missing "weak" declaration for pthread_kill (patch by Nicholas
4864           Alcock).
4865         + improve documentation of KEY_ENTER in curs_getch.3x manpage (prompted
4866           by discussion with Kevin Martin).
4867
4868 20110115
4869         + modify Ada95/configure script to make the --with-curses-dir option
4870           work without requiring the --with-ncurses option.
4871         + modify test programs to allow them to be built with NetBSD curses.
4872         + document thick- and double-line symbols in curs_add_wch.3x manpage.
4873         + document WACS_xxx constants in curs_add_wch.3x manpage.
4874         + fix some warnings for clang 2.6 "--analyze"
4875         + modify Ada95 makefiles to make html-documentation with the project
4876           file configuration if that is used.
4877         + update config.guess, config.sub
4878
4879 20110108
4880         + regenerated html manpages.
4881         + minor fixes to enable lint when trace is not enabled, e.g., with
4882           clang --analyze.
4883         + fix typo in man/default_colors.3x (patch by Tim van der Molen).
4884         + update ncurses/llib-lncurses*
4885
4886 20110101
4887         + fix remaining strict compiler warnings in ncurses library ABI=5,
4888           except those dealing with function pointers, etc.
4889
4890 20101225
4891         + modify nc_tparm.h, adding guards against repeated inclusion, and
4892           allowing TPARM_ARG to be overridden.
4893         + fix some strict compiler warnings in ncurses library.
4894
4895 20101211
4896         + suppress ncv in screen entry, allowing underline (patch by Alejandro
4897           R Sedeno).
4898         + also suppress ncv in konsole-base -TD
4899         + fixes in wins_nwstr() and related functions to ensure that special
4900           characters, i.e., control characters are handled properly with the
4901           wide-character configuration.
4902         + correct a comparison in wins_nwstr() (Redhat #661506).
4903         + correct help-messages in some of the test-programs, which still
4904           referred to quitting with 'q'.
4905
4906 20101204
4907         + add special case to _nc_infotocap() to recognize the setaf/setab
4908           strings from xterm+256color and xterm+88color, and provide a reduced
4909           version which works with termcap.
4910         + remove obsolete emacs "Local Variables" section from documentation
4911           (request by Sven Joachim).
4912         + update doc/html/index.html to include NCURSES-Programming-HOWTO.html
4913           (report by Sven Joachim).
4914
4915 20101128
4916         + modify test/configure and test/Makefile.in to handle this special
4917           case of building within a build-tree (Debian #34182):
4918                 mkdir -p build && cd build && ../test/configure && make
4919
4920 20101127
4921         + miscellaneous build-fixes for Ada95 and test-directories when built
4922           out-of-tree.
4923         + use VPATH in makefiles to simplify out-of-tree builds (Debian #34182).
4924         + fix typo in rmso for tek4106 entry -Goran Weinholt
4925
4926 20101120
4927         + improve checks in test/configure for X libraries, from xterm #267
4928           changes.
4929         + modify test/configure to allow it to use the build-tree's libraries
4930           e.g., when using that to configure the test-programs without the
4931           rpath feature (request by Sven Joachim).
4932         + repurpose "gnome" terminfo entries as "vte", retaining "gnome" items
4933           for compatibility, but generally deprecating those since the VTE
4934           library is what actually defines the behavior of "gnome", etc.,
4935           since 2003 -TD
4936
4937 20101113
4938         + compiler warning fixes for test programs.
4939         + various build-fixes for test-programs with pdcurses.
4940         + updated configure checks for X packages in test/configure from xterm
4941           #267 changes.
4942         + add configure check to gnatmake, to accommodate cygwin.
4943
4944 20101106
4945         + correct list of sub-directories needed in Ada95 tree for building as
4946           a separate package.
4947         + modify scripts in test-directory to improve builds as a separate
4948           package.
4949
4950 20101023
4951         + correct parsing of relative tab-stops in tabs program (report by
4952           Philip Ganchev).
4953         + adjust configure script so that "t" is not added to library suffix
4954           when weak-symbols are used, allowing the pthread configuration to
4955           more closely match the non-thread naming (report by Werner Fink).
4956         + modify configure check for tic program, used for fallbacks, to a
4957           warning if not found.  This makes it simpler to use additional
4958           scripts to bootstrap the fallbacks code using tic from the build
4959           tree (report by Werner Fink).
4960         + fix several places in configure script using ${variable-value} form.
4961         + modify configure macro CF_LDFLAGS_STATIC to accommodate some loaders
4962           which do not support selectively linking against static libraries
4963           (report by John P. Hartmann)
4964         + fix an unescaped dash in man/tset.1 (report by Sven Joachim).
4965
4966 20101009
4967         + correct comparison used for setting 16-colors in linux-16color
4968           entry (Novell #644831) -TD
4969         + improve linux-16color entry, using "dim" for color-8 which makes it
4970           gray rather than black like color-0 -TD
4971         + drop misc/ncu-indent and misc/jpf-indent; they are provided by an
4972           external package "cindent".
4973
4974 20101002
4975         + improve linkages in html manpages, adding references to the newer
4976           pages, e.g., *_variables, curs_sp_funcs, curs_threads.
4977         + add checks in tic for inconsistent cursor-movement controls, and for
4978           inconsistent printer-controls.
4979         + fill in no-parameter forms of cursor-movement where a parameterized
4980           form is available -TD
4981         + fill in missing cursor controls where the form of the controls is
4982           ANSI -TD
4983         + fix inconsistent punctuation in form_variables manpage (patch by
4984           Sven Joachim).
4985         + add parameterized cursor-controls to linux-basic (report by Dae) -TD
4986         > patch by Juergen Pfeifer:
4987         + document how to build 32-bit libraries in README.MinGW
4988         + fixes to filename computation in mk-dlls.sh.in
4989         + use POSIX locale in mk-dlls.sh.in rather than en_US (report by Sven
4990           Joachim).
4991         + add a check in mk-dlls.sh.in to obtain the size of a pointer to
4992           distinguish between 32-bit and 64-bit hosts.  The result is stored
4993           in mingw_arch
4994
4995 20100925
4996         + add "XT" capability to entries for terminals that support both
4997           xterm-style mouse- and title-controls, for "screen" which
4998           special-cases TERM beginning with "xterm" or "rxvt" -TD
4999         > patch by Juergen Pfeifer:
5000         + use 64-Bit MinGW toolchain (recommended package from TDM, see
5001           README.MinGW).
5002         + support pthreads when using the TDM MinGW toolchain
5003
5004 20100918
5005         + regenerated html manpages.
5006         + minor fixes for symlinks to curs_legacy.3x and curs_slk.3x manpages.
5007         + add manpage for sp-funcs.
5008         + add sp-funcs to test/listused.sh, for documentation aids.
5009
5010 20100911
5011         + add manpages for summarizing public variables of curses-, terminfo-
5012           and form-libraries.
5013         + minor fixes to manpages for consistency (patch by Jason McIntyre).
5014         + modify tic's -I/-C dump to reformat acsc strings into canonical form
5015           (sorted, unique mapping) (cf: 971004).
5016         + add configure check for pthread_kill(), needed for some old
5017           platforms.
5018
5019 20100904
5020         + add configure option --without-tests, to suppress building test
5021           programs (request by Frederic L W Meunier).
5022
5023 20100828
5024         + modify nsterm, xnuppc and tek4115 to make sgr/sgr0 consistent -TD
5025         + add check in terminfo source-reader to provide more informative
5026           message when someone attempts to run tic on a compiled terminal
5027           description (prompted by Debian #593920).
5028         + note in infotocap and captoinfo manpages that they read terminal
5029           descriptions from text-files (Debian #593920).
5030         + improve acsc string for vt52, show arrow keys (patch by Benjamin
5031           Sittler).
5032
5033 20100814
5034         + document in manpages that "mv" functions first use wmove() to check
5035           the window pointer and whether the position lies within the window
5036           (suggested by Poul-Henning Kamp).
5037         + fixes to curs_color.3x, curs_kernel.3x and wresize.3x manpages (patch
5038           by Tim van der Molen).
5039         + modify configure script to transform library names for tic- and
5040           tinfo-libraries so that those build properly with Mac OS X shared
5041           library configuration.
5042         + modify configure script to ensure that it removes conftest.dSYM
5043           directory leftover on checks with Mac OS X.
5044         + modify configure script to cleanup after check for symbolic links.
5045
5046 20100807
5047         + correct a typo in mk-1st.awk (patch by Gabriele Balducci)
5048           (cf: 20100724)
5049         + improve configure checks for location of tic and infocmp programs
5050           used for installing database and for generating fallback data,
5051           e.g., for cross-compiling.
5052         + add Markus Kuhn's wcwidth function for compiling MinGW
5053         + add special case to CF_REGEX for cross-compiling to MinGW target.
5054
5055 20100731
5056         + modify initialization check for win32con driver to eliminate need for
5057           special case for TERM "unknown", using terminal database if available
5058           (prompted by discussion with Roumen Petrov).
5059         + for MinGW port, ensure that terminal driver is setup if tgetent()
5060           is called (patch by Roumen Petrov).
5061         + document tabs "-0" and "-8" options in manpage.
5062         + fix Debian "lintian" issues with manpages reported in
5063           http://lintian.debian.org/full/csmall@debian.org.html#ncurses
5064
5065 20100724
5066         + add a check in tic for missing set_tab if clear_all_tabs given.
5067         + improve use of symbolic links in makefiles by using "-f" option if
5068           it is supported, to eliminate temporary removal of the target
5069           (prompted by http://www.t2-project.org/packages/ncurses.html)
5070         + minor improvement to test/ncurses.c, reset color pairs in 'd' test
5071           after exit from 'm' main-menu command.
5072         + improved ncu-indent, from mawk changes, allows more than one of
5073           GCC_NORETURN, GCC_PRINTFLIKE and GCC_SCANFLIKE on a single line.
5074
5075 20100717
5076         + add hard-reset for rs2 to wsvt25 to help ensure that reset ends
5077           the alternate character set (patch by Nicholas Marriott)
5078         + remove tar-copy.sh and related configure/Makefile chunks, since the
5079           Ada95 binding is now installed using rules in Ada95/src.
5080
5081 20100703
5082         + continue integrating changes to use gnatmake project files in Ada95
5083           + add/use configure check to turn on project rules for Ada95/src.
5084         + revert the vfork change from 20100130, since it does not work.
5085
5086 20100626
5087         + continue integrating changes to use gnatmake project files in Ada95
5088           + old gnatmake (3.15) does not produce libraries using project-file;
5089             work around by adding script to generate alternate makefile.
5090
5091 20100619
5092         + continue integrating changes to use gnatmake project files in Ada95
5093           + add configure --with-ada-sharedlib option, for the test_make rule.
5094           + move Ada95-related logic into aclocal.m4, since additional checks
5095             will be needed to distinguish old/new implementations of gnat.
5096
5097 20100612
5098         + start integrating changes to use gnatmake project files in Ada95 tree
5099           + add test_make / test_clean / test_install rules in Ada95/src
5100           + change install-path for adainclude directory to /usr/share/ada (was
5101             /usr/lib/ada).
5102         + update Ada95/configure.
5103         + add mlterm+256color entry, for mlterm 3.0.0 -TD
5104         + modify test/configure to use macros to ensure consistent order
5105           of updating LIBS variable.
5106
5107 20100605
5108         + change search order of options for Solaris in CF_SHARED_OPTS, to
5109           work with 64-bit compiles.
5110         + correct quoting of assignment in CF_SHARED_OPTS case for aix
5111           (cf: 20081227)
5112
5113 20100529
5114         + regenerated html documentation.
5115         + modify test/configure to support pkg-config for checking X libraries
5116           used by PDCurses.
5117         + add/use configure macro CF_ADD_LIB to force consistency of
5118           assignments to $LIBS, etc.
5119         + fix configure script for combining --with-pthread
5120           and --enable-weak-symbols options.
5121
5122 20100522
5123         + correct cross-compiling configure check for CF_MKSTEMP macro, by
5124           adding a check cache variable set by AC_CHECK_FUNC (report by
5125           Pierre Labastie).
5126         + simplify include-dependencies of make_hash and make_keys, to reduce
5127           the need for setting BUILD_CPPFLAGS in cross-compiling when the
5128           build- and target-machines differ.
5129         + repair broken-linker configuration by restoring a definition of SP
5130           variable to curses.priv.h, and adjusting for cases where sp-funcs
5131           are used.
5132         + improve configure macro CF_AR_FLAGS, allowing ARFLAGS environment
5133           variable to override (prompted by report by Pablo Cazallas).
5134
5135 20100515
5136         + add configure option --enable-pthreads-eintr to control whether the
5137           new EINTR feature is enabled.
5138         + modify logic in pthread configuration to allow EINTR to interrupt
5139           a read operation in wgetch() (Novell #540571, patch by Werner Fink).
5140         + drop mkdirs.sh, use "mkdir -p".
5141         + add configure option --disable-libtool-version, to use the
5142           "-version-number" feature which was added in libtool 1.5 (report by
5143           Peter Haering).  The default value for the option uses the newer
5144           feature, which makes libraries generated using libtool compatible
5145           with the standard builds of ncurses.
5146         + updated test/configure to match configure script macros.
5147         + fixes for configure script from lynx changes:
5148           + improve CF_FIND_LINKAGE logic for the case where a function is
5149             found in predefined libraries.
5150           + revert part of change to CF_HEADER (cf: 20100424)
5151
5152 20100501
5153         + correct limit-check in wredrawln, accounting for begy/begx values
5154           (patch by David Benjamin).
5155         + fix most compiler warnings from clang.
5156         + amend build-fix for OpenSolaris, to ensure that a system header is
5157           included in curses.h before testing feature symbols, since they
5158           may be defined by that route.
5159
5160 20100424
5161         + fix some strict compiler warnings in ncurses library.
5162         + modify configure macro CF_HEADER_PATH to not look for variations in
5163           the predefined include directories.
5164         + improve configure macros CF_GCC_VERSION and CF_GCC_WARNINGS to work
5165           with gcc 4.x's c89 alias, which gives warning messages for cases
5166           where older versions would produce an error.
5167
5168 20100417
5169         + modify _nc_capcmp() to work with cancelled strings.
5170         + correct translation of "^" in _nc_infotocap(), used to transform
5171           terminfo to termcap strings
5172         + add configure --disable-rpath-hack, to allow disabling the feature
5173           which adds rpath options for libraries in unusual places.
5174         + improve CF_RPATH_HACK_2 by checking if the rpath option for a given
5175           directory was already added.
5176         + improve CF_RPATH_HACK_2 by using ldd to provide a standard list of
5177           directories (which will be ignored).
5178
5179 20100410
5180         + improve win_driver.c handling of mouse:
5181           + discard motion events
5182           + avoid calling _nc_timed_wait when there is a mouse event
5183           + handle 4th and "rightmost" buttons.
5184         + quote substitutions in CF_RPATH_HACK_2 configure macro, needed for
5185           cases where there are embedded blanks in the rpath option.
5186
5187 20100403
5188         + add configure check for exctags vs ctags, to work around pkgsrc.
5189         + simplify logic in _nc_get_screensize() to make it easier to see how
5190           environment variables may override system- and terminfo-values
5191           (prompted by discussion with Igor Bujna).
5192         + make debug-traces for COLOR_PAIR and PAIR_NUMBER less verbose.
5193         + improve handling of color-pairs embedded in attributes for the
5194           extended-colors configuration.
5195         + modify MKlib_gen.sh to build link_test with sp-funcs.
5196         + build-fixes for OpenSolaris aka Solaris 11, for wide-character
5197           configuration as well as for rpath feature in *-config scripts.
5198
5199 20100327
5200         + refactor CF_SHARED_OPTS configure macro, making CF_RPATH_HACK more
5201           reusable.
5202         + improve configure CF_REGEX, similar fixes.
5203         + improve configure CF_FIND_LINKAGE, adding add check between system
5204           (default) and explicit paths, where we can find the entrypoint in the
5205           given library.
5206         + add check if Gpm_Open() returns a -2, e.g., for "xterm".  This is
5207           normally suppressed but can be overridden using $NCURSES_GPM_TERMS.
5208           Ensure that Gpm_Close() is called in this case.
5209
5210 20100320
5211         + rename atari and st52 terminfo entries to atari-old, st52-old, use
5212           newer entries from FreeMiNT by Guido Flohr (from patch/report by Alan
5213           Hourihane).
5214
5215 20100313
5216         + modify install-rule for manpages so that *-config manpages will
5217           install when building with --srcdir (report by Sven Joachim).
5218         + modify CF_DISABLE_LEAKS configure macro so that the --enable-leaks
5219           option is not the same as --disable-leaks (GenToo #305889).
5220         + modify #define's for build-compiler to suppress cchar_t symbol from
5221           compile of make_hash and make_keys, improving cross-compilation of
5222           ncursesw (report by Bernhard Rosenkraenzer).
5223         + modify CF_MAN_PAGES configure macro to replace all occurrences of
5224           TPUT in tput.1's manpage (Debian #573597, report/analysis by Anders
5225           Kaseorg).
5226
5227 20100306
5228         + generate manpages for the *-config scripts, adapted from help2man
5229           (suggested by Sven Joachim).
5230         + use va_copy() in _nc_printf_string() to avoid conflicting use of
5231           va_list value in _nc_printf_length() (report by Wim Lewis).
5232
5233 20100227
5234         + add Ada95/configure script, to use in tar-file created by
5235           Ada95/make-tar.sh
5236         + fix typo in wresize.3x (patch by Tim van der Molen).
5237         + modify screen-bce.XXX entries to exclude ech, since screen's color
5238           model does not clear with color for that feature -TD
5239
5240 20100220
5241         + add make-tar.sh scripts to Ada95 and test subdirectories to help with
5242           making those separately distributable.
5243         + build-fix for static libraries without dlsym (Debian #556378).
5244         + fix a syntax error in man/form_field_opts.3x (patch by Ingo
5245           Schwarze).
5246
5247 20100213
5248         + add several screen-bce.XXX entries -TD
5249
5250 20100206
5251         + update mrxvt terminfo entry -TD
5252         + modify win_driver.c to support mouse single-clicks.
5253         + correct name for termlib in ncurses*-config, e.g., if it is renamed
5254           to provide a single file for ncurses/ncursesw libraries (patch by
5255           Miroslav Lichvar).
5256
5257 20100130
5258         + use vfork in test/ditto.c if available (request by Mike Frysinger).
5259         + miscellaneous cleanup of manpages.
5260         + fix typo in curs_bkgd.3x (patch by Tim van der Molen).
5261         + build-fix for --srcdir (patch by Miroslav Lichvar).
5262
5263 20100123
5264         + for term-driver configuration, ensure that the driver pointer is
5265           initialized in setupterm so that terminfo/termcap programs work.
5266         + amend fix for Debian #542031 to ensure that wattrset() returns only
5267           OK or ERR, rather than the attribute value (report by Miroslav
5268           Lichvar).
5269         + reorder WINDOWLIST to put WINDOW data after SCREEN pointer, making
5270           _nc_screen_of() compatible between normal/wide libraries again (patch
5271           by Miroslav Lichvar)
5272         + review/fix include-dependencies in modules files (report by Miroslav
5273           Lichvar).
5274
5275 20100116
5276         + modify win_driver.c to initialize acs_map for win32 console, so
5277           that line-drawing works.
5278         + modify win_driver.c to initialize TERMINAL struct so that programs
5279           such as test/lrtest.c and test/ncurses.c which test string
5280           capabilities can run.
5281         + modify term-driver modules to eliminate forward-reference
5282           declarations.
5283
5284 20100109
5285         + modify configure macro CF_XOPEN_SOURCE, etc., to use CF_ADD_CFLAGS
5286           consistently to add new -D's while removing duplicates.
5287         + modify a few configure macros to consistently put new options
5288           before older in the list.
5289         + add tiparm(), based on review of X/Open Curses Issue 7.
5290         + minor documentation cleanup.
5291         + update config.guess, config.sub from
5292                 http://savannah.gnu.org/projects/config
5293           (caveat - its maintainer put 2010 copyright date on files dated 2009)
5294
5295 20100102
5296         + minor improvement to tic's checking of similar SGR's to allow for the
5297           most common case of SGR 0.
5298         + modify getmouse() to act as its documentation implied, returning on
5299           each call the preceding event until none are left.  When no more
5300           events remain, it will return ERR.
5301
5302 20091227
5303         + change order of lookup in progs/tput.c, looking for terminfo data
5304           first.  This fixes a confusion between termcap "sg" and terminfo
5305           "sgr" or "sgr0", originally from 990123 changes, but exposed by
5306           20091114 fixes for hashing.  With this change, only "dl" and "ed" are
5307           ambiguous (Mandriva #56272).
5308
5309 20091226
5310         + add bterm terminfo entry, based on bogl 0.1.18 -TD
5311         + minor fix to rxvt+pcfkeys terminfo entry -TD
5312         + build-fixes for Ada95 tree for gnat 4.4 "style".
5313
5314 20091219
5315         + remove old check in mvderwin() which prevented moving a derived
5316           window whose origin happened to coincide with its parent's origin
5317           (report by Katarina Machalkova).
5318         + improve test/ncurses.c to put mouse droppings in the proper window.
5319         + update minix terminfo entry -TD
5320         + add bw (auto-left-margin) to nsterm* entries (Benjamin Sittler)
5321
5322 20091212
5323         + correct transfer of multicolumn characters in multirow
5324           field_buffer(), which stopped at the end of the first row due to
5325           filling of unused entries in a cchar_t array with nulls.
5326         + updated nsterm* entries (Benjamin Sittler, Emanuele Giaquinta)
5327         + modify _nc_viscbuf2() and _tracecchar_t2() to show wide-character
5328           nulls.
5329         + use strdup() in set_menu_mark(), restore .marklen struct member on
5330           failure.
5331         + eliminate clause 3 from the UCB copyrights in read_termcap.c and
5332           tset.c per
5333                 ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
5334           (patch by Nicholas Marriott).
5335         + replace a malloc in tic.c with strdup, checking for failure (patch by
5336           Nicholas Marriott).
5337         + update config.guess, config.sub from
5338                 http://savannah.gnu.org/projects/config
5339
5340 20091205
5341         + correct layout of working window used to extract data in
5342           wide-character configured by set_field_buffer (patch by Rafael
5343           Garrido Fernandez)
5344         + improve some limit-checks related to filename length in reading and
5345           writing terminfo entries.
5346         + ensure that filename is always filled in when attempting to read
5347           a terminfo entry, so that infocmp can report the filename (patch
5348           by Nicholas Marriott).
5349
5350 20091128
5351         + modify mk-1st.awk to allow tinfo library to be built when term-driver
5352           is enabled.
5353         + add error-check to configure script to ensure that sp-funcs is
5354           enabled if term-driver is, since some internal interfaces rely upon
5355           this.
5356
5357 20091121
5358         + fix case where progs/tput is used while sp-funcs is configure; this
5359           requires save/restore of out-character function from _nc_prescreen
5360           rather than the SCREEN structure (report by Charles Wilson).
5361         + fix typo in man/curs_trace.3x which caused incorrect symbolic links
5362         + improved configure macros CF_GCC_ATTRIBUTES, CF_PROG_LINT.
5363
5364 20091114
5365         + updated man/curs_trace.3x
5366         + limit hashing for termcap-names to 2-characters (Ubuntu #481740).
5367         + change a variable name in lib_newwin.c to make it clearer which
5368           value is being freed on error (patch by Nicholas Marriott).
5369
5370 20091107
5371         + improve test/ncurses.c color-cycling test by reusing attribute-
5372           and color-cycling logic from the video-attributes screen.
5373         + add ifdef'd with NCURSES_INTEROP_FUNCS experimental bindings in form
5374           library which help make it compatible with interop applications
5375           (patch by Juergen Pfeifer).
5376         + add configure option --enable-interop, for integrating changes
5377           for generic/interop support to form-library by Juergen Pfeifer
5378
5379 20091031
5380         + modify use of $CC environment variable which is defined by X/Open
5381           as a curses feature, to ignore it if it is not a single character
5382           (prompted by discussion with Benjamin C W Sittler).
5383         + add START_TRACE in slk_init
5384         + fix a regression in _nc_ripoffline which made test/ncurses.c not show
5385           soft-keys, broken in 20090927 merging.
5386         + change initialization of "hidden" flag for soft-keys from true to
5387           false, broken in 20090704 merging (Ubuntu #464274).
5388         + update nsterm entries (patch by Benjamin C W Sittler, prompted by
5389           discussion with Fabian Groffen in GenToo #206201).
5390         + add test/xterm-256color.dat
5391
5392 20091024
5393         + quiet some pedantic gcc warnings.
5394         + modify _nc_wgetch() to check for a -1 in the fifo, e.g., after a
5395           SIGWINCH, and discard that value, to avoid confusing application
5396           (patch by Eygene Ryabinkin, FreeBSD #136223).
5397
5398 20091017
5399         + modify handling of $PKG_CONFIG_LIBDIR to use only the first item in
5400           a possibly colon-separated list (Debian #550716).
5401
5402 20091010
5403         + supply a null-terminator to buffer in _nc_viswibuf().
5404         + fix a sign-extension bug in unget_wch() (report by Mike Gran).
5405         + minor fixes to error-returns in default function for tputs, as well
5406           as in lib_screen.c
5407
5408 20091003
5409         + add WACS_xxx definitions to wide-character configuration for thick-
5410           and double-lines (discussion with Slava Zanko).
5411         + remove unnecessary kcan assignment to ^C from putty (Sven Joachim)
5412         + add ccc and initc capabilities to xterm-16color -TD
5413         > patch by Benjamin C W Sittler:
5414         + add linux-16color
5415         + correct initc capability of linux-c-nc end-of-range
5416         + similar change for dg+ccc and dgunix+ccc
5417
5418 20090927
5419         + move leak-checking for comp_captab.c into _nc_leaks_tinfo() since
5420           that module since 20090711 is in libtinfo.
5421         + add configure option --enable-term-driver, to allow compiling with
5422           terminal-driver.  That is used in MinGW port, and (being somewhat
5423           more complicated) is an experimental alternative to the conventional
5424           termlib internals.  Currently, it requires the sp-funcs feature to
5425           be enabled.
5426         + completed integrating "sp-funcs" by Juergen Pfeifer in ncurses
5427           library (some work remains for forms library).
5428
5429 20090919
5430         + document return code from define_key (report by Mike Gran).
5431         + make some symbolic links in the terminfo directory-tree shorter
5432           (patch by Daniel Jacobowitz, forwarded by Sven Joachim).).
5433         + fix some groff warnings in terminfo.5, etc., from recent Debian
5434           changes.
5435         + change ncv and op capabilities in sun-color terminfo entry to match
5436           Sun's entry for this (report by Laszlo Peter).
5437         + improve interix smso terminfo capability by using reverse rather than
5438           bold (report by Kristof Zelechovski).
5439
5440 20090912
5441         + add some test programs (and make these use the same special keys
5442           by sharing linedata.h functions):
5443           test/test_addstr.c
5444           test/test_addwstr.c
5445           test/test_addchstr.c
5446           test/test_add_wchstr.c
5447         + correct internal _nc_insert_ch() to use _nc_insert_wch() when
5448           inserting wide characters, since the wins_wch() function that it used
5449           did not update the cursor position (report by Ciprian Craciun).
5450
5451 20090906
5452         + fix typo s/is_timeout/is_notimeout/ which made "man is_notimeout" not
5453           work.
5454         + add null-pointer checks to other opaque-functions.
5455         + add is_pad() and is_subwin() functions for opaque access to WINDOW
5456           (discussion with Mark Dickinson).
5457         + correct merge to lib_newterm.c, which broke when sp-funcs was
5458           enabled.
5459
5460 20090905
5461         + build-fix for building outside source-tree (report by Sven Joachim).
5462         + fix Debian lintian warning for man/tabs.1 by making section number
5463           agree with file-suffix (report by Sven Joachim).
5464         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5465
5466 20090829
5467         + workaround for bug in g++ 4.1-4.4 warnings for wattrset() macro on
5468           amd64 (Debian #542031).
5469         + fix typo in curs_mouse.3x (Debian #429198).
5470
5471 20090822
5472         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5473
5474 20090815
5475         + correct use of terminfo capabilities for initializing soft-keys,
5476           broken in 20090510 merging.
5477         + modify wgetch() to ensure it checks SIGWINCH when it gets an error
5478           in non-blocking mode (patch by Clemens Ladisch).
5479         + use PATH_SEPARATOR symbol when substituting into run_tic.sh, to
5480           help with builds on non-Unix platforms such as OS/2 EMX.
5481         + modify scripting for misc/run_tic.sh to test configure script's
5482           $cross_compiling variable directly rather than comparing host/build
5483           compiler names (prompted by comment in GenToo #249363).
5484         + fix configure script option --with-database, which was coded as an
5485           enable-type switch.
5486         + build-fixes for --srcdir (report by Frederic L W Meunier).
5487
5488 20090808
5489         + separate _nc_find_entry() and _nc_find_type_entry() from
5490           implementation details of hash function.
5491
5492 20090803
5493         + add tabs.1 to man/man_db.renames
5494         + modify lib_addch.c to compensate for removal of wide-character test
5495           from unctrl() in 20090704 (Debian #539735).
5496
5497 20090801
5498         + improve discussion in INSTALL for use of system's tic/infocmp for
5499           cross-compiling and building fallbacks.
5500         + modify test/demo_termcap.c to correspond better to options in
5501           test/demo_terminfo.c
5502         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5503         + fix logic for 'V' in test/ncurses.c tests f/F.
5504
5505 20090728
5506         + correct logic in tigetnum(), which caused tput program to treat all
5507           string capabilities as numeric (report by Rajeev V Pillai,
5508           cf: 20090711).
5509
5510 20090725
5511         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5512
5513 20090718
5514         + fix a null-pointer check in _nc_format_slks() in lib_slk.c, from
5515           20090704 changes.
5516         + modify _nc_find_type_entry() to use hashing.
5517         + make CCHARW_MAX value configurable, noting that changing this would
5518           change the size of cchar_t, and would be ABI-incompatible.
5519         + modify test-programs, e.g,.  test/view.c, to address subtle
5520           differences between Tru64/Solaris and HPUX/AIX getcchar() return
5521           values.
5522         + modify length returned by getcchar() to count the trailing null
5523           which is documented in X/Open (cf: 20020427).
5524         + fixes for test programs to build/work on HPUX and AIX, etc.
5525
5526 20090711
5527         + improve performance of tigetstr, etc., by using hashing code from tic.
5528         + minor fixes for memory-leak checking.
5529         + add test/demo_terminfo, for comparison with demo_termcap
5530
5531 20090704
5532         + remove wide-character checks from unctrl() (patch by Clemens Ladisch).
5533         + revise wadd_wch() and wecho_wchar() to eliminate dependency on
5534           unctrl().
5535         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5536
5537 20090627
5538         + update llib-lncurses[wt] to use sp-funcs.
5539         + various code-fixes to build/work with --disable-macros configure
5540           option.
5541         + add several new files from Juergen Pfeifer which will be used when
5542           integration of "sp-funcs" is complete.  This includes a port to
5543           MinGW.
5544
5545 20090613
5546         + move definition for NCURSES_WRAPPED_VAR back to ncurses_dll.h, to
5547           make includes of term.h without curses.h work (report by "Nix").
5548         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5549
5550 20090607
5551         + fix a regression in lib_tputs.c, from ongoing merges.
5552
5553 20090606
5554         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5555
5556 20090530
5557         + fix an infinite recursion when adding a legacy-coding 8-bit value
5558           using insch() (report by Clemens Ladisch).
5559         + free home-terminfo string in del_curterm() (patch by Dan Weber).
5560         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5561
5562 20090523
5563         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5564
5565 20090516
5566         + work around antique BSD game's manipulation of stdscr, etc., versus
5567           SCREEN's copy of the pointer (Debian #528411).
5568         + add a cast to wattrset macro to avoid compiler warning when comparing
5569           its result against ERR (adapted from patch by Matt Kraii, Debian
5570           #528374).
5571
5572 20090510
5573         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5574
5575 20090502
5576         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5577         + add vwmterm terminfo entry (patch by Bryan Christ).
5578
5579 20090425
5580         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5581
5582 20090419
5583         + build fix for _nc_free_and_exit() change in 20090418 (report by
5584           Christian Ebert).
5585
5586 20090418
5587         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5588
5589 20090411
5590         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5591           This change finishes merging for menu and panel libraries, does
5592           part of the form library.
5593
5594 20090404
5595         + suppress configure check for static/dynamic linker flags for gcc on
5596           Darwin (report by Nelson Beebe).
5597
5598 20090328
5599         + extend ansi.sys pfkey capability from kf1-kf10 to kf1-kf48, moving
5600           function key definitions from emx-base for consistency -TD
5601         + correct missing final 'p' in pfkey capability of ansi.sys-old (report
5602           by Kalle Olavi Niemitalo).
5603         + improve test/ncurses.c 'F' test, show combining characters in color.
5604         + quiet a false report by cppcheck in c++/cursesw.cc by eliminating
5605           a temporary variable.
5606         + use _nc_doalloc() rather than realloc() in a few places in ncurses
5607           library to avoid leak in out-of-memory condition (reports by William
5608           Egert and Martin Ettl based on cppcheck tool).
5609         + add --with-ncurses-wrap-prefix option to test/configure (discussion
5610           with Charles Wilson).
5611         + use ncurses*-config scripts if available for test/configure.
5612         + update test/aclocal.m4 and test/configure
5613         > patches by Charles Wilson:
5614         + modify CF_WITH_LIBTOOL configure check to allow unreleased libtool
5615           version numbers (e.g.  which include alphabetic chars, as well as
5616           digits, after the final '.').
5617         + improve use of -no-undefined option for libtool by setting an
5618           intermediate variable LT_UNDEF in the configure script, and then
5619           using that in the libtool link-commands.
5620         + fix an missing use of NCURSES_PUBLIC_VAR() in tinfo/MKcodes.awk
5621           from 20090321 changes.
5622         + improve mk-1st.awk script by writing separate cases for the
5623           LIBTOOL_LINK command, depending on which library (ncurses, ticlib,
5624           termlib) is to be linked.
5625         + modify configure.in to allow broken-linker configurations, not just
5626           enable-reentrant, to set public wrap prefix.
5627
5628 20090321
5629         + add TICS_LIST and SHLIB_LIST to allow libtool 2.2.6 on Cygwin to
5630           build with tic and term libraries (patch by Charles Wilson).
5631         + add -no-undefined option to libtool for Cygwin, MinGW, U/Win and AIX
5632           (report by Charles Wilson).
5633         + fix definition for c++/Makefile.in's SHLIB_LIST, which did not list
5634           the form, menu or panel libraries (patch by Charles Wilson).
5635         + add configure option --with-wrap-prefix to allow setting the prefix
5636           for functions used to wrap global variables to something other than
5637           "_nc_" (discussion with Charles Wilson).
5638
5639 20090314
5640         + modify scripts to generate ncurses*-config and pc-files to add
5641           dependency for tinfo library (patch by Charles Wilson).
5642         + improve comparison of program-names when checking for linked flavors
5643           such as "reset" by ignoring the executable suffix (reports by Charles
5644           Wilson, Samuel Thibault and Cedric Bretaudeau on Cygwin mailing
5645           list).
5646         + suppress configure check for static/dynamic linker flags for gcc on
5647           Solaris 10, since gcc is confused by absence of static libc, and
5648           does not switch back to dynamic mode before finishing the libraries
5649           (reports by Joel Bertrand, Alan Pae).
5650         + minor fixes to Intel compiler warning checks in configure script.
5651         + modify _nc_leaks_tinfo() so leak-checking in test/railroad.c works.
5652         + modify set_curterm() to make broken-linker configuration work with
5653           changes from 20090228 (report by Charles Wilson).
5654
5655 20090228
5656         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5657         + modify declaration of cur_term when broken-linker is used, but
5658           enable-reentrant is not, to match pre-5.7 (report by Charles Wilson).
5659
5660 20090221
5661         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
5662
5663 20090214
5664         + add configure script --enable-sp-funcs to enable the new set of
5665           extended functions.
5666         + start integrating patches by Juergen Pfeifer:
5667           + add extended functions which specify the SCREEN pointer for several
5668             curses functions which use the global SP (these are incomplete;
5669             some internals work is needed to complete these).
5670           + add special cases to configure script for MinGW port.
5671
5672 20090207
5673         + update several configure macros from lynx changes
5674           + append (not prepend) to CFLAGS/CPPFLAGS
5675           + change variable from PATHSEP to PATH_SEPARATOR
5676         + improve install-rules for pc-files (patch by Miroslav Lichvar).
5677           + make it work with $DESTDIR
5678           + create the pkg-config library directory if needed.
5679
5680 20090124
5681         + modify init_pair() to allow caller to create extra color pairs beyond
5682           the color_pairs limit, which use default colors (request by Emanuele
5683           Giaquinta).
5684         + add misc/terminfo.tmp and misc/*.pc to "sources" rule.
5685         + fix typo "==" where "=" is needed in ncurses-config.in and
5686           gen-pkgconfig.in files (Debian #512161).
5687
5688 20090117
5689         + add -shared option to MK_SHARED_LIB when -Bsharable is used, for
5690           *BSD's, without which "main" might be one of the shared library's
5691           dependencies (report/analysis by Ken Dickey).
5692         + modify waddch_literal(), updating line-pointer after a multicolumn
5693           character is found to not fit on the current row, and wrapping is
5694           done.  Since the line-pointer was not updated, the wrapped
5695           multicolumn character was written to the beginning of the current row
5696           (cf: 20041023, reported by "Nick" regarding problem with ncmpc
5697           http://musicpd.org/mantis/bug_view_page.php?bug_id=1930).
5698
5699 20090110
5700         + add screen.Eterm terminfo entry (GenToo #124887) -TD
5701         + modify adacurses-config to look for ".ali" files in the adalib
5702           directory.
5703         + correct install for Ada95, which omitted libAdaCurses.a used in
5704           adacurses-config
5705         + change install for adacurses-config to provide additional flavors
5706           such as adacursesw-config, for ncursesw (GenToo #167849).
5707
5708 20090105
5709         + remove undeveloped feature in ncurses-config.in for setting
5710           prefix variable.
5711         + recent change to ncurses-config.in did not take into account the
5712           --disable-overwrite option, which sets $includedir to the
5713           subdirectory and using just that for a -I option does not work - fix
5714           (report by Frederic L W Meunier).
5715
5716 20090104
5717         + modify gen-pkgconfig.in to eliminate a dependency on rpath when
5718           deciding whether to add $LIBS to --libs output; that should be shown
5719           for the ncurses and tinfo libraries without taking rpath into
5720           account.
5721         + fix an overlooked change from $AR_OPTS to $ARFLAGS in mk-1st.awk,
5722           used in static libraries (report by Marty Jack).
5723
5724 20090103
5725         + add a configure-time check to pick a suitable value for
5726           CC_SHARED_OPTS for Solaris (report by Dagobert Michelsen).
5727         + add configure --with-pkg-config and --enable-pc-files options, along
5728           with misc/gen-pkgconfig.in which can be used to generate ".pc" files
5729           for pkg-config (request by Jan Engelhardt).
5730         + use $includedir symbol in misc/ncurses-config.in, add --includedir
5731           option.
5732         + change makefiles to use $ARFLAGS rather than $AR_OPTS, provide a
5733           configure check to detect whether a "-" is needed before "ar"
5734           options.
5735         + update config.guess, config.sub from
5736                 http://savannah.gnu.org/projects/config
5737
5738 20081227
5739         + modify mk-1st.awk to work with extra categories for tinfo library.
5740         + modify configure script to allow building shared libraries with gcc
5741           on AIX 5 or 6 (adapted from patch by Lital Natan).
5742
5743 20081220
5744         + modify to omit the opaque-functions from lib_gen.o when
5745           --disable-ext-funcs is used.
5746         + add test/clip_printw.c to illustrate how to use printw without
5747           wrapping.
5748         + modify ncurses 'F' test to demo wborder_set() with colored lines.
5749         + modify ncurses 'f' test to demo wborder() with colored lines.
5750
5751 20081213
5752         + add check for failure to open hashed-database needed for db4.6
5753           (GenToo #245370).
5754         + corrected --without-manpages option; previous change only suppressed
5755           the auxiliary rules install.man and uninstall.man
5756         + add case for FreeMINT to configure macro CF_XOPEN_SOURCE (patch from
5757           GenToo #250454).
5758         + fixes from NetBSD port at
5759           http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches
5760           patch-ac (build-fix for DragonFly)
5761           patch-ae (use INSTALL_SCRIPT for installing misc/ncurses*-config).
5762         + improve configure script macros CF_HEADER_PATH and CF_LIBRARY_PATH
5763           by adding CFLAGS, CPPFLAGS and LDFLAGS, LIBS values to the
5764           search-lists.
5765         + correct title string for keybound manpage (patch by Frederic Culot,
5766           OpenBSD documentation/6019),
5767
5768 20081206
5769         + move del_curterm() call from _nc_freeall() to _nc_leaks_tinfo() to
5770           work for progs/clear, progs/tabs, etc.
5771         + correct buffer-size after internal resizing of wide-character
5772           set_field_buffer(), broken in 20081018 changes (report by Mike Gran).
5773         + add "-i" option to test/filter.c to tell it to use initscr() rather
5774           than newterm(), to investigate report on comp.unix.programmer that
5775           ncurses would clear the screen in that case (it does not - the issue
5776           was xterm's alternate screen feature).
5777         + add check in mouse-driver to disable connection if GPM returns a
5778           zero, indicating that the connection is closed (Debian #506717,
5779           adapted from patch by Samuel Thibault).
5780
5781 20081129
5782         + improve a workaround in adding wide-characters, when a control
5783           character is found.  The library (cf: 20040207) uses unctrl() to
5784           obtain a printable version of the control character, but was not
5785           passing color or video attributes.
5786         + improve test/ncurses.c 'a' test, using unctrl() more consistently to
5787           display meta-characters.
5788         + turn on _XOPEN_CURSES definition in curses.h
5789         + add eterm-color entry (report by Vincent Lefevre) -TD
5790         + correct use of key_name() in test/ncurses.c 'A' test, which only
5791           displays wide-characters, not key-codes since 20070612 (report by
5792           Ricardo Cantu).
5793
5794 20081122
5795         + change _nc_has_mouse() to has_mouse(), reflect its use in C++ and
5796           Ada95 (patch by Juergen Pfeifer).
5797         + document in TO-DO an issue with Cygwin's package for GNAT (report
5798           by Mike Dennison).
5799         + improve error-checking of command-line options in "tabs" program.
5800
5801 20081115
5802         + change several terminfo entries to make consistent use of ANSI
5803           clear-all-tabs -TD
5804         + add "tabs" program (prompted by Debian #502260).
5805         + add configure --without-manpages option (request by Mike Frysinger).
5806
5807 20081102 5.7 release for upload to ftp.gnu.org
5808
5809 20081025
5810         + add a manpage to discuss memory leaks.
5811         + add support for shared libraries for QNX (other than libtool, which
5812           does not work well on that platform).
5813         + build-fix for QNX C++ binding.
5814
5815 20081018
5816         + build-fixes for OS/2 EMX.
5817         + modify form library to accept control characters such as newline
5818           in set_field_buffer(), which is compatible with Solaris (report by
5819           Nit Khair).
5820         + modify configure script to assume --without-hashed-db when
5821           --disable-database is used.
5822         + add "-e" option in ncurses/Makefile.in when generating source-files
5823           to force earlier exit if the build environment fails unexpectedly
5824           (prompted by patch by Adrian Bunk).
5825         + change configure script to use CF_UTF8_LIB, improved variant of
5826           CF_LIBUTF8.
5827
5828 20081012
5829         + add teraterm4.59 terminfo entry, use that as primary teraterm entry, rename
5830           original to teraterm2.3 -TD
5831         + update "gnome" terminfo to 2.22.3 -TD
5832         + update "konsole" terminfo to 1.6.6, needs today's fix for tic -TD
5833         + add "aterm" terminfo -TD
5834         + add "linux2.6.26" terminfo -TD
5835         + add logic to tic for cancelling strings in user-defined capabilities,
5836           overlooked til now.
5837
5838 20081011
5839         + regenerated html documentation.
5840         + add -m and -s options to test/keynames.c and test/key_names.c to test
5841           the meta() function with keyname() or key_name(), respectively.
5842         + correct return value of key_name() on error; it is null.
5843         + document some unresolved issues for rpath and pthreads in TO-DO.
5844         + fix a missing prototype for ioctl() on OpenBSD in tset.c
5845         + add configure option --disable-tic-depends to make explicit whether
5846           tic library depends on ncurses/ncursesw library, amends change from
5847           20080823 (prompted by Debian #501421).
5848
5849 20081004
5850         + some build-fixes for configure --disable-ext-funcs (incomplete, but
5851           works for C/C++ parts).
5852         + improve configure-check for awks unable to handle large strings, e.g.
5853           AIX 5.1 whose awk silently gives up on large printf's.
5854
5855 20080927
5856         + fix build for --with-dmalloc by workaround for redefinition of
5857           strndup between string.h and dmalloc.h
5858         + fix build for --disable-sigwinch
5859         + add environment variable NCURSES_GPM_TERMS to allow override to use
5860           GPM on terminals other than "linux", etc.
5861         + disable GPM mouse support when $TERM does not happen to contain
5862           "linux", since Gpm_Open() no longer limits its assertion to terminals
5863           that it might handle, e.g., within "screen" in xterm.
5864         + reset mouse file-descriptor when unloading GPM library (report by
5865           Miroslav Lichvar).
5866         + fix build for --disable-leaks --enable-widec --with-termlib
5867         > patch by Juergen Pfeifer:
5868         + use improved initialization for soft-label keys in Ada95 sample code.
5869         + discard internal symbol _nc_slk_format (unused since 20080112).
5870         + move call of slk_paint_info() from _nc_slk_initialize() to
5871           slk_intern_refresh(), improving initialization.
5872
5873 20080925
5874         + fix bug in mouse code for GPM from 20080920 changes (reported in
5875           Debian #500103, also Miroslav Lichvar).
5876
5877 20080920
5878         + fix shared-library rules for cygwin with tic- and tinfo-libraries.
5879         + fix a memory leak when failure to connect to GPM.
5880         + correct check for notimeout() in wgetch() (report on linux.redhat
5881           newsgroup by FurtiveBertie).
5882         + add an example warning-suppression file for valgrind,
5883           misc/ncurses.supp (based on example from Reuben Thomas)
5884
5885 20080913
5886         + change shared-library configuration for OpenBSD, make rpath work.
5887         + build-fixes for using libutf8, e.g., on OpenBSD 3.7
5888
5889 20080907
5890         + corrected fix for --enable-weak-symbols (report by Frederic L W
5891           Meunier).
5892
5893 20080906
5894         + corrected gcc options for building shared libraries on IRIX64.
5895         + add configure check for awk programs unable to handle big-strings,
5896           use that to improve the default for --enable-big-strings option.
5897         + makefile-fixes for --enable-weak-symbols (report by Frederic L W
5898           Meunier).
5899         + update test/configure script.
5900         + adapt ifdef's from library to make test/view.c build when mbrtowc()
5901           is unavailable, e.g., with HPUX 10.20.
5902         + add configure check for wcsrtombs, mbsrtowcs, which are used in
5903           test/ncurses.c, and use wcstombs, mbstowcs instead if available,
5904           fixing build of ncursew for HPUX 11.00
5905
5906 20080830
5907         + fixes to make Ada95 demo_panels() example work.
5908         + modify Ada95 'rain' test program to accept keyboard commands like the
5909           C-version.
5910         + modify BeOS-specific ifdef's to build on Haiku (patch by Scott
5911           Mccreary).
5912         + add configure-check to see if the std namespace is legal for cerr
5913           and endl, to fix a build issue with Tru64.
5914         + consistently use NCURSES_BOOL in lib_gen.c
5915         + filter #line's from lib_gen.c
5916         + change delimiter in MKlib_gen.sh from '%' to '@', to avoid
5917           substitution by IBM xlc to '#' as part of its extensions to digraphs.
5918         + update config.guess, config.sub from
5919                 http://savannah.gnu.org/projects/config
5920           (caveat - its maintainer removed support for older Linux systems).
5921
5922 20080823
5923         + modify configure check for pthread library to work with OSF/1 5.1,
5924           which uses #define's to associate its header and library.
5925         + use pthread_mutexattr_init() for initializing pthread_mutexattr_t,
5926           makes threaded code work on HPUX 11.23
5927         + fix a bug in demo_menus in freeing menus (cf: 20080804).
5928         + modify configure script for the case where tic library is used (and
5929           possibly renamed) to remove its dependency upon ncurses/ncursew
5930           library (patch by Dr Werner Fink).
5931         + correct manpage for menu_fore() which gave wrong default for
5932           the attribute used to display a selected entry (report by Mike Gran).
5933         + add Eterm-256color, Eterm-88color and rxvt-88color (prompted by
5934           Debian #495815) -TD
5935
5936 20080816
5937         + add configure option --enable-weak-symbols to turn on new feature.
5938         + add configure-check for availability of weak symbols.
5939         + modify linkage with pthread library to use weak symbols so that
5940           applications not linked to that library will not use the mutexes,
5941           etc.  This relies on gcc, and may be platform-specific (patch by Dr
5942           Werner Fink).
5943         + add note to INSTALL to document limitation of renaming of tic library
5944           using the --with-ticlib configure option (report by Dr Werner Fink).
5945         + document (in manpage) why tputs does not detect I/O errors (prompted
5946           by comments by Samuel Thibault).
5947         + fix remaining warnings from Klocwork report.
5948
5949 20080804
5950         + modify _nc_panelhook() data to account for a permanent memory leak.
5951         + fix memory leaks in test/demo_menus
5952         + fix most warnings from Klocwork tool (report by Larry Zhou).
5953         + modify configure script CF_XOPEN_SOURCE macro to add case for
5954           "dragonfly" from xterm #236 changes.
5955         + modify configure script --with-hashed-db to let $LIBS override the
5956           search for the db library (prompted by report by Samson Pierre).
5957
5958 20080726
5959         + build-fixes for gcc 4.3.1 (changes to gnat "warnings", and C inlining
5960           thresholds).
5961
5962 20080713
5963         + build-fix (reports by Christian Ebert, Funda Wang).
5964
5965 20080712
5966         + compiler-warning fixes for Solaris.
5967
5968 20080705
5969         + use NCURSES_MOUSE_MASK() in definition of BUTTON_RELEASE(), etc., to
5970           make those work properly with the "--enable-ext-mouse" configuration
5971           (cf: 20050205).
5972         + improve documentation of build-cc options in INSTALL.
5973         + work-around a bug in gcc 4.2.4 on AIX, which does not pass the
5974           -static/-dynamic flags properly to linker, causing test/bs to
5975           not link.
5976
5977 20080628
5978         + correct some ifdef's needed for the broken-linker configuration.
5979         + make debugging library's $BAUDRATE feature work for termcap
5980           interface.
5981         + make $NCURSES_NO_PADDING feature work for termcap interface (prompted
5982           by comment on FreeBSD mailing list).
5983         + add screen.mlterm terminfo entry -TD
5984         + improve mlterm and mlterm+pcfkeys terminfo entries -TD
5985
5986 20080621
5987         + regenerated html documentation.
5988         + expand manpage description of parameters for form_driver() and
5989           menu_driver() (prompted by discussion with Adam Spragg).
5990         + add null-pointer checks for cur_term in baudrate() and
5991           def_shell_mode(), def_prog_mode()
5992         + fix some memory leaks in delscreen() and wide acs.
5993
5994 20080614
5995         + modify test/ditto.c to illustrate multi-threaded use_screen().
5996         + change CC_SHARED_OPTS from -KPIC to -xcode=pic32 for Solaris.
5997         + add "-shared" option to MK_SHARED_LIB for gcc on Solaris (report
5998           by Poor Yorick).
5999
6000 20080607
6001         + finish changes to wgetch(), making it switch as needed to the
6002           window's actual screen when calling wrefresh() and wgetnstr().  That
6003           allows wgetch() to get used concurrently in different threads with
6004           some minor restrictions, e.g., the application should not delete a
6005           window which is being used in a wgetch().
6006         + simplify mutex's, combining the window- and screen-mutex's.
6007
6008 20080531
6009         + modify wgetch() to use the screen which corresponds to its window
6010           parameter rather than relying on SP; some dependent functions still
6011           use SP internally.
6012         + factor out most use of SP in lib_mouse.c, using parameter.
6013         + add internal _nc_keyname(), replacing keyname() to associate with a
6014           particular SCREEN rather than the global SP.
6015         + add internal _nc_unctrl(), replacing unctrl() to associate with a
6016           particular SCREEN rather than the global SP.
6017         + add internal _nc_tracemouse(), replacing _tracemouse() to eliminate
6018           its associated global buffer _nc_globals.tracemse_buf now in SCREEN.
6019         + add internal _nc_tracechar(), replacing _tracechar() to use SCREEN in
6020           preference to the global _nc_globals.tracechr_buf buffer.
6021
6022 20080524
6023         + modify _nc_keypad() to make it switch temporarily as needed to the
6024           screen which must be updated.
6025         + wrap cur_term variable to help make _nc_keymap() thread-safe, and
6026           always set the screen's copy of this variable in set_curterm().
6027         + restore curs_set() state after endwin()/refresh() (report/patch
6028           Miroslav Lichvar)
6029
6030 20080517
6031         + modify configure script to note that --enable-ext-colors and
6032           --enable-ext-mouse are not experimental, but extensions from
6033           the ncurses ABI 5.
6034         + corrected manpage description of setcchar() (discussion with
6035           Emanuele Giaquinta).
6036         + fix for adding a non-spacing character at the beginning of a line
6037           (report/patch by Miroslav Lichvar).
6038
6039 20080503
6040         + modify screen.* terminfo entries using new screen+fkeys to fix
6041           overridden keys in screen.rxvt (Debian #478094) -TD
6042         + modify internal interfaces to reduce wgetch()'s dependency on the
6043           global SP.
6044         + simplify some loops with macros each_screen(), each_window() and
6045           each_ripoff().
6046
6047 20080426
6048         + continue modifying test/ditto.c toward making it demonstrate
6049           multithreaded use_screen(), using fifos to pass data between screens.
6050         + fix typo in form.3x (report by Mike Gran).
6051
6052 20080419
6053         + add screen.rxvt terminfo entry -TD
6054         + modify tic -f option to format spaces as \s to prevent them from
6055           being lost when that is read back in unformatted strings.
6056         + improve test/ditto.c, using a "talk"-style layout.
6057
6058 20080412
6059         + change test/ditto.c to use openpty() and xterm.
6060         + add locks for copywin(), dupwin(), overlap(), overlay() on their
6061           window parameters.
6062         + add locks for initscr() and newterm() on updates to the SCREEN
6063           pointer.
6064         + finish table in curs_thread.3x manpage.
6065
6066 20080405
6067         + begin table in curs_thread.3x manpage describing the scope of data
6068           used by each function (or symbol) for threading analysis.
6069         + add null-pointer checks to setsyx() and getsyx() (prompted by
6070           discussion by Martin v. Lowis and Jeroen Ruigrok van der Werven on
6071           python-dev2 mailing list).
6072
6073 20080329
6074         + add null-pointer checks in set_term() and delscreen().
6075         + move _nc_windows into _nc_globals, since windows can be pads, which
6076           are not associated with a particular screen.
6077         + change use_screen() to pass the SCREEN* parameter rather than
6078           stdscr to the callback function.
6079         + force libtool to use tag for 'CC' in case it does not detect this,
6080           e.g., on aix when using CC=powerpc-ibm-aix5.3.0.0-gcc
6081           (report/patch by Michael Haubenwallner).
6082         + override OBJEXT to "lo" when building with libtool, to work on
6083           platforms such as AIX where libtool may use a different suffix for
6084           the object files than ".o" (report/patch by Michael Haubenwallner).
6085         + add configure --with-pthread option, for building with the POSIX
6086           thread library.
6087
6088 20080322
6089         + fill in extended-color pair two more places in wbkgrndset() and
6090           waddch_nosync() (prompted by Sedeno's patch).
6091         + fill in extended-color pair in _nc_build_wch() to make colors work
6092           for wide-characters using extended-colors (patch by Alejandro R
6093           Sedeno).
6094         + add x/X toggles to ncurses.c C color test to test/demo
6095           wide-characters with extended-colors.
6096         + add a/A toggles to ncurses.c c/C color tests.
6097         + modify test/ditto.c to use use_screen().
6098         + finish modifying test/rain.c to demonstrate threads.
6099
6100 20080308
6101         + start modifying test/rain.c for threading demo.
6102         + modify test/ncurses.c to make 'f' test accept the f/F/b/F/</> toggles
6103           that the 'F' accepts.
6104         + modify test/worm.c to show trail in reverse-video when other threads
6105           are working concurrently.
6106         + fix a deadlock from improper nesting of mutexes for windowlist and
6107           window.
6108
6109 20080301
6110         + fixes from 20080223 resolved issue with mutexes; change to use
6111           recursive mutexes to fix memory leak in delwin() as called from
6112           _nc_free_and_exit().
6113
6114 20080223
6115         + fix a size-difference in _nc_globals which caused hanging of mutex
6116           lock/unlock when termlib was built separately.
6117
6118 20080216
6119         + avoid using nanosleep() in threaded configuration since that often
6120           is implemented to suspend the entire process.
6121
6122 20080209
6123         + update test programs to build/work with various UNIX curses for
6124           comparisons.  This was to reinvestigate statement in X/Open Curses
6125           that insnstr and winsnstr perform wrapping.  None of the Unix-branded
6126           implementations do this, as noted in manpage (cf: 20040228).
6127
6128 20080203
6129         + modify _nc_setupscreen() to set the legacy-coding value the same
6130           for both narrow/wide models.  It had been set only for wide model,
6131           but is needed to make unctrl() work with locale in the narrow model.
6132         + improve waddch() and winsch() handling of EILSEQ from mbrtowc() by
6133           using unctrl() to display illegal bytes rather than trying to append
6134           further bytes to make up a valid sequence (reported by Andrey A
6135           Chernov).
6136         + modify unctrl() to check codes in 128-255 range versus isprint().
6137           If they are not printable, and locale was set, use a "M-" or "~"
6138           sequence.
6139
6140 20080126
6141         + improve threading in test/worm.c (wrap refresh calls, and KEY_RESIZE
6142           handling).  Now it hangs in napms(), no matter whether nanosleep()
6143           or poll() or select() are used on Linux.
6144
6145 20080119
6146         + fixes to build with --disable-ext-funcs
6147         + add manpage for use_window and use_screen.
6148         + add set_tabsize() and set_escdelay() functions.
6149
6150 20080112
6151         + remove recursive-mutex definitions, finish threading demo for worm.c
6152         + remove a redundant adjustment of lines in resizeterm.c's
6153           adjust_window() which caused occasional misadjustment of stdscr when
6154           softkeys were used.
6155
6156 20080105
6157         + several improvements to terminfo entries based on xterm #230 -TD
6158         + modify MKlib_gen.sh to handle keyname/key_name prototypes, so the
6159           "link_test" builds properly.
6160         + fix for toe command-line options -u/-U to ensure filename is given.
6161         + fix allocation-size for command-line parsing in infocmp from 20070728
6162           (report by Miroslav Lichvar)
6163         + improve resizeterm() by moving ripped-off lines, and repainting the
6164           soft-keys (report by Katarina Machalkova)
6165         + add clarification in wclear's manpage noting that the screen will be
6166           cleared even if a subwindow is cleared (prompted by Christer Enfors
6167           question).
6168         + change test/ncurses.c soft-key tests to work with KEY_RESIZE.
6169
6170 20071222
6171         + continue implementing support for threading demo by adding mutex
6172           for delwin().
6173
6174 20071215
6175         + add several functions to C++ binding which wrap C functions that
6176           pass a WINDOW* parameter (request by Chris Lee).
6177
6178 20071201
6179         + add note about configure options needed for Berkeley database to the
6180           INSTALL file.
6181         + improve checks for version of Berkeley database libraries.
6182         + amend fix for rpath to not modify LDFLAGS if the platform has no
6183           applicable transformation (report by Christian Ebert, cf: 20071124).
6184
6185 20071124
6186         + modify configure option --with-hashed-db to accept a parameter which
6187           is the install-prefix of a given Berkeley Database (prompted by
6188           pierre4d2 comments).
6189         + rewrite wrapper for wcrtomb(), making it work on Solaris.  This is
6190           used in the form library to determine the length of the buffer needed
6191           by field_buffer (report by Alfred Fung).
6192         + remove unneeded window-parameter from C++ binding for wresize (report
6193           by Chris Lee).
6194
6195 20071117
6196         + modify the support for filesystems which do not support mixed-case to
6197           generate 2-character (hexadecimal) codes for the lower-level of the
6198           filesystem terminfo database (request by Michail Vidiassov).
6199         + add configure option --enable-mixed-case, to allow overriding the
6200           configure script's check if the filesystem supports mixed-case
6201           filenames.
6202         + add wresize() to C++ binding (request by Chris Lee).
6203         + define NCURSES_EXT_FUNCS and NCURSES_EXT_COLORS in curses.h to make
6204           it simpler to tell if the extended functions and/or colors are
6205           declared.
6206
6207 20071103
6208         + update memory-leak checks for changes to names.c and codes.c
6209         + correct acsc strings in h19, z100 (patch by Benjamin C W Sittler).
6210
6211 20071020
6212         + continue implementing support for threading demo by adding mutex
6213           for use_window().
6214         + add mrxvt terminfo entry, add/fix xterm building blocks for modified
6215           cursor keys -TD
6216         + compile with FreeBSD "contemporary" TTY interface (patch by
6217           Rong-En Fan).
6218
6219 20071013
6220         + modify makefile rules to allow clear, tput and tset to be built
6221           without libtic.  The other programs (infocmp, tic and toe) rely on
6222           that library.
6223         + add/modify null-pointer checks in several functions for SP and/or
6224           the WINDOW* parameter (report by Thorben Krueger).
6225         + fixes for field_buffer() in formw library (see Redhat #310071,
6226           patches by Miroslav Lichvar).
6227         + improve performance of NCURSES_CHAR_EQ code (patch by Miroslav
6228           Lichvar).
6229         + update/improve mlterm and rxvt terminfo entries, e.g., for
6230           the modified cursor- and keypad-keys -TD
6231
6232 20071006
6233         + add code to curses.priv.h ifdef'd with NCURSES_CHAR_EQ, which
6234           changes the CharEq() macro to an inline function to allow comparing
6235           cchar_t struct's without comparing gaps in a possibly unpacked
6236           memory layout (report by Miroslav Lichvar).
6237
6238 20070929
6239         + add new functions to lib_trace.c to setup mutex's for the _tracef()
6240           calls within the ncurses library.
6241         + for the reentrant model, move _nc_tputs_trace and _nc_outchars into
6242           the SCREEN.
6243         + start modifying test/worm.c to provide threading demo (incomplete).
6244         + separated ifdef's for some BSD-related symbols in tset.c, to make
6245           it compile on LynxOS (report by Greg Gemmer).
6246 20070915
6247         + modify Ada95/gen/Makefile to use shlib script, to simplify building
6248           shared-library configuration on platforms lacking rpath support.
6249         + build-fix for Ada95/src/Makefile to reflect changed dependency for
6250           the terminal-interface-curses-aux.adb file which is now generated.
6251         + restructuring test/worm.c, for use_window() example.
6252
6253 20070908
6254         + add use_window() and use_screen() functions, to develop into support
6255           for threaded library (incomplete).
6256         + fix typos in man/curs_opaque.3x which kept the install script from
6257           creating symbolic links to two aliases created in 20070818 (report by
6258           Rong-En Fan).
6259
6260 20070901
6261         + remove a spurious newline from output of html.m4, which caused links
6262           for Ada95 html to be incorrect for the files generated using m4.
6263         + start investigating mutex's for SCREEN manipulation (incomplete).
6264         + minor cleanup of codes.c/names.c for --enable-const
6265         + expand/revise "Routine and Argument Names" section of ncurses manpage
6266           to address report by David Givens in newsgroup discussion.
6267         + fix interaction between --without-progs/--with-termcap configure
6268           options (report by Michail Vidiassov).
6269         + fix typo in "--disable-relink" option (report by Michail Vidiassov).
6270
6271 20070825
6272         + fix a sign-extension bug in infocmp's repair_acsc() function
6273           (cf: 971004).
6274         + fix old configure script bug which prevented "--disable-warnings"
6275           option from working (patch by Mike Frysinger).
6276
6277 20070818
6278         + add 9term terminal description (request by Juhapekka Tolvanen) -TD
6279         + modify comp_hash.c's string output to avoid misinterpreting a null
6280           "\0" followed by a digit.
6281         + modify MKnames.awk and MKcodes.awk to support big-strings.
6282           This only applies to the cases (broken linker, reentrant) where
6283           the corresponding arrays are accessed via wrapper functions.
6284         + split MKnames.awk into two scripts, eliminating the shell redirection
6285           which complicated the make process and also the bogus timestamp file
6286           which was introduced to fix "make -j".
6287         + add test/test_opaque.c, test/test_arrays.c
6288         + add wgetscrreg() and wgetparent() for applications that may need it
6289           when NCURSES_OPAQUE is defined (prompted by Bryan Christ).
6290
6291 20070812
6292         + amend treatment of infocmp "-r" option to retain the 1023-byte limit
6293           unless "-T" is given (cf: 981017).
6294         + modify comp_captab.c generation to use big-strings.
6295         + make _nc_capalias_table and _nc_infoalias_table private accessed via
6296           _nc_get_alias_table() since the tables are used only within the tic
6297           library.
6298         + modify configure script to skip Intel compiler in CF_C_INLINE.
6299         + make _nc_info_hash_table and _nc_cap_hash_table private accessed via
6300           _nc_get_hash_table() since the tables are used only within the tic
6301           library.
6302
6303 20070728
6304         + make _nc_capalias_table and _nc_infoalias_table private, accessed via
6305           _nc_get_alias_table() since they are used only by parse_entry.c
6306         + make _nc_key_names private since it is used only by lib_keyname.c
6307         + add --disable-big-strings configure option to control whether
6308           unctrl.c is generated using the big-string optimization - which may
6309           use strings longer than supported by a given compiler.
6310         + reduce relocation tables for tic, infocmp by changing type of
6311           internal hash tables to short, and make those private symbols.
6312         + eliminate large fixed arrays from progs/infocmp.c
6313
6314 20070721
6315         + change winnstr() to stop at the end of the line (cf: 970315).
6316         + add test/test_get_wstr.c
6317         + add test/test_getstr.c
6318         + add test/test_inwstr.c
6319         + add test/test_instr.c
6320
6321 20070716
6322         + restore a call to obtain screen-size in _nc_setupterm(), which
6323           is used in tput and other non-screen applications via setupterm()
6324           (Debian #433357, reported by Florent Bayle, Christian Ohm,
6325           cf: 20070310).
6326
6327 20070714
6328         + add test/savescreen.c test-program
6329         + add check to trace-file open, if the given name is a directory, add
6330           ".log" to the name and try again.
6331         + add konsole-256color entry -TD
6332         + add extra gcc warning options from xterm.
6333         + minor fixes for ncurses/hashmap test-program.
6334         + modify configure script to quiet c++ build with libtool when the
6335           --disable-echo option is used.
6336         + modify configure script to disable ada95 if libtool is selected,
6337           writing a warning message (addresses FreeBSD #114493).
6338         + update config.guess, config.sub
6339
6340 20070707
6341         + add continuous-move "M" to demo_panels to help test refresh changes.
6342         + improve fix for refresh of window on top of multi-column characters,
6343           taking into account some split characters on left/right window
6344           boundaries.
6345
6346 20070630
6347         + add "widec" row to _tracedump() output to help diagnose remaining
6348           problems with multi-column characters.
6349         + partial fix for refresh of window on top of multi-column characters
6350           which are partly overwritten (report by Sadrul H Chowdhury).
6351         + ignore A_CHARTEXT bits in vidattr() and vid_attr(), in case
6352           multi-column extension bits are passed there.
6353         + add setlocale() call to demo_panels.c, needed for wide-characters.
6354         + add some output flags to _nc_trace_ttymode to help diagnose a bug
6355           report by Larry Virden, i.e., ONLCR, OCRNL, ONOCR and ONLRET,
6356
6357 20070623
6358         + add test/demo_panels.c
6359         + implement opaque version of setsyx() and getsyx().
6360
6361 20070612
6362         + corrected xterm+pcf2 terminfo modifiers for F1-F4, to match xterm
6363           #226 -TD
6364         + split-out key_name() from MKkeyname.awk since it now depends upon
6365           wunctrl() which is not in libtinfo (report by Rong-En Fan).
6366
6367 20070609
6368         + add test/key_name.c
6369         + add stdscr cases to test/inchs.c and test/inch_wide.c
6370         + update test/configure
6371         + correct formatting of DEL (0x7f) in _nc_vischar().
6372         + null-terminate result of wunctrl().
6373         + add null-pointer check in key_name() (report by Andreas Krennmair,
6374           cf: 20020901).
6375
6376 20070602
6377         + adapt mouse-handling code from menu library in form-library
6378           (discussion with Clive Nicolson).
6379         + add a modification of test/dots.c, i.e., test/dots_mvcur.c to
6380           illustrate how to use mvcur().
6381         + modify wide-character flavor of SetAttr() to preserve the
6382           WidecExt() value stored in the .attr field, e.g., in case it
6383           is overwritten by chgat (report by Aleksi Torhamo).
6384         + correct buffer-size for _nc_viswbuf2n() (report by Aleksi Torhamo).
6385         + build-fixes for Solaris 2.6 and 2.7 (patch by Peter O'Gorman).
6386
6387 20070526
6388         + modify keyname() to use "^X" form only if meta() has been called, or
6389           if keyname() is called without initializing curses, e.g., via
6390           initscr() or newterm() (prompted by LinuxBase #1604).
6391         + document some portability issues in man/curs_util.3x
6392         + add a shadow copy of TTY buffer to _nc_prescreen to fix applications
6393           broken by moving that data into SCREEN (cf: 20061230).
6394
6395 20070512
6396         + add 'O' (wide-character panel test) in ncurses.c to demonstrate a
6397           problem reported by Sadrul H Chowdhury with repainting parts of
6398           a fullwidth cell.
6399         + modify slk_init() so that if there are preceding calls to
6400           ripoffline(), those affect the available lines for soft-keys (adapted
6401           from patch by Clive Nicolson).
6402         + document some portability issues in man/curs_getyx.3x
6403
6404 20070505
6405         + fix a bug in Ada95/samples/ncurses which caused a variable to
6406           become uninitialized in the "b" test.
6407         + fix Ada95/gen/Makefile.in adahtml rule to account for recent
6408           movement of files, fix a few incorrect manpage references in the
6409           generated html.
6410         + add Ada95 binding to _nc_freeall() as Curses_Free_All to help with
6411           memory-checking.
6412         + correct some functions in Ada95 binding which were using return value
6413           from C where none was returned:  idcok(), immedok() and wtimeout().
6414         + amend recent changes for Ada95 binding to make it build with
6415           Cygwin's linker, e.g., with configure options
6416                 --enable-broken-linker --with-ticlib
6417
6418 20070428
6419         + add a configure check for gcc's options for inlining, use that to
6420           quiet a warning message where gcc's default behavior changed from
6421           3.x to 4.x.
6422         + improve warning message when checking if GPM is linked to curses
6423           library by not warning if its use of "wgetch" is via a weak symbol.
6424         + add loader options when building with static libraries to ensure that
6425           an installed shared library for ncurses does not conflict.  This is
6426           reported as problem with Tru64, but could affect other platforms
6427           (report Martin Mokrejs, analysis by Tim Mooney).
6428         + fix build on cygwin after recent ticlib/termlib changes, i.e.,
6429           + adjust TINFO_SUFFIX value to work with cygwin's dll naming
6430           + revert a change from 20070303 which commented out dependency of
6431             SHLIB_LIST in form/menu/panel/c++ libraries.
6432         + fix initialization of ripoff stack pointer (cf: 20070421).
6433
6434 20070421
6435         + move most static variables into structures _nc_globals and
6436           _nc_prescreen, to simplify storage.
6437         + add/use configure script macro CF_SIG_ATOMIC_T, use the corresponding
6438           type for data manipulated by signal handlers (prompted by comments
6439           in mailing.openbsd.bugs newsgroup).
6440         + modify CF_WITH_LIBTOOL to allow one to pass options such as -static
6441           to the libtool create- and link-operations.
6442
6443 20070414
6444         + fix whitespace in curs_opaque.3x which caused a spurious ';' in
6445           the installed aliases (report by Peter Santoro).
6446         + fix configure script to not try to generate adacurses-config when
6447           Ada95 tree is not built.
6448
6449 20070407
6450         + add man/curs_legacy.3x, man/curs_opaque.3x
6451         + fix acs_map binding for Ada95 when --enable-reentrant is used.
6452         + add adacurses-config to the Ada95 install, based on version from
6453           FreeBSD port, in turn by Juergen Pfeifer in 2000 (prompted by
6454           comment on comp.lang.ada newsgroup).
6455         + fix includes in c++ binding to build with Intel compiler
6456           (cf: 20061209).
6457         + update install rule in Ada95 to use mkdirs.sh
6458         > other fixes prompted by inspection for Coverity report:
6459         + modify ifdef's for c++ binding to use try/catch/throw statements
6460         + add a null-pointer check in tack/ansi.c request_cfss()
6461         + fix a memory leak in ncurses/base/wresize.c
6462         + corrected check for valid memu/meml capabilities in
6463           progs/dump_entry.c when handling V_HPUX case.
6464         > fixes based on Coverity report:
6465         + remove dead code in test/bs.c
6466         + remove dead code in test/demo_defkey.c
6467         + remove an unused assignment in progs/infocmp.c
6468         + fix a limit check in tack/ansi.c tools_charset()
6469         + fix tack/ansi.c tools_status() to perform the VT320/VT420
6470           tests in request_cfss().  The function had exited too soon.
6471         + fix a memory leak in tic.c's make_namelist()
6472         + fix a couple of places in tack/output.c which did not check for EOF.
6473         + fix a loop-condition in test/bs.c
6474         + add index checks in lib_color.c for color palettes
6475         + add index checks in progs/dump_entry.c for version_filter() handling
6476           of V_BSD case.
6477         + fix a possible null-pointer dereference in copywin()
6478         + fix a possible null-pointer dereference in waddchnstr()
6479         + add a null-pointer check in _nc_expand_try()
6480         + add a null-pointer check in tic.c's make_namelist()
6481         + add a null-pointer check in _nc_expand_try()
6482         + add null-pointer checks in test/cardfile.c
6483         + fix a double-free in ncurses/tinfo/trim_sgr0.c
6484         + fix a double-free in ncurses/base/wresize.c
6485         + add try/catch block to c++/cursesmain.cc
6486
6487 20070331
6488         + modify Ada95 binding to build with --enable-reentrant by wrapping
6489           global variables (bug: acs_map does not yet work).
6490         + modify Ada95 binding to use the new access-functions, allowing it
6491           to build/run when NCURSES_OPAQUE is set.
6492         + add access-functions and macros to return properties of the WINDOW
6493           structure, e.g., when NCURSES_OPAQUE is set.
6494         + improved install-sh's quoting.
6495         + use mkdirs.sh rather than mkinstalldirs, e.g., to use fixes from
6496           other programs.
6497
6498 20070324
6499         + eliminate part of the direct use of WINDOW data from Ada95 interface.
6500         + fix substitutions for termlib filename to make configure option
6501           --enable-reentrant work with --with-termlib.
6502         + change a constructor for NCursesWindow to allow compiling with
6503           NCURSES_OPAQUE set, since we cannot pass a reference to
6504           an opaque pointer.
6505
6506 20070317
6507         + ignore --with-chtype=unsigned since unsigned is always added to
6508           the type in curses.h; do the same for --with-mmask-t.
6509         + change warning regarding --enable-ext-colors and wide-character
6510           in the configure script to an error.
6511         + tweak error message in CF_WITH_LIBTOOL to distinguish other programs
6512           such as Darwin's libtool program (report by Michail Vidiassov)
6513         + modify edit_man.sh to allow for multiple substitutions per line.
6514         + set locale in misc/ncurses-config.in since it uses a range
6515         + change permissions libncurses++.a install (report by Michail
6516           Vidiassov).
6517         + corrected length of temporary buffer in wide-character version
6518           of set_field_buffer() (related to report by Bryan Christ).
6519
6520 20070311
6521         + fix mk-1st.awk script install_shlib() function, broken in 20070224
6522           changes for cygwin (report by  Michail Vidiassov).
6523
6524 20070310
6525         + increase size of array in _nc_visbuf2n() to make "tic -v" work
6526           properly in its similar_sgr() function (report/analysis by Peter
6527           Santoro).
6528         + add --enable-reentrant configure option for ongoing changes to
6529           implement a reentrant version of ncurses:
6530           + libraries are suffixed with "t"
6531           + wrap several global variables (curscr, newscr, stdscr, ttytype,
6532             COLORS, COLOR_PAIRS, COLS, ESCDELAY, LINES and TABSIZE) as
6533             functions returning values stored in SCREEN or cur_term.
6534           + move some initialization (LINES, COLS) from lib_setup.c,
6535             i.e., setupterm() to _nc_setupscreen(), i.e., newterm().
6536
6537 20070303
6538         + regenerated html documentation.
6539         + add NCURSES_OPAQUE symbol to curses.h, will use to make structs
6540           opaque in selected configurations.
6541         + move the chunk in lib_acs.c which resets acs capabilities when
6542           running on a terminal whose locale interferes with those into
6543           _nc_setupscreen(), so the libtinfo/libtinfow files can be made
6544           identical (requested by Miroslav Lichvar).
6545         + do not use configure variable SHLIB_LIBS for building libraries
6546           outside the ncurses directory, since that symbol is customized
6547           only for that directory, and using it introduces an unneeded
6548           dependency on libdl (requested by Miroslav Lichvar).
6549         + modify mk-1st.awk so the generated makefile rules for linking or
6550           installing shared libraries do not first remove the library, in
6551           case it is in use, e.g., libncurses.so by /bin/sh (report by Jeff
6552           Chua).
6553         + revised section "Using NCURSES under XTERM" in ncurses-intro.html
6554           (prompted by newsgroup comment by Nick Guenther).
6555
6556 20070224
6557         + change internal return codes of _nc_wgetch() to check for cases
6558           where KEY_CODE_YES should be returned, e.g., if a KEY_RESIZE was
6559           ungetch'd, and read by wget_wch().
6560         + fix static-library build broken in 20070217 changes to remove "-ldl"
6561           (report by Miroslav Lichvar).
6562         + change makefile/scripts for cygwin to allow building termlib.
6563         + use Form_Hook in manpages to match form.h
6564         + use Menu_Hook in manpages, as well as a few places in menu.h
6565         + correct form- and menu-manpages to use specific Field_Options,
6566           Menu_Options and Item_Options types.
6567         + correct prototype for _tracechar() in manpage (cf: 20011229).
6568         + correct prototype for wunctrl() in manpage.
6569
6570 20070217
6571         + fixes for $(TICS_LIST) in ncurses/Makefile (report by Miroslav
6572           Lichvar).
6573         + modify relinking of shared libraries to apply only when rpath is
6574           enabled, and add --disable-relink option which can be used to
6575           disable the feature altogether (reports by Michail Vidiassov,
6576           Adam J Richter).
6577         + fix --with-termlib option for wide-character configuration, stripping
6578           the "w" suffix in one place (report by Miroslav Lichvar).
6579         + remove "-ldl" from some library lists to reduce dependencies in
6580           programs (report by Miroslav Lichvar).
6581         + correct description of --enable-signed-char in configure --help
6582           (report by Michail Vidiassov).
6583         + add pattern for GNU/kFreeBSD configuration to CF_XOPEN_SOURCE,
6584           which matches an earlier change to CF_SHARED_OPTS, from xterm #224
6585           fixes.
6586         + remove "${DESTDIR}" from -install_name option used for linking
6587           shared libraries on Darwin (report by Michail Vidiassov).
6588
6589 20070210
6590         + add test/inchs.c, test/inch_wide.c, to test win_wchnstr().
6591         + remove libdl from library list for termlib (report by Miroslav
6592           Lichvar).
6593         + fix configure.in to allow --without-progs --with-termlib (patch by
6594           Miroslav Lichvar).
6595         + modify win_wchnstr() to ensure that only a base cell is returned
6596           for each multi-column character (prompted by report by Wei Kong
6597           regarding change in mvwin_wch() cf: 20041023).
6598
6599 20070203
6600         + modify fix_wchnstr() in form library to strip attributes (and color)
6601           from the cchar_t array (field cells) read from a field's window.
6602           Otherwise, when copying the field cells back to the window, the
6603           associated color overrides the field's background color (report by
6604           Ricardo Cantu).
6605         + improve tracing for form library, showing created forms, fields, etc.
6606         + ignore --enable-rpath configure option if --with-shared was omitted.
6607         + add _nc_leaks_tinfo(), _nc_free_tic(), _nc_free_tinfo() entrypoints
6608           to allow leak-checking when both tic- and tinfo-libraries are built.
6609         + drop CF_CPP_VSCAN_FUNC macro from configure script, since C++ binding
6610           no longer relies on it.
6611         + disallow combining configure script options --with-ticlib and
6612           --enable-termcap (report by Rong-En Fan).
6613         + remove tack from ncurses tree.
6614
6615 20070128
6616         + fix typo in configure script that broke --with-termlib option
6617           (report by Rong-En Fan).
6618
6619 20070127
6620         + improve fix for FreeBSD gnu/98975, to allow for null pointer passed
6621           to tgetent() (report by Rong-en Fan).
6622         + update tack/HISTORY and tack/README to tell how to build it after
6623           it is removed from the ncurses tree.
6624         + fix configure check for libtool's version to trim blank lines
6625           (report by sci-fi@hush.ai).
6626         + review/eliminate other original-file artifacts in cursesw.cc, making
6627           its license consistent with ncurses.
6628         + use ncurses vw_scanw() rather than reading into a fixed buffer in
6629           the c++ binding for scanw() methods (prompted by report by Nuno Dias).
6630         + eliminate fixed-buffer vsprintf() calls in c++ binding.
6631
6632 20070120
6633         + add _nc_leaks_tic() to separate leak-checking of tic library from
6634           term/ncurses libraries, and thereby eliminate a library dependency.
6635         + fix test/mk-test.awk to ignore blank lines.
6636         + correct paths in include/headers, for --srcdir (patch by Miroslav
6637           Lichvar).
6638
6639 20070113
6640         + add a break-statement in misc/shlib to ensure that it exits on the
6641           _first_ matched directory (report by Paul Novak).
6642         + add tack/configure, which can be used to build tack outside the
6643           ncurses build-tree.
6644         + add --with-ticlib option, to build/install the tic-support functions
6645           in a separate library (suggested by Miroslav Lichvar).
6646
6647 20070106
6648         + change MKunctrl.awk to reduce relocation table for unctrl.o
6649         + change MKkeyname.awk to reduce relocation table for keyname.o
6650           (patch by Miroslav Lichvar).
6651
6652 20061230
6653         + modify configure check for libtool's version to trim blank lines
6654           (report by sci-fi@hush.ai).
6655         + modify some modules to allow them to be reentrant if _REENTRANT is
6656           defined: lib_baudrate.c, resizeterm.c (local data only)
6657         + eliminate static data from some modules: add_tries.c, hardscroll.c,
6658           lib_ttyflags.c, lib_twait.c
6659         + improve manpage install to add aliases for the transformed program
6660           names, e.g., from --program-prefix.
6661         + used linklint to verify links in the HTML documentation, made fixes
6662           to manpages as needed.
6663         + fix a typo in curs_mouse.3x (report by William McBrine).
6664         + fix install-rule for ncurses5-config to make the bin-directory.
6665
6666 20061223
6667         + modify configure script to omit the tic (terminfo compiler) support
6668           from ncurses library if --without-progs option is given.
6669         + modify install rule for ncurses5-config to do this via "install.libs"
6670         + modify shared-library rules to allow FreeBSD 3.x to use rpath.
6671         + update config.guess, config.sub
6672
6673 20061217 5.6 release for upload to ftp.gnu.org
6674
6675 20061217
6676         + add ifdef's for <wctype.h> for HPUX, which has the corresponding
6677           definitions in <wchar.h>.
6678         + revert the va_copy() change from 20061202, since it was neither
6679           correct nor portable.
6680         + add $(LOCAL_LIBS) definition to progs/Makefile.in, needed for
6681           rpath on Solaris.
6682         + ignore wide-acs line-drawing characters that wcwidth() claims are
6683           not one-column.  This is a workaround for Solaris' broken locale
6684           support.
6685
6686 20061216
6687         + modify configure --with-gpm option to allow it to accept a parameter,
6688           i.e., the name of the dynamic GPM library to load via dlopen()
6689           (requested by Bryan Henderson).
6690         + add configure option --with-valgrind, changes from vile.
6691         + modify configure script AC_TRY_RUN and AC_TRY_LINK checks to use
6692           'return' in preference to 'exit()'.
6693
6694 20061209
6695         + change default for --with-develop back to "no".
6696         + add XTABS to tracing of TTY bits.
6697         + updated autoconf patch to ifdef-out the misfeature which declares
6698           exit() for configure tests.  This fixes a redefinition warning on
6699           Solaris.
6700         + use ${CC} rather than ${LD} in shared library rules for IRIX64,
6701           Solaris to help ensure that initialization sections are provided for
6702           extra linkage requirements, e.g., of C++ applications (prompted by
6703           comment by Casper Dik in newsgroup).
6704         + rename "$target" in CF_MAN_PAGES to make it easier to distinguish
6705           from the autoconf predefined symbol.  There was no conflict,
6706           since "$target" was used only in the generated edit_man.sh file,
6707           but SuSE's rpm package contains a patch.
6708
6709 20061202
6710         + update man/term.5 to reflect extended terminfo support and hashed
6711           database configuration.
6712         + updates for test/configure script.
6713         + adapted from SuSE rpm package:
6714           + remove long-obsolete workaround for broken-linker which declared
6715             cur_term in tic.c
6716           + improve error recovery in PUTC() macro when wcrtomb() does not
6717             return usable results for an 8-bit character.
6718         + patches from rpm package (SuSE):
6719           + use va_copy() in extra varargs manipulation for tracing version
6720             of printw, etc.
6721           + use a va_list rather than a null in _nc_freeall()'s call to
6722             _nc_printf_string().
6723         + add some see-also references in manpages to show related
6724           wide-character functions (suggested by Claus Fischer).
6725
6726 20061125
6727         + add a check in lib_color.c to ensure caller does not increase COLORS
6728           above max_colors, which is used as an array index (discussion with
6729           Simon Sasburg).
6730         + add ifdef's allowing ncurses to be built with tparm() using either
6731           varargs (the existing status), or using a fixed-parameter list (to
6732           match X/Open).
6733
6734 20061104
6735         + fix redrawing of windows other than stdscr using wredrawln() by
6736           touching the corresponding rows in curscr (discussion with Dan
6737           Gookin).
6738         + add test/redraw.c
6739         + add test/echochar.c
6740         + review/cleanup manpage descriptions of error-returns for form- and
6741           menu-libraries (prompted by FreeBSD docs/46196).
6742
6743 20061028
6744         + add AUTHORS file -TD
6745         + omit the -D options from output of the new config script --cflags
6746           option (suggested by Ralf S Engelschall).
6747         + make NCURSES_INLINE unconditionally defined in curses.h
6748
6749 20061021
6750         + revert change to accommodate bash 3.2, since that breaks other
6751           platforms, e.g., Solaris.
6752         + minor fixes to NEWS file to simplify scripting to obtain list of
6753           contributors.
6754         + improve some shared-library configure scripting for Linux, FreeBSD
6755           and NetBSD to make "--with-shlib-version" work.
6756         + change configure-script rules for FreeBSD shared libraries to allow
6757           for rpath support in versions past 3.
6758         + use $(DESTDIR) in makefile rules for installing/uninstalling the
6759           package config script (reports/patches by Christian Wiese,
6760           Ralf S Engelschall).
6761         + fix a warning in the configure script for NetBSD 2.0, working around
6762           spurious blanks embedded in its ${MAKEFLAGS} symbol.
6763         + change test/Makefile to simplify installing test programs in a
6764           different directory when --enable-rpath is used.
6765
6766 20061014
6767         + work around bug in bash 3.2 by adding extra quotes (Jim Gifford).
6768         + add/install a package config script, e.g., "ncurses5-config" or
6769           "ncursesw5-config", according to configuration options.
6770
6771 20061007
6772         + add several GNU Screen terminfo variations with 16- and 256-colors,
6773           and status line (Alain Bench).
6774         + change the way shared libraries (other than libtool) are installed.
6775           Rather than copying the build-tree's libraries, link the shared
6776           objects into the install directory.  This makes the --with-rpath
6777           option work except with $(DESTDIR) (cf: 20000930).
6778
6779 20060930
6780         + fix ifdef in c++/internal.h for QNX 6.1
6781         + test-compiled with (old) egcs-1.1.2, modified configure script to
6782           not unset the $CXX and related variables which would prevent this.
6783         + fix a few terminfo.src typos exposed by improvements to "-f" option.
6784         + improve infocmp/tic "-f" option formatting.
6785
6786 20060923
6787         + make --disable-largefile option work (report by Thomas M Ott).
6788         + updated html documentation.
6789         + add ka2, kb1, kb3, kc2 to vt220-keypad as an extension -TD
6790         + minor improvements to rxvt+pcfkeys -TD
6791
6792 20060916
6793         + move static data from lib_mouse.c into SCREEN struct.
6794         + improve ifdef's for _POSIX_VDISABLE in tset to work with Mac OS X
6795           (report by Michail Vidiassov).
6796         + modify CF_PATH_SYNTAX to ensure it uses the result from --prefix
6797           option (from lynx changes) -TD
6798         + adapt AC_PROG_EGREP check, noting that this is likely to be another
6799           place aggravated by POSIXLY_CORRECT.
6800         + modify configure check for awk to ensure that it is found (prompted
6801           by report by Christopher Parker).
6802         + update config.sub
6803
6804 20060909
6805         + add kon, kon2 and jfbterm terminfo entry (request by Till Maas) -TD
6806         + remove invis capability from klone+sgr, mainly used by linux entry,
6807           since it does not really do this -TD
6808
6809 20060903
6810         + correct logic in wadd_wch() and wecho_wch(), which did not guard
6811           against passing the multi-column attribute into a call on waddch(),
6812           e.g., using data returned by win_wch() (cf: 20041023)
6813           (report by Sadrul H Chowdhury).
6814
6815 20060902
6816         + fix kterm's acsc string -TD
6817         + fix for change to tic/infocmp in 20060819 to ensure no blank is
6818           embedded into a termcap description.
6819         + workaround for 20050806 ifdef's change to allow visbuf.c to compile
6820           when using --with-termlib --with-trace options.
6821         + improve tgetstr() by making the return value point into the user's
6822           buffer, if provided (patch by Miroslav Lichvar (see Redhat #202480)).
6823         + correct libraries needed for foldkeys (report by Stanislav Ievlev)
6824
6825 20060826
6826         + add terminfo entries for xfce terminal (xfce) and multi gnome
6827           terminal (mgt) -TD
6828         + add test/foldkeys.c
6829
6830 20060819
6831         + modify tic and infocmp to avoid writing trailing blanks on terminfo
6832           source output (Debian #378783).
6833         + modify configure script to ensure that if the C compiler is used
6834           rather than the loader in making shared libraries, the $(CFLAGS)
6835           variable is also used (Redhat #199369).
6836         + port hashed-db code to db2 and db3.
6837         + fix a bug in tgetent() from 20060625 and 20060715 changes
6838           (patch/analysis by Miroslav Lichvar (see Redhat #202480)).
6839
6840 20060805
6841         + updated xterm function-keys terminfo to match xterm #216 -TD
6842         + add configure --with-hashed-db option (tested only with FreeBSD 6.0,
6843           e.g., the db 1.8.5 interface).
6844
6845 20060729
6846         + modify toe to access termcap data, e.g., via cgetent() functions,
6847           or as a text file if those are not available.
6848         + use _nc_basename() in tset to improve $SHELL check for csh/sh.
6849         + modify _nc_read_entry() and _nc_read_termcap_entry() so infocmp,
6850           can access termcap data when the terminfo database is disabled.
6851
6852 20060722
6853         + widen the test for xterm kmous a little to allow for other strings
6854           than \E[M, e.g., for xterm-sco functionality in xterm.
6855         + update xterm-related terminfo entries to match xterm patch #216 -TD
6856         + update config.guess, config.sub
6857
6858 20060715
6859         + fix for install-rule in Ada95 to add terminal_interface.ads
6860           and terminal_interface.ali (anonymous posting in comp.lang.ada).
6861         + correction to manpage for getcchar() (report by William McBrine).
6862         + add test/chgat.c
6863         + modify wchgat() to mark updated cells as changed so a refresh will
6864           repaint those cells (comments by Sadrul H Chowdhury and William
6865           McBrine).
6866         + split up dependency of names.c and codes.c in ncurses/Makefile to
6867           work with parallel make (report/analysis by Joseph S Myers).
6868         + suppress a warning message (which is ignored) for systems without
6869           an ldconfig program (patch by Justin Hibbits).
6870         + modify configure script --disable-symlinks option to allow one to
6871           disable symlink() in tic even when link() does not work (report by
6872           Nigel Horne).
6873         + modify MKfallback.sh to use tic -x when constructing fallback tables
6874           to allow extended capabilities to be retrieved from a fallback entry.
6875         + improve leak-checking logic in tgetent() from 20060625 to ensure that
6876           it does not free the current screen (report by Miroslav Lichvar).
6877
6878 20060708
6879         + add a check for _POSIX_VDISABLE in tset (NetBSD #33916).
6880         + correct _nc_free_entries() and related functions used for memory leak
6881           checking of tic.
6882
6883 20060701
6884         + revert a minor change for magic-cookie support from 20060513, which
6885           caused unexpected reset of attributes, e.g., when resizing test/view
6886           in color mode.
6887         + note in clear manpage that the program ignores command-line
6888           parameters (prompted by Debian #371855).
6889         + fixes to make lib_gen.c build properly with changes to the configure
6890           --disable-macros option and NCURSES_NOMACROS (cf:  20060527)
6891         + update/correct several terminfo entries -TD
6892         + add some notes regarding copyright to terminfo.src -TD
6893
6894 20060625
6895         + fixes to build Ada95 binding with gnat-4.1.0
6896         + modify read_termtype() so the term_names data is always allocated as
6897           part of the str_table, a better fix for a memory leak (cf: 20030809).
6898         + reduce memory leaks in repeated calls to tgetent() by remembering the
6899           last TERMINAL* value allocated to hold the corresponding data and
6900           freeing that if the tgetent() result buffer is the same as the
6901           previous call (report by "Matt" for FreeBSD gnu/98975).
6902         + modify tack to test extended capability function-key strings.
6903         + improved gnome terminfo entry (GenToo #122566).
6904         + improved xterm-256color terminfo entry (patch by Alain Bench).
6905
6906 20060617
6907         + fix two small memory leaks related to repeated tgetent() calls
6908           with TERM=screen (report by "Matt" for FreeBSD gnu/98975).
6909         + add --enable-signed-char to simplify Debian package.
6910         + reduce name-pollution in term.h by removing #define's for HAVE_xxx
6911           symbols.
6912         + correct typo in curs_terminfo.3x (Debian #369168).
6913
6914 20060603
6915         + enable the mouse in test/movewindow.c
6916         + improve a limit-check in frm_def.c (John Heasley).
6917         + minor copyright fixes.
6918         + change configure script to produce test/Makefile from data file.
6919
6920 20060527
6921         + add a configure option --enable-wgetch-events to enable
6922           NCURSES_WGETCH_EVENTS, and correct the associated loop-logic in
6923           lib_twait.c (report by Bernd Jendrissek).
6924         + remove include/nomacros.h from build, since the ifdef for
6925           NCURSES_NOMACROS makes that obsolete.
6926         + add entrypoints for some functions which were only provided as macros
6927           to make NCURSES_NOMACROS ifdef work properly:  getcurx(), getcury(),
6928           getbegx(), getbegy(), getmaxx(), getmaxy(), getparx() and getpary(),
6929           wgetbkgrnd().
6930         + provide ifdef for NCURSES_NOMACROS which suppresses most macro
6931           definitions from curses.h, i.e., where a macro is defined to override
6932           a function to improve performance.  Allowing a developer to suppress
6933           these definitions can simplify some application (discussion with
6934           Stanislav Ievlev).
6935         + improve description of memu/meml in terminfo manpage.
6936
6937 20060520
6938         + if msgr is false, reset video attributes when doing an automargin
6939           wrap to the next line.  This makes the ncurses 'k' test work properly
6940           for hpterm.
6941         + correct caching of keyname(), which was using only half of its table.
6942         + minor fixes to memory-leak checking.
6943         + make SCREEN._acs_map and SCREEN._screen_acs_map pointers rather than
6944           arrays, making ACS_LEN less visible to applications (suggested by
6945           Stanislav Ievlev).
6946         + move chunk in SCREEN ifdef'd for USE_WIDEC_SUPPORT to the end, so
6947           _screen_acs_map will have the same offset in both ncurses/ncursesw,
6948           making the corresponding tinfo/tinfow libraries binary-compatible
6949           (cf: 20041016, report by Stanislav Ievlev).
6950
6951 20060513
6952         + improve debug-tracing for EmitRange().
6953         + change default for --with-develop to "yes".  Add NCURSES_NO_HARD_TABS
6954           and NCURSES_NO_MAGIC_COOKIE environment variables to allow runtime
6955           suppression of the related hard-tabs and xmc-glitch features.
6956         + add ncurses version number to top-level manpages, e.g., ncurses, tic,
6957           infocmp, terminfo as well as form, menu, panel.
6958         + update config.guess, config.sub
6959         + modify ncurses.c to work around a bug in NetBSD 3.0 curses
6960           (field_buffer returning null for a valid field).  The 'r' test
6961           appears to not work with that configuration since the new_fieldtype()
6962           function is broken in that implementation.
6963
6964 20060506
6965         + add hpterm-color terminfo entry -TD
6966         + fixes to compile test-programs with HPUX 11.23
6967
6968 20060422
6969         + add copyright notices to files other than those that are generated,
6970           data or adapted from pdcurses (reports by William McBrine, David
6971           Taylor).
6972         + improve rendering on hpterm by not resetting attributes at the end
6973           of doupdate() if the terminal has the magic-cookie feature (report
6974           by Bernd Rieke).
6975         + add 256color variants of terminfo entries for programs which are
6976           reported to implement this feature -TD
6977
6978 20060416
6979         + fix typo in change to NewChar() macro from 20060311 changes, which
6980           broke tab-expansion (report by Frederic L W Meunier).
6981
6982 20060415
6983         + document -U option of tic and infocmp.
6984         + modify tic/infocmp to suppress smacs/rmacs when acsc is suppressed
6985           due to size limit, e.g., converting to termcap format.  Also
6986           suppress them if the output format does not contain acsc and it
6987           was not VT100-like, i.e., a one-one mapping (Novell #163715).
6988         + add configure check to ensure that SIGWINCH is defined on platforms
6989           such as OS X which exclude that when _XOPEN_SOURCE, etc., are
6990           defined (report by Nicholas Cole)
6991
6992 20060408
6993         + modify write_object() to not write coincidental extensions of an
6994           entry made due to it being referenced in a use= clause (report by
6995           Alain Bench).
6996         + another fix for infocmp -i option, which did not ensure that some
6997           escape sequences had comparable prefixes (report by Alain Bench).
6998
6999 20060401
7000         + improve discussion of init/reset in terminfo and tput manpages
7001           (report by Alain Bench).
7002         + use is3 string for a fallback of rs3 in the reset program; it was
7003           using is2 (report by Alain Bench).
7004         + correct logic for infocmp -i option, which did not account for
7005           multiple digits in a parameter (cf: 20040828) (report by Alain
7006           Bench).
7007         + move _nc_handle_sigwinch() to lib_setup.c to make --with-termlib
7008           option work after 20060114 changes (report by Arkadiusz Miskiewicz).
7009         + add copyright notices to test-programs as needed (report by William
7010           McBrine).
7011
7012 20060318
7013         + modify ncurses.c 'F' test to combine the wide-characters with color
7014           and/or video attributes.
7015         + modify test/ncurses to use CTL/Q or ESC consistently for exiting
7016           a test-screen (some commands used 'x' or 'q').
7017
7018 20060312
7019         + fix an off-by-one in the scrolling-region change (cf_ 20060311).
7020
7021 20060311
7022         + add checks in waddchnstr() and wadd_wchnstr() to stop copying when
7023           a null character is found (report by Igor Bogomazov).
7024         + modify progs/Makefile.in to make "tput init" work properly with
7025           cygwin, i.e., do not pass a ".exe" in the reference string used
7026           in check_aliases (report by Samuel Thibault).
7027         + add some checks to ensure current position is within scrolling
7028           region before scrolling on a new line (report by Dan Gookin).
7029         + change some NewChar() usage to static variables to work around
7030           stack garbage introduced when cchar_t is not packed (Redhat #182024).
7031
7032 20060225
7033         + workarounds to build test/movewindow with PDcurses 2.7.
7034         + fix for nsterm-16color entry (patch by Alain Bench).
7035         + correct a typo in infocmp manpage (Debian #354281).
7036
7037 20060218
7038         + add nsterm-16color entry -TD
7039         + updated mlterm terminfo entry -TD
7040         + remove 970913 feature for copying subwindows as they are moved in
7041           mvwin() (discussion with Bryan Christ).
7042         + modify test/demo_menus.c to demonstrate moving a menu (both the
7043           window and subwindow) using shifted cursor-keys.
7044         + start implementing recursive mvwin() in movewindow.c (incomplete).
7045         + add a fallback definition for GCC_PRINTFLIKE() in test.priv.h,
7046           for movewindow.c (report by William McBrine).
7047         + add help-message to test/movewindow.c
7048
7049 20060211
7050         + add test/movewindow.c, to test mvderwin().
7051         + fix ncurses soft-key test so color changes are shown immediately
7052           rather than delayed.
7053         + modify ncurses soft-key test to hide the keys when exiting the test
7054           screen.
7055         + fixes to build test programs with PDCurses 2.7, e.g., its headers
7056           rely on autoconf symbols, and it declares stubs for nonfunctional
7057           terminfo and termcap entrypoints.
7058
7059 20060204
7060         + improved test/configure to build test/ncurses on HPUX 11 using the
7061           vendor curses.
7062         + documented ALTERNATE CONFIGURATIONS in the ncurses manpage, for the
7063           benefit of developers who do not read INSTALL.
7064
7065 20060128
7066         + correct form library Window_To_Buffer() change (cf:  20040516), which
7067           should ignore the video attributes (report by Ricardo Cantu).
7068
7069 20060121
7070         + minor fixes to xmc-glitch experimental code:
7071           + suppress line-drawing
7072           + implement max_attributes
7073           tested with xterm.
7074         + minor fixes for the database iterator.
7075         + fix some buffer limits in c++ demo (comment by Falk Hueffner in
7076           Debian #348117).
7077
7078 20060114
7079         + add toe -a option, to show all databases.  This uses new private
7080           interfaces in the ncurses library for iterating through the list of
7081           databases.
7082         + fix toe from 20000909 changes which made it not look at
7083           $HOME/.terminfo
7084         + make toe's -v option parameter optional as per manpage.
7085         + improve SIGWINCH handling by postponing its effect during newterm(),
7086           etc., when allocating screens.
7087
7088 20060111
7089         + modify wgetnstr() to return KEY_RESIZE if a sigwinch occurs.  Use
7090           this in test/filter.c
7091         + fix an error in filter() modification which caused some applications
7092           to fail.
7093
7094 20060107
7095         + check if filter() was called when getting the screensize.  Keep it
7096           at 1 if so (based on Redhat #174498).
7097         + add extension nofilter().
7098         + refined the workaround for ACS mapping.
7099         + make ifdef's consistent in curses.h for the extended colors so the
7100           header file can be used for the normal curses library.  The header
7101           file installed for extended colors is a variation of the
7102           wide-character configuration (report by Frederic L W Meunier).
7103
7104 20051231
7105         + add a workaround to ACS mapping to allow applications such as
7106           test/blue.c to use the "PC ROM" characters by masking them with
7107           A_ALTCHARSET.  This worked up til 5.5, but was lost in the revision
7108           of legacy coding (report by Michael Deutschmann).
7109         + add a null-pointer check in the wide-character version of
7110           calculate_actual_width() (report by Victor Julien).
7111         + improve test/ncurses 'd' (color-edit) test by allowing the RGB
7112           values to be set independently (patch by William McBrine).
7113         + modify test/configure script to allow building test programs with
7114           PDCurses/X11.
7115         + modified test programs to allow some to work with NetBSD curses.
7116           Several do not because NetBSD curses implements a subset of X/Open
7117           curses, and also lacks much of SVr4 additions.  But it's enough for
7118           comparison.
7119         + update config.guess and config.sub
7120
7121 20051224
7122         + use BSD-specific fix for return-value from cgetent() from CVS where
7123           an unknown terminal type would be reportd as "database not found".
7124         + make tgetent() return code more readable using new symbols
7125           TGETENT_YES, etc.
7126         + remove references to non-existent "tctest" program.
7127         + remove TESTPROGS from progs/Makefile.in (it was referring to code
7128           that was never built in that directory).
7129         + typos in curs_addchstr.3x, some doc files (noticed in OpenBSD CVS).
7130
7131 20051217
7132         + add use_legacy_coding() function to support lynx's font-switching
7133           feature.
7134         + fix formatting in curs_termcap.3x (report by Mike Frysinger).
7135         + modify MKlib_gen.sh to change preprocessor-expanded _Bool back to
7136           bool.
7137
7138 20051210
7139         + extend test/ncurses.c 's' (overlay window) test to exercise overlay(),
7140           overwrite() and copywin() with different combinations of colors and
7141           attributes (including background color) to make it easy to see the
7142           effect of the different functions.
7143         + corrections to menu/m_global.c for wide-characters (report by
7144           Victor Julien).
7145
7146 20051203
7147         + add configure option --without-dlsym, allowing developers to
7148           configure GPM support without using dlsym() (discussion with Michael
7149           Setzer).
7150         + fix wins_nwstr(), which did not handle single-column non-8bit codes
7151           (Debian #341661).
7152
7153 20051126
7154         + move prototypes for wide-character trace functions from curses.tail
7155           to curses.wide to avoid accidental reference to those if
7156           _XOPEN_SOURCE_EXTENDED is defined without ensuring that <wchar.h> is
7157           included.
7158         + add/use NCURSES_INLINE definition.
7159         + change some internal functions to use int/unsigned rather than the
7160           short equivalents.
7161
7162 20051119
7163         + remove a redundant check in lib_color.c (Debian #335655).
7164         + use ld's -search_paths_first option on Darwin to work around odd
7165           search rules on that platform (report by Christian Gennerat, analysis
7166           by Andrea Govoni).
7167         + remove special case for Darwin in CF_XOPEN_SOURCE configure macro.
7168         + ignore EINTR in tcgetattr/tcsetattr calls (Debian #339518).
7169         + fix several bugs in test/bs.c (patch by Stephen Lindholm).
7170
7171 20051112
7172         + other minor fixes to cygwin based on tack -TD
7173         + correct smacs in cygwin (Debian #338234, report by Baurzhan
7174           Ismagulov, who noted that it was fixed in Cygwin).
7175
7176 20051029
7177         + add shifted up/down arrow codes to xterm-new as kind/kri strings -TD
7178         + modify wbkgrnd() to avoid clearing the A_CHARTEXT attribute bits
7179           since those record the state of multicolumn characters (Debian
7180           #316663).
7181         + modify werase to clear multicolumn characters that extend into
7182           a derived window (Debian #316663).
7183
7184 20051022
7185         + move assignment from environment variable ESCDELAY from initscr()
7186           down to newterm() so the environment variable affects timeouts for
7187           terminals opened with newterm() as well.
7188         + fix a memory leak in keyname().
7189         + add test/demo_altkeys.c
7190         + modify test/demo_defkey.c to exit from loop via 'q' to allow
7191           leak-checking, as well as fix a buffer size in winnstr() call.
7192
7193 20051015
7194         + correct order of use-clauses in rxvt-basic entry which made codes for
7195           f1-f4 vt100-style rather than vt220-style (report by Gabor Z Papp).
7196         + suppress configure check for gnatmake if Ada95/Makefile.in is not
7197           found.
7198         + correct a typo in configure --with-bool option for the case where
7199           --without-cxx is used (report by Daniel Jacobowitz).
7200         + add a note to INSTALL's discussion of --with-normal, pointing out
7201           that one may wish to use --without-gpm to ensure a completely
7202           static link (prompted by report by Felix von Leitner).
7203
7204 20051010 5.5 release for upload to ftp.gnu.org
7205
7206 20051008
7207         + document in demo_forms.c some portability issues.
7208
7209 20051001
7210         + document side-effect of werase() which sets the cursor position.
7211         + save/restore the current position in form field editing to make
7212           overlay mode work.
7213
7214 20050924
7215         + correct header dependencies in progs, allowing parallel make (report
7216           by Daniel Jacobowitz).
7217         + modify CF_BUILD_CC to ensure that pre-setting $BUILD_CC overrides
7218           the configure check for --with-build-cc (report by Daniel Jacobowitz).
7219         + modify CF_CFG_DEFAULTS to not use /usr as the default prefix for
7220           NetBSD.
7221         + update config.guess and config.sub from
7222                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
7223
7224 20050917
7225         + modify sed expression which computes path for /usr/lib/terminfo
7226           symbolic link in install to ensure that it does not change unexpected
7227           levels of the path (Gentoo #42336).
7228         + modify default for --disable-lp64 configure option to reduce impact
7229           on existing 64-bit builds.  Enabling the _LP64 option may change the
7230           size of chtype and mmask_t.  However, for ABI 6, it is enabled by
7231           default (report by Mike Frysinger).
7232         + add configure script check for --enable-ext-mouse, bump ABI to 6 by
7233           default if it is used.
7234         + improve configure script logic for bumping ABI to omit this if the
7235           --with-abi-version option was used.
7236         + update address for Free Software Foundation in tack's source.
7237         + correct wins_wch(), which was not marking the filler-cells of
7238           multi-column characters (cf:  20041023).
7239
7240 20050910
7241         + modify mouse initialization to ensure that Gpm_Open() is called only
7242           once.  Otherwise GPM gets confused in its initialization of signal
7243           handlers (Debian #326709).
7244
7245 20050903
7246         + modify logic for backspacing in a multiline form field to ensure that
7247           it works even when the preceding line is full (report by Frank van
7248           Vugt).
7249         + remove comment about BUGS section of ncurses manpage (Debian #325481)
7250
7251 20050827
7252         + document some workarounds for shared and libtool library
7253           configurations in INSTALL (see --with-shared and --with-libtool).
7254         + modify CF_GCC_VERSION and CF_GXX_VERSION macros to accommodate
7255           cross-compilers which emit the platform name in their version
7256           message, e.g.,
7257                 arm-sa1100-linux-gnu-g++ (GCC) 4.0.1
7258           (report by Frank van Vugt).
7259
7260 20050820
7261         + start updating documentation for upcoming 5.5 release.
7262         + fix to make libtool  and libtinfo work together again (cf: 20050122).
7263         + fixes to allow building traces into libtinfo
7264         + add debug trace to tic that shows if/how ncurses will write to the
7265           lower corner of a terminal's screen.
7266         + update llib-l* files.
7267
7268 20050813
7269         + modify initializers in c++ binding to build with old versions of g++.
7270         + improve special case for 20050115 repainting fix, ensuring that if
7271           the first changed cell is not a character that the range to be
7272           repainted is adjusted to start at a character's beginning (Debian
7273           #316663).
7274
7275 20050806
7276         + fixes to build on QNX 6.1
7277         + improve configure script checks for Intel 9.0 compiler.
7278         + remove #include's for libc.h (obsolete).
7279         + adjust ifdef's in curses.priv.h so that when cross-compiling to
7280           produce comp_hash and make_keys, no dependency on wchar.h is needed.
7281           That simplifies the build-cppflags (report by Frank van Vugt).
7282         + move modules related to key-binding into libtinfo to fix linkage
7283           problem caused by 20050430 changes to MKkeyname.sh (report by
7284           Konstantin Andreev).
7285
7286 20050723
7287         + updates/fixes for configure script macros from vile -TD
7288         + make prism9's sgr string agree with the rest of the terminfo -TD
7289         + make vt220's sgr0 string consistent with sgr string, do this for
7290           several related cases -TD
7291         + improve translation to termcap by filtering the 'me' (sgr0) strings
7292           as in the runtime call to tgetent() (prompted by a discussion with
7293           Thomas Klausner).
7294         + improve tic check for sgr0 versus sgr(0), to help ensure that sgr0
7295           resets line-drawing.
7296
7297 20050716
7298         + fix special cases for trimming sgr0 for hurd and vt220 (Debian
7299           #318621).
7300         + split-out _nc_trim_sgr0() from modifications made to tgetent(), to
7301           allow it to be used by tic to provide information about the runtime
7302           changes that would be made to sgr0 for termcap applications.
7303         + modify make_sed.sh to make the group-name in the NAME section of
7304           form/menu library manpage agree with the TITLE string when renaming
7305           is done for Debian (Debian #78866).
7306
7307 20050702
7308         + modify parameter type in c++ binding for insch() and mvwinsch() to
7309           be consistent with underlying ncurses library (was char, is chtype).
7310         + modify treatment of Intel compiler to allow _GNU_SOURCE to be defined
7311           on Linux.
7312         + improve configure check for nanosleep(), checking that it works since
7313           some older systems such as AIX 4.3 have a nonworking version.
7314
7315 20050625
7316         + update config.guess and config.sub from
7317                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
7318         + modify misc/shlib to work in test-directory.
7319         + suppress $suffix in misc/run_tic.sh when cross-compiling.  This
7320           allows cross-compiles to use the host's tic program to handle the
7321           "make install.data" step.
7322         + improve description of $LINES and $COLUMNS variables in manpages
7323           (prompted by report by Dave Ulrick).
7324         + improve description of cross-compiling in INSTALL
7325         + add NCURSES-Programming-HOWTO.html by Pradeep Padala
7326           (see http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/).
7327         + modify configure script to obtain soname for GPM library (discussion
7328           with Daniel Jacobowitz).
7329         + modify configure script so that --with-chtype option will still
7330           compute the unsigned literals suffix for constants in curses.h
7331           (report by Daniel Jacobowitz:
7332         + patches from Daniel Jacobowitz:
7333           + the man_db.renames entry for tack.1 was backwards.
7334           + tack.1 had some 1m's that should have been 1M's.
7335           + the section for curs_inwstr.3 was wrong.
7336
7337 20050619
7338         + correction to --with-chtype option (report by Daniel Jacobowitz).
7339
7340 20050618
7341         + move build-time edit_man.sh and edit_man.sed scripts to top directory
7342           to simplify reusing them for renaming tack's manpage (prompted by a
7343           review of Debian package).
7344         + revert minor optimization from 20041030 (Debian #313609).
7345         + libtool-specific fixes, tested with libtool 1.4.3, 1.5.0, 1.5.6,
7346           1.5.10 and 1.5.18 (all work except as noted previously for the c++
7347           install using libtool 1.5.0):
7348           + modify the clean-rule in c++/Makefile.in to work with IRIX64 make
7349             program.
7350           + use $(LIBTOOL_UNINSTALL) symbol, overlooked in 20030830
7351         + add configure options --with-chtype and --with-mmask-t, to allow
7352           overriding of the non-LP64 model's use of the corresponding types.
7353         + revise test for size of chtype (and mmask_t), which always returned
7354           "long" due to an uninitialized variable (report by Daniel Jacobowitz).
7355
7356 20050611
7357         + change _tracef's that used "%p" format for va_list values to ignore
7358           that, since on some platforms those are not pointers.
7359         + fixes for long-formats in printf's due to largefile support.
7360
7361 20050604
7362         + fixes for termcap support:
7363           + reset pointer to _nc_curr_token.tk_name when the input stream is
7364             closed, which could point to free memory (cf: 20030215).
7365           + delink TERMTYPE data which is used by the termcap reader, so that
7366             extended names data will be freed consistently.
7367           + free pointer to TERMTYPE data in _nc_free_termtype() rather than
7368             its callers.
7369           + add some entrypoints for freeing permanently allocated data via
7370             _nc_freeall() when NO_LEAKS is defined.
7371         + amend 20041030 change to _nc_do_color to ensure that optimization is
7372           applied only when the terminal supports back_color_erase (bce).
7373
7374 20050528
7375         + add sun-color terminfo entry -TD
7376         + correct a missing assignment in c++ binding's method
7377           NCursesPanel::UserPointer() from 20050409 changes.
7378         + improve configure check for large-files, adding check for dirent64
7379           from vile -TD
7380         + minor change to configure script to improve linker options for the
7381           Ada95 tree.
7382
7383 20050515
7384         + document error conditions for ncurses library functions (report by
7385           Stanislav Ievlev).
7386         + regenerated html documentation for ada binding.
7387           see ftp://ftp.invisible-island.net/ncurses/patches/gnathtml
7388
7389 20050507
7390         + regenerated html documentation for manpages.
7391         + add $(BUILD_EXEEXT) suffix to invocation of make_keys in
7392           ncurses/Makefile (Gentoo #89772).
7393         + modify c++/demo.cc to build with g++ -fno-implicit-templates option
7394           (patch by Mike Frysinger).
7395         + modify tic to filter out long extended names when translating to
7396           termcap format.  Only two characters are permissible for termcap
7397           capability names.
7398
7399 20050430
7400         + modify terminfo entries xterm-new and rxvt to add strings for
7401           shift-, control-cursor keys.
7402         + workaround to allow c++ binding to compile with g++ 2.95.3, which
7403           has a broken implementation of static_cast<> (patch by Jeff Chua).
7404         + modify initialization of key lookup table so that if an extended
7405           capability (tic -x) string is defined, and its name begins with 'k',
7406           it will automatically be treated as a key.
7407         + modify test/keynames.c to allow for the possibility of extended
7408           key names, e.g., via define_key(), or via "tic -x".
7409         + add test/demo_termcap.c to show the contents of given entry via the
7410           termcap interface.
7411
7412 20050423
7413         + minor fixes for vt100/vt52 entries -TD
7414         + add configure option --enable-largefile
7415         + corrected libraries used to build Ada95/gen/gen, found in testing
7416           gcc 4.0.0.
7417
7418 20050416
7419         + update config.guess, config.sub
7420         + modify configure script check for _XOPEN_SOURCE, disable that on
7421           Darwin whose header files have problems (patch by Chris Zubrzycki).
7422         + modify form library Is_Printable_String() to use iswprint() rather
7423           than wcwidth() for determining if a character is printable.  The
7424           latter caused it to reject menu items containing non-spacing
7425           characters.
7426         + modify ncurses test program's F-test to handle non-spacing characters
7427           by combining them with a reverse-video blank.
7428         + review/fix several gcc -Wconversion warnings.
7429
7430 20050409
7431         + correct an off-by-one error in m_driver() for mouse-clicks used to
7432           position the mouse to a particular item.
7433         + implement test/demo_menus.c
7434         + add some checks in lib_mouse to ensure SP is set.
7435         + modify C++ binding to make 20050403 changes work with the configure
7436           --enable-const option.
7437
7438 20050403
7439         + modify start_color() to return ERR if it cannot allocate memory.
7440         + address g++ compiler warnings in C++ binding by adding explicit
7441           member initialization, assignment operators and copy constructors.
7442           Most of the changes simply preserve the existing semantics of the
7443           binding, which can leak memory, etc., but by making these features
7444           visible, it provides a framework for improving the binding.
7445         + improve C++ binding using static_cast, etc.
7446         + modify configure script --enable-warnings to add options to g++ to
7447           correspond to the gcc --enable-warnings.
7448         + modify C++ binding to use some C internal functions to make it
7449           compile properly on Solaris (and other platforms).
7450
7451 20050327
7452         + amend change from 20050320 to limit it to configurations with a
7453           valid locale.
7454         + fix a bug introduced in 20050320 which broke the translation of
7455           nonprinting characters to uparrow form (report by Takahashi Tamotsu).
7456
7457 20050326
7458         + add ifdef's for _LP64 in curses.h to avoid using wasteful 64-bits for
7459           chtype and mmask_t, but add configure option --disable-lp64 in case
7460           anyone used that configuration.
7461         + update misc/shlib script to account for Mac OS X (report by Michail
7462           Vidiassov).
7463         + correct comparison for wrapping multibyte characters in
7464           waddch_literal() (report by Takahashi Tamotsu).
7465
7466 20050320
7467         + add -c and -w options to tset to allow user to suppress ncurses'
7468           resizing of the terminal emulator window in the special case where it
7469           is not able to detect the true size (report by Win Delvaux, Debian
7470           #300419).
7471         + modify waddch_nosync() to account for locale zn_CH.GBK, which uses
7472           codes 128-159 as part of multibyte characters (report by Wang
7473           WenRui, Debian #300512).
7474
7475 20050319
7476         + modify ncurses.c 'd' test to make it work with 88-color
7477           configuration, i.e., by implementing scrolling.
7478         + improve scrolling in ncurses.c 'c' and 'C' tests, e.g., for 88-color
7479           configuration.
7480
7481 20050312
7482         + change tracemunch to use strict checking.
7483         + modify ncurses.c 'p' test to test line-drawing within a pad.
7484         + implement environment variable NCURSES_NO_UTF8_ACS to support
7485           miscellaneous terminal emulators which ignore alternate character
7486           set escape sequences when in UTF-8 mode.
7487
7488 20050305
7489         + change NCursesWindow::err_handler() to a virtual function (request by
7490           Steve Beal).
7491         + modify fty_int.c and fty_num.c to handle wide characters (report by
7492           Wolfgang Gutjahr).
7493         + adapt fix for fty_alpha.c to fty_alnum.c, which also handled normal
7494           and wide characters inconsistently (report by Wolfgang Gutjahr).
7495         + update llib-* files to reflect internal interface additions/changes.
7496
7497 20050226
7498         + improve test/configure script, adding tests for _XOPEN_SOURCE, etc.,
7499           from lynx.
7500         + add aixterm-16color terminfo entry -TD
7501         + modified xterm-new terminfo entry to work with tgetent() changes -TD
7502         + extended changes in tgetent() from 20040710 to allow the substring of
7503           sgr0 which matches rmacs to be at the beginning of the sgr0 string
7504           (request by Thomas Wolff).  Wolff says the visual effect in
7505           combination with pre-20040710 ncurses is improved.
7506         + fix off-by-one in winnstr() call which caused form field validation
7507           of multibyte characters to ignore the last character in a field.
7508         + correct logic in winsch() for inserting multibyte strings; the code
7509           would clear cells after the insertion rather than push them to the
7510           right (cf: 20040228).
7511         + fix an inconsistency in Check_Alpha_Field() between normal and wide
7512           character logic (report by Wolfgang Gutjahr).
7513
7514 20050219
7515         + fix a bug in editing wide-characters in form library: deleting a
7516           nonwide character modified the previous wide-character.
7517         + update manpage to describe NCURSES_MOUSE_VERSION 2.
7518         + correct manpage description of mouseinterval() (Debian #280687).
7519         + add a note to default_colors.3x explaining why this extension was
7520           added (Debian #295083).
7521         + add traces to panel library.
7522
7523 20050212
7524         + improve editing of wide-characters in form library:  left/right
7525           cursor movement, and single-character deletions work properly.
7526         + disable GPM mouse support when $TERM happens to be prefixed with
7527           "xterm".  Gpm_Open() would otherwise assert that it can deal with
7528           mouse events in this case.
7529         + modify GPM mouse support so it closes the server connection when
7530           the caller disables the mouse (report by Stanislav Ievlev).
7531
7532 20050205
7533         + add traces for callback functions in form library.
7534         + add experimental configure option --enable-ext-mouse, which defines
7535           NCURSES_MOUSE_VERSION 2, and modifies the encoding of mouse events to
7536           support wheel mice, which may transmit buttons 4 and 5.  This works
7537           with xterm and similar X terminal emulators (prompted by question by
7538           Andreas Henningsson, this is also related to Debian #230990).
7539         + improve configure macros CF_XOPEN_SOURCE and CF_POSIX_C_SOURCE to
7540           avoid redefinition warnings on cygwin.
7541
7542 20050129
7543         + merge remaining development changes for extended colors (mostly
7544           complete, does not appear to break other configurations).
7545         + add xterm-88color.dat (part of extended colors testing).
7546         + improve _tracedump() handling of color pairs past 96.
7547         + modify return-value from start_color() to return OK if colors have
7548           already been started.
7549         + modify curs_color.3x list error conditions for init_pair(),
7550           pair_content() and color_content().
7551         + modify pair_content() to return -1 for consistency with init_pair()
7552           if it corresponds to the default-color.
7553         + change internal representation of default-color to allow application
7554           to use color number 255.  This does not affect the total number of
7555           color pairs which are allowed.
7556         + add a top-level tags rule.
7557
7558 20050122
7559         + add a null-pointer check in wgetch() in case it is called without
7560           first calling initscr().
7561         + add some null-pointer checks for SP, which is not set by libtinfo.
7562         + modify misc/shlib to ensure that absolute pathnames are used.
7563         + modify test/Makefile.in, etc., to link test programs only against the
7564           libraries needed, e.g., omit form/menu/panel library for the ones
7565           that are curses-specific.
7566         + change SP->_current_attr to a pointer, adjust ifdef's to ensure that
7567           libtinfo.so and libtinfow.so have the same ABI.  The reason for this
7568           is that the corresponding data which belongs to the upper-level
7569           ncurses library has a different size in each model (report by
7570           Stanislav Ievlev).
7571
7572 20050115
7573         + minor fixes to allow test-compiles with g++.
7574         + correct column value shown in tic's warnings, which did not account
7575           for leading whitespace.
7576         + add a check in _nc_trans_string() for improperly ended strings, i.e.,
7577           where a following line begins in column 1.
7578         + modify _nc_save_str() to return a null pointer on buffer overflow.
7579         + improve repainting while scrolling wide-character data (Eungkyu Song).
7580
7581 20050108
7582         + merge some development changes to extend color capabilities.
7583
7584 20050101
7585         + merge some development changes to extend color capabilities.
7586         + fix manpage typo (FreeBSD report docs/75544).
7587         + update config.guess, config.sub
7588         > patches for configure script (Albert Chin-A-Young):
7589         + improved fix to make mbstate_t recognized on HPUX 11i (cf:
7590           20030705), making vsscanf() prototype visible on IRIX64.  Tested for
7591           on HP-UX 11i, Solaris 7, 8, 9, AIX 4.3.3, 5.2, Tru64 UNIX 4.0D, 5.1,
7592           IRIX64 6.5, Redhat Linux 7.1, 9, and RHEL 2.1, 3.0.
7593         + print the result of the --disable-home-terminfo option.
7594         + use -rpath when compiling with SGI C compiler.
7595
7596 20041225
7597         + add trace calls to remaining public functions in form and menu
7598           libraries.
7599         + fix check for numeric digits in test/ncurses.c 'b' and 'B' tests.
7600         + fix typo in test/ncurses.c 'c' test from 20041218.
7601
7602 20041218
7603         + revise test/ncurses.c 'c' color test to improve use for xterm-88color
7604           and xterm-256color, added 'C' test using the wide-character color_set
7605           and attr_set functions.
7606
7607 20041211
7608         + modify configure script to work with Intel compiler.
7609         + fix an limit-check in wadd_wchnstr() which caused labels in the
7610           forms-demo to be one character short.
7611         + fix typo in curs_addchstr.3x (Jared Yanovich).
7612         + add trace calls to most functions in form and menu libraries.
7613         + update working-position for adding wide-characters when window is
7614           scrolled (prompted by related report by Eungkyu Song).
7615
7616 20041204
7617         + replace some references on Linux to wcrtomb() which use it to obtain
7618           the length of a multibyte string with _nc_wcrtomb, since wcrtomb() is
7619           broken in glibc (see Debian #284260).
7620         + corrected length-computation in wide-character support for
7621           field_buffer().
7622         + some fixes to frm_driver.c to allow it to accept multibyte input.
7623         + modify configure script to work with Intel 8.0 compiler.
7624
7625 20041127
7626         + amend change to setupterm() in 20030405 which would reuse the value
7627           of cur_term if the same output was selected.  This now reuses it only
7628           when setupterm() is called from tgetent(), which has no notion of
7629           separate SCREENs.  Note that tgetent() must be called after initscr()
7630           or newterm() to use this feature (Redhat #140326).
7631         + add a check in CF_BUILD_CC macro to ensure that developer has given
7632           the --with-build-cc option when cross-compiling (report by Alexandre
7633           Campo).
7634         + improved configure script checks for _XOPEN_SOURCE and
7635           _POSIX_C_SOURCE (fix for IRIX 5.3 from Georg Schwarz, _POSIX_C_SOURCE
7636           updates from lynx).
7637         + cosmetic fix to test/gdc.c to recolor the bottom edge of the box
7638           for consistency (comment by Dan Nelson).
7639
7640 20041120
7641         + update wsvt25 terminfo entry -TD
7642         + modify test/ins_wide.c to test all flavors of ins_wstr().
7643         + ignore filler-cells in wadd_wchnstr() when adding a cchar_t array
7644           which consists of multi-column characters, since this function
7645           constructs them (cf: 20041023).
7646         + modify winnstr() to return multibyte character strings for the
7647           wide-character configuration.
7648
7649 20041106
7650         + fixes to make slk_set() and slk_wset() accept and store multibyte
7651           or multicolumn characters.
7652
7653 20041030
7654         + improve color optimization a little by making _nc_do_color() check
7655           if the old/new pairs are equivalent to the default pair 0.
7656         + modify assume_default_colors() to not require that
7657           use_default_colors() be called first.
7658
7659 20041023
7660         + modify term_attrs() to use termattrs(), add the extended attributes
7661           such as enter_horizontal_hl_mode for WA_HORIZONTAL to term_attrs().
7662         + add logic in waddch_literal() to clear orphaned cells when one
7663           multi-column character partly overwrites another.
7664         + improved logic for clearing cells when a multi-column character
7665           must be wrapped to a new line.
7666         + revise storage of cells for multi-column characters to correct a
7667           problem with repainting.  In the old scheme, it was possible for
7668           doupdate() to decide that only part of a multi-column character
7669           should be repainted since the filler cells stored only an attribute
7670           to denote them as fillers, rather than the character value and the
7671           attribute.
7672
7673 20041016
7674         + minor fixes for traces.
7675         + add SP->_screen_acs_map[], used to ensure that mapping of missing
7676           line-drawing characters is handled properly.  For example, ACS_DARROW
7677           is absent from xterm-new, and it was coincidentally displayed the
7678           same as ACS_BTEE.
7679
7680 20041009
7681         + amend 20021221 workaround for broken acs to reset the sgr, rmacs
7682           and smacs strings as well.  Also modify the check for screen's
7683           limitations in that area to allow the multi-character shift-in
7684           and shift-out which seem to work.
7685         + change GPM initialization, using dl library to load it dynamically
7686           at runtime (Debian #110586).
7687
7688 20041002
7689         + correct logic for color pair in setcchar() and getcchar() (patch by
7690           Marcin 'Qrczak' Kowalczyk).
7691         + add t/T commands to ncurses b/B tests to allow a different color to
7692           be tested for the attrset part of the test than is used in the
7693           background color.
7694
7695 20040925
7696         + fix to make setcchar() to work when its wchar_t* parameter is
7697           pointing to a string which contains more data than can be converted.
7698         + modify wget_wstr() and example in ncurses.c to work if wchar_t and
7699           wint_t are different sizes (report by Marcin 'Qrczak' Kowalczyk).
7700
7701 20040918
7702         + remove check in wget_wch() added to fix an infinite loop, appears to
7703           have been working around a transitory glibc bug, and interferes
7704           with normal operation (report by Marcin 'Qrczak' Kowalczyk).
7705         + correct wadd_wch() and wecho_wch(), which did not pass the rendition
7706           information (report by Marcin 'Qrczak' Kowalczyk).
7707         + fix aclocal.m4 so that the wide-character version of ncurses gets
7708           compiled as libncursesw.5.dylib, instead of libncurses.5w.dylib
7709           (adapted from patch by James J Ramsey).
7710         + change configure script for --with-caps option to indicate that it
7711           is no longer experimental.
7712         + change configure script to reflect the fact that --enable-widec has
7713           not been "experimental" since 5.3 (report by Bruno Lustosa).
7714
7715 20040911
7716         + add 'B' test to ncurses.c, to exercise some wide-character functions.
7717
7718 20040828
7719         + modify infocmp -i option to match 8-bit controls against its table
7720           entries, e.g., so it can analyze the xterm-8bit entry.
7721         + add morphos terminfo entry, improve amiga-8bit entry (Pavel Fedin).
7722         + correct translation of "%%" in terminfo format to termcap, e.g.,
7723           using "tic -C" (Redhat #130921).
7724         + modified configure script CF_XOPEN_SOURCE macro to ensure that if
7725           it defines _POSIX_C_SOURCE, that it defines it to a specific value
7726           (comp.os.stratus newsgroup comment).
7727
7728 20040821
7729         + fixes to build with Ada95 binding with gnat 3.4 (all warnings are
7730           fatal, and gnat does not follow the guidelines for pragmas).
7731           However that did find a coding error in Assume_Default_Colors().
7732         + modify several terminfo entries to ensure xterm mouse and cursor
7733           visibility are reset in rs2 string:  hurd, putty, gnome,
7734           konsole-base, mlterm, Eterm, screen (Debian #265784, Debian #55637).
7735           The xterm entries are left alone - old ones for compatibility, and
7736           the new ones do not require this change. -TD
7737
7738 20040814
7739         + fake a SIGWINCH in newterm() to accommodate buggy terminal emulators
7740           and window managers (Debian #265631).
7741         > terminfo updates -TD
7742         + remove dch/dch1 from rxvt because they are implemented inconsistently
7743           with the common usage of bce/ech
7744         + remove khome from vt220 (vt220's have no home key)
7745         + add rxvt+pcfkeys
7746
7747 20040807
7748         + modify test/ncurses.c 'b' test, adding v/V toggles to cycle through
7749           combinations of video attributes so that for instance bold and
7750           underline can be tested.  This made the legend too crowded, added
7751           a help window as well.
7752         + modify test/ncurses.c 'b' test to cycle through default colors if
7753           the -d option is set.
7754         + update putty terminfo entry (Robert de Bath).
7755
7756 20040731
7757         + modify test/cardfile.c to allow it to read more data than can be
7758           displayed.
7759         + correct logic in resizeterm.c which kept it from processing all
7760           levels of window hierarchy (reports by Folkert van Heusden,
7761           Chris Share).
7762
7763 20040724
7764         + modify "tic -cv" to ignore delays when comparing strings.  Also
7765           modify it to ignore a canceled sgr string, e.g., for terminals which
7766           cannot properly combine attributes in one control sequence.
7767         + corrections for gnome and konsole entries (Redhat #122815, patch by
7768           Hans de Goede)
7769         > terminfo updates -TD
7770         + make ncsa-m rmacs/smacs consistent with sgr
7771         + add sgr, rc/sc and ech to syscons entries
7772         + add function-keys to decansi
7773         + add sgr to mterm-ansi
7774         + add sgr, civis, cnorm to emu
7775         + correct/simplify cup in addrinfo
7776
7777 20040717
7778         > terminfo updates -TD
7779         + add xterm-pc-fkeys
7780         + review/update gnome and gnome-rh90 entries (prompted by Redhat
7781           #122815).
7782         + review/update konsole entries
7783         + add sgr, correct sgr0 for kterm and mlterm
7784         + correct tsl string in kterm
7785
7786 20040711
7787         + add configure option --without-xterm-new
7788
7789 20040710
7790         + add check in wget_wch() for printable bytes that are not part of a
7791           multibyte character.
7792         + modify wadd_wchnstr() to render text using window's background
7793           attributes.
7794         + improve tic's check to compare sgr and sgr0.
7795         + fix c++ directory's .cc.i rule.
7796         + modify logic in tgetent() which adjusts the termcap "me" string
7797           to work with ISO-2022 string used in xterm-new (cf: 20010908).
7798         + modify tic's check for conflicting function keys to omit that if
7799           converting termcap to termcap format.
7800         + add -U option to tic and infocmp.
7801         + add rmam/smam to linux terminfo entry (Trevor Van Bremen)
7802         > terminfo updates -TD
7803         + minor fixes for emu
7804         + add emu-220
7805         + change wyse acsc strings to use 'i' map rather than 'I'
7806         + fixes for avatar0
7807         + fixes for vp3a+
7808
7809 20040703
7810         + use tic -x to install terminfo database -TD
7811         + add -x to infocmp's usage message.
7812         + correct field used for comparing O_ROWMAJOR in set_menu_format()
7813           (report/patch by Tony Li).
7814         + fix a missing nul check in set_field_buffer() from 20040508 changes.
7815         > terminfo updates -TD
7816           + make xterm-xf86-v43 derived from xterm-xf86-v40 rather than
7817             xterm-basic -TD
7818           + align with xterm patch #192's use of xterm-new -TD
7819           + update xterm-new and xterm-8bit for cvvis/cnorm strings -TD
7820           + make xterm-new the default "xterm" entry -TD
7821
7822 20040626
7823         + correct BUILD_CPPFLAGS substitution in ncurses/Makefile.in, to allow
7824           cross-compiling from a separate directory tree (report/patch by
7825           Dan Engel).
7826         + modify is_term_resized() to ensure that window sizes are nonzero,
7827           as documented in the manpage (report by Ian Collier).
7828         + modify CF_XOPEN_SOURCE configure macro to make Hurd port build
7829           (Debian #249214, report/patch by Jeff Bailey).
7830         + configure-script mods from xterm, e.g., updates to CF_ADD_CFLAGS
7831         + update config.guess, config.sub
7832         > terminfo updates -TD
7833           + add mlterm
7834           + add xterm-xf86-v44
7835           + modify xterm-new aka xterm-xfree86 to accommodate luit, which
7836             relies on G1 being used via an ISO-2022 escape sequence (report by
7837             Juliusz Chroboczek)
7838           + add 'hurd' entry
7839
7840 20040619
7841         + reconsidered winsnstr(), decided after comparing other
7842           implementations that wrapping is an X/Open documentation error.
7843         + modify test/inserts.c to test all flavors of insstr().
7844
7845 20040605
7846         + add setlocale() calls to a few test programs which may require it:
7847           demo_forms.c, filter.c, ins_wide.c, inserts.c
7848         + correct a few misspelled function names in ncurses-intro.html (report
7849           by Tony Li).
7850         + correct internal name of key_defined() manpage, which conflicted with
7851           define_key().
7852
7853 20040529
7854         + correct size of internal pad used for holding wide-character
7855           field_buffer() results.
7856         + modify data_ahead() to work with wide-characters.
7857
7858 20040522
7859         + improve description of terminfo if-then-else expressions (suggested
7860           by Arne Thomassen).
7861         + improve test/ncurses.c 'd' test, allow it to use external file for
7862           initial palette (added xterm-16color.dat and linux-color.dat), and
7863           reset colors to the initial palette when starting/ending the test.
7864         + change limit-check in init_color() to allow r/g/b component to
7865           reach 1000 (cf: 20020928).
7866
7867 20040516
7868         + modify form library to use cchar_t's rather than char's in the
7869           wide-character configuration for storing data for field buffers.
7870         + correct logic of win_wchnstr(), which did not work for more than
7871           one cell.
7872
7873 20040508
7874         + replace memset/memcpy usage in form library with for-loops to
7875           simplify changing the datatype of FIELD.buf, part of wide-character
7876           changes.
7877         + fix some inconsistent use of #if/#ifdef (report by Alain Guibert).
7878
7879 20040501
7880         + modify menu library to account for actual number of columns used by
7881           multibyte character strings, in the wide-character configuration
7882           (adapted from patch by Philipp Tomsich).
7883         + add "-x" option to infocmp like tic's "-x", for use in "-F"
7884           comparisons.  This modifies infocmp to only report extended
7885           capabilities if the -x option is given, making this more consistent
7886           with tic.  Some scripts may break, since infocmp previous gave this
7887           information without an option.
7888         + modify termcap-parsing to retain 2-character aliases at the beginning
7889           of an entry if the "-x" option is used in tic.
7890
7891 20040424
7892         + minor compiler-warning and test-program fixes.
7893
7894 20040417
7895         + modify tic's missing-sgr warning to apply to terminfo only.
7896         + free some memory leaks in tic.
7897         + remove check in post_menu() that prevented menus from extending
7898           beyond the screen (request by Max J. Werner).
7899         + remove check in newwin() that prevents allocating windows
7900           that extend beyond the screen.  Solaris curses does this.
7901         + add ifdef in test/color_set.c to allow it to compile with older
7902           curses.
7903         + add napms() calls to test/dots.c to make it not be a CPU hog.
7904
7905 20040403
7906         + modify unctrl() to return null if its parameter does not correspond
7907           to an unsigned char.
7908         + add some limit-checks to guard isprint(), etc., from being used on
7909           values that do not fit into an unsigned char (report by Sami Farin).
7910
7911 20040328
7912         + fix a typo in the _nc_get_locale() change.
7913
7914 20040327
7915         + modify _nc_get_locale() to use setlocale() to query the program's
7916           current locale rather than using getenv().  This fixes a case in tin
7917           which relies on legacy treatment of 8-bit characters when the locale
7918           is not initialized (reported by Urs Jansen).
7919         + add sgr string to screen's and rxvt's terminfo entries -TD.
7920         + add a check in tic for terminfo entries having an sgr0 but no sgr
7921           string.  This confuses Tru64 and HPUX curses when combined with
7922           color, e.g., making them leave line-drawing characters in odd places.
7923         + correct casts used in ABSENT_BOOLEAN, CANCELLED_BOOLEAN, matches the
7924           original definitions used in Debian package to fix PowerPC bug before
7925           20030802 (Debian #237629).
7926
7927 20040320
7928         + modify PutAttrChar() and PUTC() macro to improve use of
7929           A_ALTCHARSET attribute to prevent line-drawing characters from
7930           being lost in situations where the locale would otherwise treat the
7931           raw data as nonprintable (Debian #227879).
7932
7933 20040313
7934         + fix a redefinition of CTRL() macro in test/view.c for AIX 5.2 (report
7935           by Jim Idle).
7936         + remove ".PP" after ".SH NAME" in a few manpages; this confuses
7937           some apropos script (Debian #237831).
7938
7939 20040306
7940         + modify ncurses.c 'r' test so editing commands, like inserted text,
7941           set the field background, and the state of insert/overlay editing
7942           mode is shown in that test.
7943         + change syntax of dummy targets in Ada95 makefiles to work with pmake.
7944         + correct logic in test/ncurses.c 'b' for noncolor terminals which
7945           did not recognize a quit-command (cf: 20030419).
7946
7947 20040228
7948         + modify _nc_insert_ch() to allow for its input to be part of a
7949           multibyte string.
7950         + split out lib_insnstr.c, to prepare to rewrite it.  X/Open states
7951           that this function performs wrapping, unlike all of the other
7952           insert-functions.  Currently it does not wrap.
7953         + check for nl_langinfo(CODESET), use it if available (report by
7954           Stanislav Ievlev).
7955         + split-out CF_BUILD_CC macro, actually did this for lynx first.
7956         + fixes for configure script CF_WITH_DBMALLOC and CF_WITH_DMALLOC,
7957           which happened to work with bash, but not with Bourne shell (report
7958           by Marco d'Itri via tin-dev).
7959
7960 20040221
7961         + some changes to adapt the form library to wide characters, incomplete
7962           (request by Mike Aubury).
7963         + add symbol to curses.h which can be used to suppress include of
7964           stdbool.h, e.g.,
7965                 #define NCURSES_ENABLE_STDBOOL_H 0
7966                 #include <curses.h>
7967           (discussion on XFree86 mailing list).
7968
7969 20040214
7970         + modify configure --with-termlib option to accept a value which sets
7971           the name of the terminfo library.  This would allow a packager to
7972           build libtinfow.so renamed to coincide with libtinfo.so (discussion
7973           with Stanislav Ievlev).
7974         + improve documentation of --with-install-prefix, --prefix and
7975           $(DESTDIR) in INSTALL (prompted by discussion with Paul Lew).
7976         + add configure check if the compiler can use -c -o options to rename
7977           its output file, use that to omit the 'cd' command which was used to
7978           ensure object files are created in a separate staging directory
7979           (prompted by comments by Johnny Wezel, Martin Mokrejs).
7980
7981 20040208 5.4 release for upload to ftp.gnu.org
7982         + update TO-DO.
7983
7984 20040207 pre-release
7985         + minor fixes to _nc_tparm_analyze(), i.e., do not count %i as a param,
7986           and do not count %d if it follows a %p.
7987         + correct an inconsistency between handling of codes in the 128-255
7988           range, e.g., as illustrated by test/ncurses.c f/F tests.  In POSIX
7989           locale, the latter did not show printable results, while the former
7990           did.
7991         + modify MKlib_gen.sh to compensate for broken C preprocessor on Mac
7992           OS X, which alters "%%" to "% % " (report by Robert Simms, fix
7993           verified by Scott Corscadden).
7994
7995 20040131 pre-release
7996         + modify SCREEN struct to align it between normal/wide curses flavors
7997           to simplify future changes to build a single version of libtinfo
7998           (patch by Stanislav Ievlev).
7999         + document handling of carriage return by addch() in manpage.
8000         + document special features of unctrl() in manpage.
8001         + documented interface changes in INSTALL.
8002         + corrected control-char test in lib_addch.c to account for locale
8003           (Debian #230335, cf: 971206).
8004         + updated test/configure.in to use AC_EXEEXT and AC_OBJEXT.
8005         + fixes to compile Ada95 binding with Debian gnat 3.15p-4 package.
8006         + minor configure-script fixes for older ports, e.g., BeOS R4.5.
8007
8008 20040125 pre-release
8009         + amend change to PutAttrChar() from 20030614 which computed the number
8010           of cells for a possibly multi-cell character.  The 20030614 change
8011           forced the cell to a blank if the result from wcwidth() was not
8012           greater than zero.  However, wcwidth() called for parameters in the
8013           range 128-255 can give this return value.  The logic now simply
8014           ensures that the number of cells is greater than zero without
8015           modifying the displayed value.
8016
8017 20040124 pre-release
8018         + looked good for 5.4 release for upload to ftp.gnu.org (but see above)
8019         + modify configure script check for ranlib to use AC_CHECK_TOOL, since
8020           that works better for cross-compiling.
8021
8022 20040117 pre-release
8023         + modify lib_get_wch.c to prefer mblen/mbtowc over mbrlen/mbrtowc to
8024           work around core dump in Solaris 8's locale support, e.g., for
8025           zh_CN.GB18030 (report by Saravanan Bellan).
8026         + add includes for <stdarg.h> and <stdio.h> in configure script macro
8027           to make <wchar.h> check work with Tru64 4.0d.
8028         + add terminfo entry for U/Win -TD
8029         + add terminfo entries for SFU aka Interix aka OpenNT (Federico
8030           Bianchi).
8031         + modify tput's error messages to prefix them with the program name
8032           (report by Vincent Lefevre, patch by Daniel Jacobowitz (see Debian
8033           #227586)).
8034         + correct a place in tack where exit_standout_mode was used instead of
8035           exit_attribute_mode (patch by Jochen Voss (see Debian #224443)).
8036         + modify c++/cursesf.h to use const in the Enumeration_Field method.
8037         + remove an ambiguous (actually redundant) method from c++/cursesf.h
8038         + make $HOME/.terminfo update optional (suggested by Stanislav Ievlev).
8039         + improve sed script which extracts libtool's version in the
8040           CF_WITH_LIBTOOL macro.
8041         + add ifdef'd call to AC_PROG_LIBTOOL to CF_WITH_LIBTOOL macro (to
8042           simplify local patch for Albert Chin-A-Young)..
8043         + add $(CXXFLAGS) to link command in c++/Makefile.in (adapted from
8044           patch by Albert Chin-A-Young)..
8045         + fix a missing substitution in configure.in for "$target" needed for
8046           HPUX .so/.sl case.
8047         + resync CF_XOPEN_SOURCE configure macro with lynx; fixes IRIX64 and
8048           NetBSD 1.6 conflicts with _XOPEN_SOURCE.
8049         + make check for stdbool.h more specific, to ensure that including it
8050           will actually define/declare bool for the configured compiler.
8051         + rewrite ifdef's in curses.h relating NCURSES_BOOL and bool.  The
8052           intention of that is to #define NCURSES_BOOL as bool when the
8053           compiler declares bool, and to #define bool as NCURSES_BOOL when it
8054           does not (reported by Jim Gifford, Sam Varshavchik, cf: 20031213).
8055
8056 20040110 pre-release
8057         + change minor version to 4, i.e., ncurses 5.4
8058         + revised/improved terminfo entries for tvi912b, tvi920b (Benjamin C W
8059           Sittler).
8060         + simplified ncurses/base/version.c by defining the result from the
8061           configure script rather than using sprintf (suggested by Stanislav
8062           Ievlev).
8063         + remove obsolete casts from c++/cursesw.h (reported by Stanislav
8064           Ievlev).
8065         + modify configure script so that when configuring for termlib, programs
8066           such as tic are not linked with the upper-level ncurses library
8067           (suggested by Stanislav Ievlev).
8068         + move version.c from ncurses/base to ncurses/tinfo to allow linking
8069           of tic, etc., using libtinfo (suggested by Stanislav Ievlev).
8070
8071 20040103
8072         + adjust -D's to build ncursesw on OpenBSD.
8073         + modify CF_PROG_EXT to make OS/2 build with EXEEXT.
8074         + add pecho_wchar().
8075         + remove <wctype.h> include from lib_slk_wset.c which is not needed (or
8076           available) on older platforms.
8077
8078 20031227
8079         + add -D's to build ncursew on FreeBSD 5.1.
8080         + modify shared library configuration for FreeBSD 4.x/5.x to add the
8081           soname information (request by Marc Glisse).
8082         + modify _nc_read_tic_entry() to not use MAX_ALIAS, but PATH_MAX only
8083           for limiting the length of a filename in the terminfo database.
8084         + modify termname() to return the terminal name used by setupterm()
8085           rather than $TERM, without truncating to 14 characters as documented
8086           by X/Open (report by Stanislav Ievlev, cf:  970719).
8087         + re-add definition for _BSD_TYPES, lost in merge (cf: 20031206).
8088
8089 20031220
8090         + add configure option --with-manpage-format=catonly to address
8091           behavior of BSDI, allow install of man+cat files on NetBSD, whose
8092           behavior has diverged by requiring both to be present.
8093         + remove leading blanks from comment-lines in manlinks.sed script to
8094           work with Tru64 4.0d.
8095         + add screen.linux terminfo entry (discussion on mutt-users mailing
8096           list).
8097
8098 20031213
8099         + add a check for tic to flag missing backslashes for termcap
8100           continuation lines.  ncurses reads the whole entry, but termcap
8101           applications do not.
8102         + add configure option "--with-manpage-aliases" extending
8103           "--with-manpage-aliases" to provide the option of generating ".so"
8104           files rather than symbolic links for manpage aliases.
8105         + add bool definition in include/curses.h.in for configurations with no
8106           usable C++ compiler (cf: 20030607).
8107         + fix pathname of SigAction.h for building with --srcdir (reported by
8108           Mike Castle).
8109
8110 20031206
8111         + folded ncurses/base/sigaction.c into includes of ncurses/SigAction.h,
8112           since that header is used only within ncurses/tty/lib_tstp.c, for
8113           non-POSIX systems (discussion with Stanislav Ievlev).
8114         + remove obsolete _nc_outstr() function (report by Stanislav Ievlev
8115           <inger@altlinux.org>).
8116         + add test/background.c and test/color_set.c
8117         + modify color_set() function to work with color pair 0 (report by
8118           George Andreou <gbandreo@tem.uoc.gr>).
8119         + add configure option --with-trace, since defining TRACE seems too
8120           awkward for some cases.
8121         + remove a call to _nc_free_termtype() from read_termtype(), since the
8122           corresponding buffer contents were already zeroed by a memset (cf:
8123           20000101).
8124         + improve configure check for _XOPEN_SOURCE and related definitions,
8125           adding special cases for Solaris' __EXTENSIONS__ and FreeBSD's
8126           __BSD_TYPES (reports by Marc Glisse <marc.glisse@normalesup.org>).
8127         + small fixes to compile on Solaris and IRIX64 using cc.
8128         + correct typo in check for pre-POSIX sort options in MKkey_defs.sh
8129           (cf: 20031101).
8130
8131 20031129
8132         + modify _nc_gettime() to avoid a problem with arithmetic on unsigned
8133           values (Philippe Blain).
8134         + improve the nanosleep() logic in napms() by checking for EINTR and
8135           restarting (Philippe Blain).
8136         + correct expression for "%D" in lib_tgoto.c (Juha Jarvi
8137           <mooz@welho.com>).
8138
8139 20031122
8140         + add linux-vt terminfo entry (Andrey V Lukyanov <land@long.yar.ru>).
8141         + allow "\|" escape in terminfo; tic should not warn about this.
8142         + save the full pathname of the trace-file the first time it is opened,
8143           to avoid creating it in different directories if the application
8144           opens and closes it while changing its working directory.
8145         + modify configure script to provide a non-empty default for
8146           $BROKEN_LINKER
8147
8148 20031108
8149         + add DJGPP to special case of DOS-style drive letters potentially
8150           appearing in TERMCAP environment variable.
8151         + fix some spelling in comments (reports by Jason McIntyre, Jonathon
8152           Gray).
8153         + update config.guess, config.sub
8154
8155 20031101
8156         + fix a memory leak in error-return from setupterm() (report by
8157           Stanislav Ievlev <inger@altlinux.org>).
8158         + use EXEEXT and OBJEXT consistently in makefiles.
8159         + amend fixes for cross-compiling to use separate executable-suffix
8160           BUILD_EXEEXT (cf: 20031018).
8161         + modify MKkey_defs.sh to check for sort utility that does not
8162           recognize key options, e.g., busybox (report by Peter S Mazinger
8163           <ps.m@gmx.net>).
8164         + fix potential out-of-bounds indexing in _nc_infotocap() (found by
8165           David Krause using some of the new malloc debugging features
8166           under OpenBSD, patch by Ted Unangst).
8167         + modify CF_LIB_SUFFIX for Itanium releases of HP-UX, which use a
8168           ".so" suffix (patch by Jonathan Ward <Jonathan.Ward@hp.com>).
8169
8170 20031025
8171         + update terminfo for xterm-xfree86 -TD
8172         + add check for multiple "tc=" clauses in a termcap to tic.
8173         + check for missing op/oc in tic.
8174         + correct _nc_resolve_uses() and _nc_merge_entry() to allow infocmp and
8175           tic to show cancelled capabilities.  These functions were ignoring
8176           the state of the target entry, which should be untouched if cancelled.
8177         + correct comment in tack/output.c (Debian #215806).
8178         + add some null-pointer checks to lib_options.c (report by Michael
8179           Bienia).
8180         + regenerated html documentation.
8181         + correction to tar-copy.sh, remove a trap command that resulted in
8182           leaving temporary files (cf: 20030510).
8183         + remove contact/maintainer addresses for Juergen Pfeifer (his request).
8184
8185 20031018
8186         + updated test/configure to reflect changes for libtool (cf: 20030830).
8187         + fix several places in tack/pad.c which tested and used the parameter-
8188           and parameterless strings inconsistently, i.e., in pad_rin(),
8189           pad_il(), pad_indn() and pad_dl() (Debian #215805).
8190         + minor fixes for configure script and makefiles to cleanup executables
8191           generated when cross-compiling for DJGPP.
8192         + modify infocmp to omit check for $TERM for operations that do not
8193           require it, e.g., "infocmp -e" used to build fallback list (report by
8194           Egmont Koblinger).
8195
8196 20031004
8197         + add terminfo entries for DJGPP.
8198         + updated note about maintainer in ncurses-intro.html
8199
8200 20030927
8201         + update terminfo entries for gnome terminal.
8202         + modify tack to reset colors after each color test, correct a place
8203           where exit_standout_mode was used instead of exit_attribute_mode.
8204         + improve tack's bce test by making it set colors other than black
8205           on white.
8206         + plug a potential recursion between napms() and _nc_timed_wait()
8207           (report by Philippe Blain).
8208
8209 20030920
8210         + add --with-rel-version option to allow workaround to allow making
8211           libtool on Darwin generate the "same" library names as with the
8212           --with-shared option.  The Darwin ld program does not work well
8213           with a zero as the minor-version value (request by Chris Zubrzycki).
8214         + modify CF_MIXEDCASE_FILENAMES macro to work with cross-compiling.
8215         + modify tack to allow it to run from fallback terminfo data.
8216         > patch by Philippe Blain:
8217         + improve PutRange() by adjusting call to EmitRange() and corresponding
8218           return-value to not emit unchanged characters on the end of the
8219           range.
8220         + improve a check for changed-attribute by exiting a loop when the
8221           change is found.
8222         + improve logic in TransformLine(), eliminating a duplicated comparison
8223           in the clr_bol logic.
8224
8225 20030913
8226         > patch by Philippe Blain:
8227         + in ncurses/tty/lib_mvcur.c,
8228           move the label 'nonlocal' just before the second gettimeofday() to
8229           be able to compute the diff time when 'goto nonlocal' used.
8230           Rename 'msec' to 'microsec' in the debug-message.
8231         + in ncurses/tty/lib_mvcur.c,
8232           Use _nc_outch() in carriage return/newline movement instead of
8233           putchar() which goes to stdout.  Move test for xold>0 out of loop.
8234         + in ncurses/tinfo/setbuf.c,
8235           Set the flag SP->_buffered at the end of operations when all has been
8236           successful (typeMalloc can fail).
8237         + simplify NC_BUFFERED macro by moving check inside _nc_setbuf().
8238
8239 20030906
8240         + modify configure script to avoid using "head -1", which does not
8241           work if POSIXLY_CORRECT (sic) is set.
8242         + modify run_tic.in to avoid using wrong shared libraries when
8243           cross-compiling (Dan Kegel).
8244
8245 20030830
8246         + alter configure script help message to make it clearer that
8247           --with-build-cc does not specify a cross-compiler (suggested by Dan
8248           Kegel <dank@kegel.com>).
8249         + modify configure script to accommodate libtool 1.5, as well as add an
8250           parameter to the "--with-libtool" option which can specify the
8251           pathname of libtool (report by Chris Zubrzycki).  We note that
8252           libtool 1.5 has more than one bug in its C++ support, so it is not
8253           able to install libncurses++, for instance, if $DESTDIR or the option
8254           --with-install-prefix is used.
8255
8256 20030823
8257         > patch by Philippe Blain:
8258         + move assignments to SP->_cursrow, SP->_curscol into online_mvcur().
8259         + make baudrate computation in delay_output() consistent with the
8260           assumption in _nc_mvcur_init(), i.e., a byte is 9 bits.
8261
8262 20030816
8263         + modify logic in waddch_literal() to take into account zh_TW.Big5
8264           whose multibyte sequences may contain "printable" characters, e.g.,
8265           a "g" in the sequence "\247g" (Debian #204889, cf: 20030621).
8266         + improve storage used by _nc_safe_strcpy() by ensuring that the size
8267           is reset based on the initialization call, in case it were called
8268           after other strcpy/strcat calls (report by Philippe Blain).
8269         > patch by Philippe Blain:
8270         + remove an unused ifdef for REAL_ATTR & WANT_CHAR
8271         + correct a place where _cup_cost was used rather than _cuu_cost
8272
8273 20030809
8274         + fix a small memory leak in _nc_free_termtype().
8275         + close trace-file if trace() is called with a zero parameter.
8276         + free memory allocated for soft-key strings, in delscreen().
8277         + fix an allocation size in safe_sprintf.c for the "*" format code.
8278         + correct safe_sprintf.c to not return a null pointer if the format
8279           happens to be an empty string.  This applies to the "configure
8280           --enable-safe-sprintf" option (Redhat #101486).
8281
8282 20030802
8283         + modify casts used for ABSENT_BOOLEAN and CANCELLED_BOOLEAN (report by
8284           Daniel Jacobowitz).
8285         > patch by Philippe Blain:
8286         + change padding for change_scroll_region to not be proportional to
8287           the size of the scroll-region.
8288         + correct error-return in _nc_safe_strcat().
8289
8290 20030726
8291         + correct limit-checks in _nc_scroll_window() (report and test-case by
8292           Thomas Graf <graf@dms.at> cf: 20011020).
8293         + re-order configure checks for _XOPEN_SOURCE to avoid conflict with
8294           _GNU_SOURCE check.
8295
8296 20030719
8297         + use clr_eol in preference to blanks for bce terminals, so select and
8298           paste will have fewer trailing blanks, e.g., when using xterm
8299           (request by Vincent Lefevre).
8300         + correct prototype for wunctrl() in manpage.
8301         + add configure --with-abi-version option (discussion with Charles
8302           Wilson).
8303         > cygwin changes from Charles Wilson:
8304           + aclocal.m4: on cygwin, use autodetected prefix for import
8305             and static lib, but use "cyg" for DLL.
8306           + include/ncurses_dll.h: correct the comments to reflect current
8307             status of cygwin/mingw port.  Fix compiler warning.
8308           + misc/run_tic.in: ensure that tic.exe can find the uninstalled
8309             DLL, by adding the lib-directory to the PATH variable.
8310           + misc/terminfo.src (nxterm|xterm-color): make xterm-color
8311             primary instead of nxterm, to match XFree86's xterm.terminfo
8312             usage and to prevent circular links.
8313             (rxvt): add additional codes from rxvt.org.
8314             (rxvt-color): new alias
8315             (rxvt-xpm): new alias
8316             (rxvt-cygwin): like rxvt, but with special acsc codes.
8317             (rxvt-cygwin-native): ditto.  rxvt may be run under XWindows, or
8318             with a "native" MSWin GUI.  Each takes different acsc codes,
8319             which are both different from the "normal" rxvt's acsc.
8320             (cygwin): cygwin-in-cmd.exe window.  Lots of fixes.
8321             (cygwinDBG): ditto.
8322           + mk-1st.awk: use "cyg" for the DLL prefix, but "lib" for import
8323             and static libs.
8324
8325 20030712
8326         + update config.guess, config.sub
8327         + add triples for configuring shared libraries with the Debian
8328           GNU/FreeBSD packages (patch by Robert Millan <zeratul2@wanadoo.es>).
8329
8330 20030705
8331         + modify CF_GCC_WARNINGS so it only applies to gcc, not g++.  Some
8332           platforms have installed g++ along with the native C compiler, which
8333           would not accept gcc warning options.
8334         + add -D_XOPEN_SOURCE=500 when configuring with --enable-widec, to
8335           get mbstate_t declaration on HPUX 11.11 (report by David Ellement).
8336         + add _nc_pathlast() to get rid of casts in _nc_basename() calls.
8337         + correct a sign-extension in wadd_wch() and wecho_wchar() from
8338           20030628 (report by Tomohiro Kubota).
8339         + work around omission of btowc() and wctob() from wide-character
8340           support (sic) in NetBSD 1.6 using mbtowc() and wctomb() (report by
8341           Gabor Z Papp).
8342         + add portability note to curs_get_wstr.3x (Debian #199957).
8343
8344 20030628
8345         + rewrite wadd_wch() and wecho_wchar() to call waddch() and wechochar()
8346           respectively, to avoid calling waddch_noecho() with wide-character
8347           data, since that function assumes its input is 8-bit data.
8348           Similarly, modify waddnwstr() to call wadd_wch().
8349         + remove logic from waddnstr() which transformed multibyte character
8350           strings into wide-characters.  Rewrite of waddch_literal() from
8351           20030621 assumes its input is raw multibyte data rather than wide
8352           characters (report by Tomohiro Kubota).
8353
8354 20030621
8355         + write getyx() and related 2-return macros in terms of getcury(),
8356           getcurx(), etc.
8357         + modify waddch_literal() in case an application passes bytes of a
8358           multibyte character directly to waddch().  In this case, waddch()
8359           must reassemble the bytes into a wide-character (report by Tomohiro
8360           Kubota <kubota@debian.org>).
8361
8362 20030614
8363         + modify waddch_literal() in case a multibyte value occupies more than
8364           two cells.
8365         + modify PutAttrChar() to compute the number of character cells that
8366           are used in multibyte values.  This fixes a problem displaying
8367           double-width characters (report/test by Mitsuru Chinen
8368           <mchinen@yamato.ibm.com>).
8369         + add a null-pointer check for result of keyname() in _tracechar()
8370         + modify _tracechar() to work around glibc sprintf bug.
8371
8372 20030607
8373         + add a call to setlocale() in cursesmain.cc, making demo display
8374           properly in a UTF-8 locale.
8375         + add a fallback definition in curses.priv.h for MB_LEN_MAX (prompted
8376           by discussion with Gabor Z Papp).
8377         + use macros NCURSES_ACS() and NCURSES_WACS() to hide cast needed to
8378           appease -Wchar-subscript with g++ 3.3 (Debian #195732).
8379         + fix a redefinition of $RANLIB in the configure script when libtool
8380           is used, which broke configure on Mac OS X (report by Chris Zubrzycki
8381           <beren@mac.com>).
8382         + simplify ifdef for bool declaration in curses.h.in (suggested by
8383           Albert Chin-A-Young).
8384         + remove configure script check to allow -Wconversion for older
8385           versions of gcc (suggested by Albert Chin-A-Young).
8386
8387 20030531
8388         + regenerated html manpages.
8389         + modify ifdef's in curses.h.in that disabled use of __attribute__()
8390           for g++, since recent versions implement the cases which ncurses uses
8391           (Debian #195230).
8392         + modify _nc_get_token() to handle a case where an entry has no
8393           description, and capabilities begin on the same line as the entry
8394           name.
8395         + fix a typo in ncurses_dll.h reported by gcc 3.3.
8396         + add an entry for key_defined.3x to man_db.renames.
8397
8398 20030524
8399         + modify setcchar() to allow converting control characters to complex
8400           characters (report/test by Mitsuru Chinen <mchinen@yamato.ibm.com>).
8401         + add tkterm entry -TD
8402         + modify parse_entry.c to allow a terminfo entry with a leading
8403           2-character name (report by Don Libes).
8404         + corrected acsc in screen.teraterm, which requires a PC-style mapping.
8405         + fix trace statements in read_entry.c to use lseek() rather than
8406           tell().
8407         + fix signed/unsigned warnings from Sun's compiler (gcc should give
8408           these warnings, but it is unpredictable).
8409         + modify configure script to omit -Winline for gcc 3.3, since that
8410           feature is broken.
8411         + modify manlinks.sed to add a few functions that were overlooked since
8412           they return function pointers:  field_init, field_term, form_init,
8413           form_term, item_init, item_term, menu_init and menu_term.
8414
8415 20030517
8416         + prevent recursion in wgetch() via wgetnstr() if the connection cannot
8417           be switched between cooked/raw modes because it is not a TTY (report
8418           by Wolfgang Gutjahr <gutw@knapp.com>).
8419         + change parameter of define_key() and key_defined() to const (prompted
8420           by Debian #192860).
8421         + add a check in test/configure for ncurses extensions, since there
8422           are some older versions, etc., which would not compile with the
8423           current test programs.
8424         + corrected demo in test/ncurses.c of wgetn_wstr(), which did not
8425           convert wchar_t string to multibyte form before printing it.
8426         + corrections to lib_get_wstr.c:
8427           + null-terminate buffer passed to setcchar(), which occasionally
8428             failed.
8429           + map special characters such as erase- and kill-characters into
8430             key-codes so those will work as expected even if they are not
8431             mentioned in the terminfo.
8432         + modify PUTC() and Charable() macros to make wide-character line
8433           drawing work for POSIX locale on Linux console (cf: 20021221).
8434
8435 20030510
8436         + make typography for program options in manpages consistent (report
8437           by Miloslav Trmac <mitr@volny.cz>).
8438         + correct dependencies in Ada95/src/Makefile.in, so the builds with
8439           "--srcdir" work (report by Warren L Dodge).
8440         + correct missing definition of $(CC) in Ada95/gen/Makefile.in
8441           (reported by Warren L Dodge <warrend@mdhost.cse.tek.com>).
8442         + fix typos and whitespace in manpages (patch by Jason McIntyre
8443           <jmc@prioris.mini.pw.edu.pl>).
8444
8445 20030503
8446         + fix form_driver() cases for REQ_CLR_EOF, REQ_CLR_EOL, REQ_DEL_CHAR,
8447           REQ_DEL_PREV and REQ_NEW_LINE, which did not ensure the cursor was at
8448           the editing position before making modifications.
8449         + add test/demo_forms and associated test/edit_field.c demos.
8450         + modify test/configure.in to use test/modules for the list of objects
8451           to compile rather than using the list of programs.
8452
8453 20030419
8454         + modify logic of acsc to use the original character if no mapping is
8455           defined, noting that Solaris does this.
8456         + modify ncurses 'b' test to avoid using the acs_map[] array since
8457           20021231 changes it to no longer contain information from the acsc
8458           string.
8459         + modify makefile rules in c++, progs, tack and test to ensure that
8460           the compiler flags (e.g., $CFLAGS or $CCFLAGS) are used in the link
8461           command (report by Jose Luis Rico Botella <informatica@serpis.com>).
8462         + modify soft-key initialization to use A_REVERSE if A_STANDOUT would
8463           not be shown when colors are used, i.e., if ncv#1 is set in the
8464           terminfo as is done in "screen".
8465
8466 20030412
8467         + add a test for slk_color(), in ncurses.c
8468         + fix some issues reported by valgrind in the slk_set() and slk_wset()
8469           code, from recent rewrite.
8470         + modify ncurses 'E' test to use show previous label via slk_label(),
8471           as in 'e' test.
8472         + modify wide-character versions of NewChar(), NewChar2() macros to
8473           ensure that the whole struct is initialized.
8474
8475 20030405
8476         + modify setupterm() to check if the terminfo and terminal-modes have
8477           already been read.  This ensures that it does not reinvoke
8478           def_prog_mode() when an application calls more than one function,
8479           such as tgetent() and initscr() (report by Olaf Buddenhagen).
8480
8481 20030329
8482         + add 'E' test to ncurses.c, to exercise slk_wset().
8483         + correct handling of carriage-return in wgetn_wstr(), used in demo of
8484           slk_wset().
8485         + first draft of slk_wset() function.
8486
8487 20030322
8488         + improved warnings in tic when suppressing items to fit in termcap's
8489           1023-byte limit.
8490         + built a list in test/README showing which externals are being used
8491           by either programs in the test-directory or via internal library
8492           calls.
8493         + adjust include-options in CF_ETIP_DEFINES to avoid missing
8494           ncurses_dll.h, fixing special definitions that may be needed for
8495           etip.h (reported by Greg Schafer <gschafer@zip.com.au>).
8496
8497 20030315
8498         + minor fixes for cardfile.c, to make it write the updated fields to
8499           a file when ^W is given.
8500         + add/use _nc_trace_bufcat() to eliminate some fixed buffer limits in
8501           trace code.
8502
8503 20030308
8504         + correct a case in _nc_remove_string(), used by define_key(), to avoid
8505           infinite loop if the given string happens to be a substring of other
8506           strings which are assigned to keys (report by John McCutchan).
8507         + add key_defined() function, to tell which keycode a string is bound
8508           to (discussion with John McCutchan <ttb@tentacle.dhs.org>).
8509         + correct keybound(), which reported definitions in the wrong table,
8510           i.e., the list of definitions which are disabled by keyok().
8511         + modify demo_keydef.c to show the details it changes, and to check
8512           for errors.
8513
8514 20030301
8515         + restructured test/configure script, make it work for libncursesw.
8516         + add description of link_fieldtype() to manpage (report by
8517           L Dee Holtsclaw <dee@sunbeltsoft.com>).
8518
8519 20030222
8520         + corrected ifdef's relating to configure check for wchar_t, etc.
8521         + if the output is a socket or other non-tty device, use 1 millisecond
8522           for the cost in mvcur; previously it was 9 milliseconds because the
8523           baudrate was not known.
8524         + in _nc_get_tty_mode(), initialize the TTY buffer on error, since
8525           glibc copies uninitialized data in that case, as noted by valgrind.
8526         + modify tput to use the same parameter analysis as tparm() does, to
8527           provide for user-defined strings, e.g., for xterm title, a
8528           corresponding capability might be
8529                 title=\E]2;%p1%s^G,
8530         + modify MKlib_gen.sh to avoid passing "#" tokens through the C
8531           preprocessor.  This works around Mac OS X's preprocessor, which
8532           insists on adding a blank on each side of the token (report/analysis
8533           by Kevin Murphy <murphy@genome.chop.edu>).
8534
8535 20030215
8536         + add configure check for wchar_t and wint_t types, rather than rely
8537           on preprocessor definitions.  Also work around for gcc fixinclude
8538           bug which creates a shadow copy of curses.h if it sees these symbols
8539           apparently typedef'd.
8540         + if database is disabled, do not generate run_tic.sh
8541         + minor fixes for memory-leak checking when termcap is read.
8542
8543 20030208
8544         + add checking in tic for incomplete line-drawing character mapping.
8545         + updated configure script to reflect fix for AC_PROG_GCC_TRADITIONAL,
8546           which is broken in autoconf 2.5x for Mac OS X 10.2.3 (report by
8547           Gerben Wierda <Sherlock@rna.nl>).
8548         + make return value from _nc_printf_string() consistent.  Before,
8549           depending on whether --enable-safe-sprintf was used, it might not be
8550           cached for reallocating.
8551
8552 20030201
8553         + minor fixes for memory-leak checking in lib_tparm.c, hardscroll.c
8554         + correct a potentially-uninitialized value if _read_termtype() does
8555           not read as much data as expected (report by Wolfgang Rohdewald
8556           <wr6@uni.de>).
8557         + correct several places where the aclocal.m4 macros relied on cache
8558           variable names which were incompatible (as usual) between autoconf
8559           2.13 and 2.5x, causing the test for broken-linker to give incorrect
8560           results (reports by Gerben Wierda <Sherlock@rna.nl> and Thomas Esser
8561           <te@dbs.uni-hannover.de>).
8562         + do not try to open gpm mouse driver if standard output is not a tty;
8563           the gpm library does not make this check (bug report for dialog
8564           by David Oliveira <davidoliveira@develop.prozone.ws>).
8565
8566 20030125
8567         + modified emx.src to correspond more closely to terminfo.src, added
8568           emx-base to the latter -TD
8569         + add configure option for FreeBSD sysmouse, --with-sysmouse, and
8570           implement support for that in lib_mouse.c, lib_getch.c
8571
8572 20030118
8573         + revert 20030105 change to can_clear_with(), does not work for the
8574           case where the update is made on cells which are blanks with
8575           attributes, e.g., reverse.
8576         + improve ifdef's to guard against redefinition of wchar_t and wint_t
8577           in curses.h (report by Urs Jansen).
8578
8579 20030111
8580         + improve mvcur() by checking if it is safe to move when video
8581           attributes are set (msgr), and if not, reset/restore attributes
8582           within that function rather than doing it separately in the GoTo()
8583           function in tty_update.c (suggested by Philippe Blain).
8584         + add a message in run_tic.in to explain more clearly what does not
8585           work when attempting to create a symbolic link for /usr/lib/terminfo
8586           on OS/2 and other platforms with no symbolic links (report by John
8587           Polterak).
8588         + change several sed scripts to avoid using "\+" since it is not a BRE
8589           (basic regular expression).  One instance caused terminfo.5 to be
8590           misformatted on FreeBSD (report by Kazuo Horikawa
8591           <horikawa@FreeBSD.org> (see FreeBSD docs/46709)).
8592         + correct misspelled 'wint_t' in curs_get_wch.3x (Michael Elkins).
8593
8594 20030105
8595         + improve description of terminfo operators, especially static/dynamic
8596           variables (comments by Mark I Manning IV <mark4th@earthlink.net>).
8597         + demonstrate use of FIELDTYPE by modifying test/ncurses 'r' test to
8598           use the predefined TYPE_ALPHA field-type, and by defining a
8599           specialized type for the middle initial/name.
8600         + fix MKterminfo.sh, another workaround for POSIXLY_CORRECT misfeature
8601           of sed 4.0
8602         > patch by Philippe Blain:
8603         + optimize can_clear_with() a little by testing first if the parameter
8604           is indeed a "blank".
8605         + simplify ClrBottom() a little by allowing it to use clr_eos to clear
8606           sections as small as one line.
8607         + improve ClrToEOL() by checking if clr_eos is available before trying
8608           to use it.
8609         + use tputs() rather than putp() in a few cases in tty_update.c since
8610           the corresponding delays are proportional to the number of lines
8611           affected: repeat_char, clr_eos, change_scroll_region.
8612
8613 20021231
8614         + rewrite of lib_acs.c conflicts with copying of SCREEN acs_map to/from
8615           global acs_map[] array; removed the lines that did the copying.
8616
8617 20021228
8618         + change some overlooked tputs() calls in scrolling code to use putp()
8619           (report by Philippe Blain).
8620         + modify lib_getch.c to avoid recursion via wgetnstr() when the input
8621           is not a tty and consequently mode-changes do not work (report by
8622           <R.Chamberlin@querix.com>).
8623         + rewrote lib_acs.c to allow PutAttrChar() to decide how to render
8624           alternate-characters, i.e., to work with Linux console and UTF-8
8625           locale.
8626         + correct line/column reference in adjust_window(), needed to make
8627           special windows such as curscr track properly when resizing (report
8628           by Lucas Gonze <lgonze@panix.com>).
8629         > patch by Philippe Blain:
8630         + correct the value used for blank in ClrBottom() (broken in 20000708).
8631         + correct an off-by-one in GoTo() parameter in _nc_scrolln().
8632
8633 20021221
8634         + change several tputs() calls in scrolling code to use putp(), to
8635           enable padding which may be needed for some terminals (patch by
8636           Philippe Blain).
8637         + use '%' as sed substitute delimiter in run_tic script to avoid
8638           problems with pathname delimiters such as ':' and '@' (report by John
8639           Polterak).
8640         + implement a workaround so that line-drawing works with screen's
8641           crippled UTF-8 support (tested with 3.9.13).  This only works with
8642           the wide-character support (--enable-widec); the normal library will
8643           simply suppress line-drawing when running in a UTF-8 locale in screen.
8644
8645 20021214
8646         + allow BUILD_CC and related configure script variables to be
8647           overridden from the environment.
8648         + make build-tools variables in ncurses/Makefile.in consistent with
8649           the configure script variables (report by Maciej W Rozycki).
8650         + modify ncurses/modules to allow
8651                 configure --disable-leaks --disable-ext-funcs
8652           to build (report by Gary Samuelson).
8653         + fix a few places in configure.in which lacked quotes (report by
8654           Gary Samuelson <gary.samuelson@verizon.com>).
8655         + correct handling of multibyte characters in waddch_literal() which
8656           force wrapping because they are started too late on the line (report
8657           by Sam Varshavchik).
8658         + small fix for CF_GNAT_VERSION to ignore the help-message which
8659           gnatmake adds to its version-message.
8660         > Maciej W Rozycki <macro@ds2.pg.gda.pl>:
8661         + use AC_CHECK_TOOL to get proper values for AR and LD for cross
8662           compiling.
8663         + use $cross_compiling variable in configure script rather than
8664           comparing $host_alias and $target alias, since "host" is
8665           traditionally misused in autoconf to refer to the target platform.
8666         + change configure --help message to use "build" rather than "host"
8667           when referring to the --with-build-XXX options.
8668
8669 20021206
8670         + modify CF_GNAT_VERSION to print gnatmake's version, and to allow for
8671           possible gnat versions such as 3.2 (report by Chris Lingard
8672           <chris@stockwith.co.uk>).
8673         + modify #define's for CKILL and other default control characters in
8674           tset to use the system's default values if they are defined.
8675         + correct interchanged defaults for kill and interrupt characters
8676           in tset, which caused it to report unnecessarily (Debian #171583).
8677         + repair check for missing C++ compiler, which is broken in autoconf
8678           2.5x by hardcoding it to g++ (report by Martin Mokrejs).
8679         + update config.guess, config.sub (2002-11-30)
8680         + modify configure script to skip --with-shared, etc., when the
8681           --with-libtool option is given, since they would be ignored anyway.
8682         + fix to allow "configure --with-libtool --with-termlib" to build.
8683         + modify configure script to show version number of libtool, to help
8684           with bug reports.  libtool still gets confused if the installed
8685           ncurses libraries are old, since it ignores the -L options at some
8686           point (tested with libtool 1.3.3 and 1.4.3).
8687         + reorder configure script's updating of $CPPFLAGS and $CFLAGS to
8688           prevent -I options in the user's environment from introducing
8689           conflicts with the build -I options (may be related to reports by
8690           Patrick Ash and George Goffe).
8691         + rename test/define_key.c to test/demo_defkey.c, test/keyok.c to
8692           test/demo_keyok.c to allow building these with libtool.
8693
8694 20021123
8695         + add example program test/define_key.c for define_key().
8696         + add example program test/keyok.c for keyok().
8697         + add example program test/ins_wide.c for wins_wch() and wins_wstr().
8698         + modify wins_wch() and wins_wstr() to interpret tabs by using the
8699           winsch() internal function.
8700         + modify setcchar() to allow for wchar_t input strings that have
8701           more than one spacing character.
8702
8703 20021116
8704         + fix a boundary check in lib_insch.c (patch by Philippe Blain).
8705         + change type for *printw functions from NCURSES_CONST to const
8706           (prompted by comment by Pedro Palhoto Matos <plpm@mega.ist.utl.pt>,
8707           but really from a note on X/Open's website stating that either is
8708           acceptable, and the latter will be used in a future revision).
8709         + add xterm-1002, xterm-1003 terminfo entries to demonstrate changes in
8710           lib_mouse.c (20021026) -TD
8711         + add screen-bce, screen-s entries from screen 3.9.13 (report by
8712           Adam Lazur <zal@debian.org>) -TD
8713         + add mterm terminfo entries -TD
8714
8715 20021109
8716         + split-out useful fragments in terminfo for vt100 and vt220 numeric
8717           keypad, i.e., vt100+keypad, vt100+pfkeys, vt100+fnkeys and
8718           vt220+keypad.  The last as embedded in various entries had ka3 and
8719           kb2 interchanged (report/discussion with Leonard den Ottolander
8720           <leonardjo@hetnet.nl>).
8721         + add check in tic for keypads consistent with vt100 layout.
8722         + improve checks in tic for color capabilities
8723
8724 20021102
8725         + check for missing/empty/illegal terminfo name in _nc_read_entry()
8726           (report by Martin Mokrejs, where $TERM was set to an empty string).
8727         + rewrote lib_insch.c, combining it with lib_insstr.c so both handle
8728           tab and other control characters consistently (report by Philippe
8729           Blain).
8730         + remove an #undef for KEY_EVENT from curses.tail used in the
8731           experimental NCURSES_WGETCH_EVENTS feature.  The #undef confuses
8732           dpkg's build script (Debian #165897).
8733         + fix MKlib_gen.sh, working around the ironically named POSIXLY_CORRECT
8734           feature of GNU sed 4.0 (reported by Ervin Nemeth <airwin@inf.bme.hu>).
8735
8736 20021026
8737         + implement logic in lib_mouse.c to handle position reports which are
8738           generated when XFree86 xterm is initialized with private modes 1002
8739           or 1003.  These are returned to the application as the
8740           REPORT_MOUSE_POSITION mask, which was not implemented.  Tested both
8741           with ncurses 'a' menu (prompted by discussion with Larry Riedel
8742           <Larry@Riedel.org>).
8743         + modify lib_mouse.c to look for "XM" terminfo string, which allows
8744           one to override the escape sequence used to enable/disable mouse
8745           mode.  In particular this works for XFree86 xterm private modes
8746           1002 and 1003.  If "XM" is missing (note that this is an extended
8747           name), lib_mouse uses the conventional private mode 1000.
8748         + correct NOT_LOCAL() macro in lib_mvcur.c to refer to screen_columns
8749           where it used screen_lines (report by Philippe Blain).
8750         + correct makefile rules for the case when both --with-libtool and
8751           --with-gpm are given (report by Mr E_T <troll@logi.net.au>).
8752         + add note to terminfo manpage regarding the differences between
8753           setaf/setab and setf/setb capabilities (report by Pavel Roskin).
8754
8755 20021019
8756         + remove redundant initialization of TABSIZE in newterm(), since it is
8757           already done in setupterm() (report by Philippe Blain).
8758         + add test/inserts.c, to test winnstr() and winsch().
8759         + replace 'sort' in dist.mk with script that sets locale to POSIX.
8760         + update URLs in announce.html.in (patch by Frederic L W Meunier).
8761         + remove glibc add-on files, which are no longer needed (report by
8762           Frederic L W Meunier).
8763
8764 20021012 5.3 release for upload to ftp.gnu.org
8765         + modify ifdef's in etip.h.in to allow the etip.h header to compile
8766           with gcc 3.2 (patch by Dimitar Zhekov <jimmy@is-vn.bg>).
8767         + add logic to setupterm() to make it like initscr() and newterm(),
8768           by checking for $NCURSES_TRACE environment variable and enabling
8769           the debug trace in that case.
8770         + modify setupterm() to ensure that it initializes the baudrate, for
8771           applications such as tput (report by Frank Henigman).
8772         + modify definition of bits used for command-line and library debug
8773           traces to avoid overlap, using new definition TRACE_SHIFT to relate
8774           the two.
8775         + document tput's interpretation of parameterized strings according to
8776           whether parameters are given, etc. (discussion with Robert De Bath).
8777
8778 20021005 pre-release
8779         + correct winnwstr() to account for non-character cells generated when
8780           a double-width character is added (report by Michael Bienia
8781           <michael@vorlon.ping.de>).
8782         + modify _nc_viswbuf2n() to provide better results using wctomb().
8783         + correct logic in _nc_varargs() which broke tracing of parameters for
8784           formats such as "%.*s".
8785         + correct scale factor in linux-c and linux-c-nc terminfo entries
8786           (report Floyd Davidson).
8787         + change tic -A option to -t, add the same option to infocmp for
8788           consistency.
8789         + correct "%c" implementation in lib_tparm.c, which did not map a null
8790           character to a 128 (cf: 980620) (patch by Frank Henigman
8791           <fjhenigman@mud.cgl.uwaterloo.ca>).
8792
8793 20020928 pre-release
8794         + modify MKkey_defs.sh to check for POSIX sort -k option, use that if
8795           it is found, to accommodate newer utility which dropped the
8796           compatibility support for +number options (reported by Andrey A
8797           Chernov).
8798         + modify linux terminfo entry to use color palette feature from
8799           linux-c-nc entry (comments by Tomasz Wasiak and Floyd Davidson).
8800         + restore original color definitions in endwin() if init_color() was
8801           used, and resume those colors on the next doupdate() or refresh()
8802           (report by Tomasz Wasiak <tjwasiak@komputom.com.pl>).
8803         + improve debug-traces by modifying MKlib_gen.sh to generate calls
8804           to returnBool() and returnAttr().
8805         + add/use _nc_visbufn() and _nc_viswbufn() to limit the debug trace
8806           of waddnstr() and similar functions to match the parameters as used.
8807         + add/use _nc_retrace_bool() and _nc_retrace_unsigned().
8808         + correct type used by _nc_retrace_chtype().
8809         + add debug traces to some functions in lib_mouse.c
8810         + modify lib_addch.c to handle non-spacing characters.
8811         + correct parameter of RemAttr() in lib_bkgd.c, which caused the c++
8812           demo's boxes to lose the A_ALTCHARSET flag (broken in 20020629).
8813         + correct width computed in _tracedump(), which did not account for
8814           the attributes (broken in 20010602).
8815         + modify test/tracemunch to replace addresses for windows other than
8816           curscr, newscr and stdscr with window0, window1, etc.
8817
8818 20020921 pre-release
8819         + redid fix for edit_man.sed path.
8820         + workaround for Cygwin bug which makes subprocess writes to stdout
8821           result in core dump.
8822         + documented getbegx(), etc.
8823         + minor fixes to configure script to use '%' consistently as a sed
8824           delimiter rather than '@'.
8825         > patch by Philippe Blain:
8826         + add check in lib_overlay.c to ensure that the windows to be merged
8827           actually overlap, and in copywin(), limit the area to be touched
8828           to the lines given for the destination window.
8829
8830 20020914 pre-release
8831         + modified curses.h so that if the wide-character version is installed
8832           overwriting /usr/include/curses.h, and if it relied on libutf8.h,
8833           then applications that use that header for wide-character support
8834           must define HAVE_LIBUTF8_H.
8835         + modify putwin(), getwin() and dupwin() to allow them to operate on
8836           pads (request by Philippe Blain).
8837         + correct attribute-merging in wborder(), broken in 20020216 (report
8838           by Tomasz Wasiak <tjwasiak@grubasek.komputom.com.pl>).
8839         > patch by Philippe Blain:
8840         + corrected pop-counts in tparam_internal() to '!' and '~' cases.
8841         + use sizeof(NCURSES_CH_T) in one place that used sizeof(chtype).
8842         + remove some unused variables from mvcur test-driver.
8843
8844 20020907 pre-release
8845         + change configure script to allow install of widec-character
8846           (ncursesw) headers to overwrite normal (ncurses) headers, since the
8847           latter is a compatible subset of the former.
8848         + fix path of edit_man.sed in configure script, needed to regenerate
8849           html manpages on Debian.
8850         + fix mismatched enums in vsscanf.c, which caused warning on Solaris.
8851         + update README.emx to reflect current patch used for autoconf.
8852         + change web- and ftp-site to invisible-island.net
8853         > patch by Philippe Blain:
8854         + change case for 'P' in tparam_internal() to indicate that it pops
8855           a variable from the stack.
8856         + correct sense of precision and width in parse_format(), to avoid
8857           confusion.
8858         + modify lib_tparm.c, absorb really_get_space() into get_space().
8859         + modify getwin() and dupwin() to copy the _notimeout, _idlok and
8860           _idcok window fields.
8861         + better fix for _nc_set_type(), using typeMalloc().
8862
8863 20020901 pre-release
8864         + change minor version to 3, i.e., ncurses 5.3
8865         + update config.guess, config.sub
8866         + retest build with each configure option; minor ifdef fixes.
8867         + make keyname() return a null pointer rather than "UNKNOWN STRING" to
8868           match XSI.
8869         + modify handling of wide line-drawing character functions to use the
8870           normal line-drawing characters when not in UTF-8 locale.
8871         + add check/fix to comp_parse.c to suppress warning about missing acsc
8872           string.  This happens in configurations where raw termcap information
8873           is processed; tic already does this and other checks.
8874         + modify tic's check for ich/ich1 versus rmir/smir to only warn about
8875           ich1, to match xterm patch #70 notes.
8876         + moved information for ripped-off lines into SCREEN struct to allow
8877           use in resizeterm().
8878         + add experimental wgetch_events(), ifdef'd with NCURSES_WGETCH_EVENTS
8879           (adapted from patch by Ilya Zakharevich - see ncurses/README.IZ).
8880         + amend check in kgetch() from 20020824 to look only for function-keys,
8881           otherwise escape sequences are not resolved properly.
8882         > patch by Philippe Blain:
8883         + removed redundant assignment to SP->_checkfd from newterm().
8884         + check return-value of setupterm() in restartterm().
8885         + use sizeof(NCURSES_CH_T) in a few places that used sizeof(chtype).
8886         + prevent dupwin() from duplicating a pad.
8887         + prevent putwin() from writing a pad.
8888         + use typeRealloc() or typeMalloc() in preference to direct calls on
8889           _nc_doalloc().
8890
8891 20020824
8892         + add a check in kgetch() for cooked characters in the fifo to avoid
8893           calling fifo_push() when a KEY_RESIZE is available (report/analysis
8894           by Sam Varshavchik <mrsam@courier-mta.com>).
8895         + fix an overlooked case for Redhat #68199 (Philippe Blain).
8896         + ensure clearerr() is called before using ferror() e.g., in
8897           lib_screen.c (report by Philippe Blain).
8898
8899 20020817
8900         + modify lib_screen.c and lib_newwin.c to maintain the SCREEN-specific
8901           pointers for curscr/stdscr/newscr when scr_save() and scr_restore()
8902           modify the global curscr/stdscr/newscr variables.  Fixes Redhat
8903           #68199.
8904         + add checks for null pointer in calls to tparm() and tgoto() based on
8905           FreeBSD bug report.  If ncurses were built with termcap support, and
8906           the first call to tgoto() were a zero-length string, the result would
8907           be a null pointer, which was not handled properly.
8908         + correct a typo in terminfo.head, which gave the octal code for colon
8909           rather than comma.
8910         + remove the "tic -u" option from 20020810, since it did not account
8911           for nested "tc=" clauses, and when that was addressed, was still
8912           unsatisfactory.
8913
8914 20020810
8915         + add tic -A option to suppress capabilities which are commented out
8916           when translating to termcap.
8917         + add tic -u option to provide older behavior of "tc=" clauses.
8918         + modified tic to expand all but the final "tc=" clause in a termcap
8919           entry, to accommodate termcap libraries which do not handle multiple
8920           tc clauses.
8921         + correct typo in curs_inopts.3x regarding CS8/CS7 usage (report by
8922           Philippe Blain).
8923         + remove a couple of redundant uses of A_ATTRIBUTES in expressions
8924           using AttrOf(), which already incorporates that mask (report by
8925           Philippe Blain).
8926         + document TABSIZE variable.
8927         + add NCURSES_ASSUMED_COLORS environment variable, to allow users to
8928           override compiled-in default black-on-white assumption used in
8929           assume_default_colors().
8930         + correct an off-by-one comparison against max_colors in COLORFGBG
8931           logic.
8932         + correct a use of uninitialized memory found by valgrind (reported by
8933           Olaf Buddenhagen <olafBuddenhagen@web.de>).
8934         + modified wresize() to ensure that a failed realloc will not corrupt
8935           the window structure, and to make subwindows fit within the resized
8936           window (completes Debian #87678, Debian #101699)
8937
8938 20020803
8939         + fix an off-by-one in lib_pad.c check for limits of pad (patch by
8940           Philippe Blain).
8941         + revise logic for BeOS in lib_twait.c altered in 20011013 to restore
8942           logic used by lib_getch.c's support for GPM or EMX mouse (report by
8943           Philippe Blain)
8944         + remove NCURSES_CONST from several prototypes in curses.wide, to make
8945           the --enable-const --enable-widec configure options to work together
8946           (report by George Goffe <grgoffe@yahoo.com>).
8947
8948 20020727
8949         + finish no-leak checking in cardfile.c, using this for testing changes
8950           to resizeterm().
8951         + simplify _nc_freeall() using delscreen().
8952
8953 20020720
8954         + check error-return from _nc_set_tty_mode() in _nc_initscr() and
8955           reset_prog_mode() (report/patch by Philippe Blain).
8956         + regenerate configure using patch for autoconf 2.52, to address
8957           problem with identifying C++ bool type.
8958         + correct/improve logic to produce an exit status for errors in tput,
8959           which did not exit with an error when told to put a string not in the
8960           current terminfo entry (report by David Gomez <david@pleyades.net>).
8961         + modify configure script AC_OUTPUT() call to work around defect in
8962           autoconf 2.52 which adds an ifdef'd include to the generated
8963           configure definitions.
8964         + remove fstat() check from scr_init(), which also fixes a missing
8965           include for <sys/stat.h> from 20020713 (reported by David Ellement,
8966           fix suggested by Philippe Blain).
8967         + update curs_scanw.3x manpage to note that XSI curses differs from
8968           SVr4 curses: return-values are incompatible.
8969         + correct several prototypes in manpages which used const
8970           inconsistently with the curses.h file, and removed spurious const's
8971           in a few places from curses.h, e.g., for wbkgd() (report by Glenn
8972           Maynard <glenn@zewt.org>).
8973         + change internal type used by tparm() to long, to work with LP64 model.
8974         + modify nc_alloc.h to allow building with g++, for testing.
8975
8976 20020713
8977         + add resize-handling to cardfile.c test program.
8978         + altered resizeterm() to avoid having it fail when a child window
8979           cannot be resized because it would be larger than its parent.  (More
8980           work must be done on this, but it works well enough to integrate).
8981         + improve a limit-check in lib_refresh.c
8982         + remove check in lib_screen.c relating dumptime to file's modification
8983           times, since that would not necessarily work for remotely mounted
8984           filesystems.
8985         + modify lrtest to simplify debugging changes to resizeterm, e.g.,
8986           t/T commands to enable/disable tracing.
8987         + updated status of multibyte support in TO-DO.
8988         + update contact info in source-files (patch by Juergen Pfeifer).
8989
8990 20020706
8991         + add Caps.hpux11, as an example.
8992         + modify version_filter(), used to implement -R option for tic and
8993           infocmp, to use computed array offsets based on the Caps.* file which
8994           is actually configured, rather than constants which correspond to
8995           the Caps file.
8996         + reorganized lib_raw.c to avoid updating SP and cur_term state if the
8997           functions fail (reported by Philippe Blain).
8998         + add -Wundef to gcc warnings, adjust a few ifdef's to accommodate gcc.
8999
9000 20020629
9001         + correct parameters to setcchar() in ncurses.c (cf: 20020406).
9002         + set locale in most test programs (view.c and ncurses.c were the
9003           only ones).
9004         + add configure option --with-build-cppflags (report by Maksim A
9005           Nikulin <M.A.Nikulin@inp.nsk.su>).
9006         + correct a typo in wide-character logic for lib_bkgnd.c (Philippe
9007           Blain).
9008         + modify lib_wacs.c to not cancel the acsc, smacs, rmacs strings when
9009           in UTF-8 locale.  Wide-character functions use Unicode values, while
9010           narrow-character functions use the terminfo data.
9011         + fix a couple of places in Ada95/samples which did not compile with
9012           gnat 3.14
9013         + modify mkinstalldirs so the DOS-pathname case is locale-independent.
9014         + fix locale problem in MKlib_gen.sh by forcing related variables to
9015           POSIX (C), using same approach as autoconf (set variables only if
9016           they were set before).  Update MKterminfo.sh and MKtermsort.sh to
9017           match.
9018
9019 20020622
9020         + add charset to generated html.
9021         + add mvterm entry, adapted from a FreeBSD bug-report by Daniel Rudy
9022           <dcrudy@pacbell.net> -TD
9023         + add rxvt-16color, ibm+16color entries -TD
9024         + modify check in --disable-overwrite option so that it is used by
9025           default unless the --prefix/$prefix value is not /usr, in attempt to
9026           work around packagers, e.g., for Sun's freeware, who do not read the
9027           INSTALL notes.
9028
9029 20020615
9030         + modify wgetch() to allow returning ungetch'd KEY_RESIZE as a function
9031           key code in get_wch().
9032         + extended resize-handling in test/ncurses 'a' menu to the entire
9033           stack of windows created with 'w' commands.
9034         + improve $COLORFGBG feature by interpreting an out-of-range color
9035           value as an SGR 39 or 49, for foreground/background respectively.
9036         + correct a typo in configure --enable-colorfgbg option, and move it
9037           to the experimental section (cf: 20011208).
9038
9039 20020601
9040         + add logic to dump_entry.c to remove function-key definitions that do
9041           not fit into the 1023-byte limit for generated termcaps.  This makes
9042           hds200 fit.
9043         + more improvements to tic's warnings, including logic to ignore
9044           differences between delay values in sgr strings.
9045         + move definition of KEY_RESIZE into MKkeydefs.sh script, to
9046           accommodate Caps.osf1r5 which introduced a conflicting definition.
9047
9048 20020525
9049         + add simple resize-handling in test/ncurses.c 'a' menu.
9050         + fixes in keyname() and _tracechar() to handle negative values.
9051         + make tic's warnings about mismatches in sgr strings easier to follow.
9052         + correct tic checks for number of parameters in smgbp and smglp.
9053         + improve scoansi terminfo entry, and add scoansi-new entry -TD
9054         + add pcvt25-color terminfo entry -TD
9055         + add kf13-kf48 strings to cons25w terminfo entry (reported by Stephen
9056           Hurd <deuce@lordlegacy.org> in newsgroup lucky.freebsd.bugs) -TD
9057         + add entrypoint _nc_trace_ttymode(), use this to distinguish the
9058           Ottyb and Nttyb members of terminal (aka cur_term), for tracing.
9059
9060 20020523
9061         + correct and simplify logic for lib_pad.c change in 20020518 (reported
9062           by Mike Castle).
9063
9064 20020518
9065         + fix lib_pad.c for case of drawing a double-width character which
9066           falls off the left margin of the pad (patch by Kriang Lerdsuwanakij
9067           <lerdsuwa@users.sourceforge.net>)
9068         + modify configure script to work around broken gcc 3.1 "--version"
9069           option, which adds unnecessary trash to the requested information.
9070         + adjust ifdef's in case SIGWINCH is not defined, e.g., with DJGPP
9071           (reported by Ben Decker <deckerben@freenet.de>).
9072
9073 20020511
9074         + implement vid_puts(), vid_attr(), term_attrs() based on the narrow-
9075           character versions as well.
9076         + implement erasewchar(), killwchar() based on erasechar() and
9077           killchar().
9078         + modify erasechar() and killchar() to return ERR if the value was
9079           VDISABLE.
9080         + correct a bug in wresize() in handling subwindows (based on patch by
9081           Roger Gammans <rgammans@computer-surgery.co.uk>, report by Scott Beck
9082           <scott@gossamer-threads.com>).
9083         + improve test/tclock.c by making the second-hand update more often
9084           if gettimeofday() is available.
9085
9086 20020429
9087         + workaround for Solaris sed with MKlib_gen.sh (reported by Andy
9088           Tsouladze <andyt@mypoints.com>).
9089
9090 20020427
9091         + correct return-value from getcchar(), making it consistent with
9092           Solaris and Tru64.
9093         + reorder loops that generate makefile rules for different models vs
9094           subsets so configure --with-termlib works again.  This was broken by
9095           logic added to avoid duplicate rules in changes to accommodate cygwin
9096           dll's (reported by George.R.Goffe@seagate.com).
9097         + update config.guess, config.sub
9098
9099 20020421
9100         + modify ifdef's in write_entry.c to allow use of symbolic links on
9101           platforms with no hard links, e.g., BeOS.
9102         + modify a few includes to allow compile with BeOS, which has stdbool.h
9103           with a conflicting definition for 'bool' versus its OS.h definition.
9104         + amend MKlib_gen.sh to work with gawk, which defines 'func' as an
9105           alias for 'function'.
9106
9107 20020420
9108         + correct form of prototype for ripoffline().
9109         + modify MKlib_gen.sh to test that all functions marked as implemented
9110           can be linked.
9111
9112 20020413
9113         + add manpages: curs_get_wstr.3x, curs_in_wchstr.3x
9114         + implement wgetn_wstr().
9115         + implement win_wchnstr().
9116         + remove redefinition of unget_wch() in lib_gen.c (reported by
9117           Jungshik Shin <jshin@jtan.com>).
9118
9119 20020406
9120         + modified several of the test programs to allow them to compile with
9121           vendor curses implementations, e.g., Solaris, AIX -TD
9122
9123 20020323
9124         + modified test/configure to allow configuring against ncursesw.
9125         + change WACS_xxx definition to use address, to work like Tru64 curses.
9126
9127 20020317
9128         + add 'e' and 'm' toggles to 'a', 'A' tests in ncurses.c to demonstrate
9129           effect of echo/noecho and meta modes.
9130         + add 'A' test to ncurses.c to demonstrate wget_wch() and related
9131           functions.
9132         + add manpage: curs_get_wch.3x
9133         + implement unget_wch().
9134         + implement wget_wch().
9135
9136 20020310
9137         + regenerated html manpages.
9138         + add manpages: curs_in_wch.3x, curs_ins_wch.3x, curs_ins_wstr.3x
9139         + implement wins_wch().
9140         + implement win_wch().
9141         + implement wins_nwstr(), wins_wstr().
9142
9143 20020309
9144         + add manpages: curs_addwstr.3x, curs_winwstr.3x
9145         + implement winnwstr(), winwstr().
9146
9147 20020223
9148         + add manpages: curs_add_wchstr.3x, curs_bkgrnd.3x
9149         + document wunctrl, key_name.
9150         + implement key_name().
9151         + remove const's in lib_box.c incorrectly leftover after splitting off
9152           lib_box_set.c
9153         + update llib-lncurses, llib-ncursesw, fix configure script related to
9154           these.
9155
9156 20020218
9157         + remove quotes on "SYNOPSIS" in man/curs_box_set.3x, which resulted
9158           in spurious symlinks on install.
9159
9160 20020216
9161         + implement whline_set(), wvline_set(), add manpage curs_border_set.
9162         + add subtest 'b' to 'F' and 'f' in ncurses.c to demonstrate use of
9163           box() and box_set() functions.
9164         + add subtest 'u' to 'F' in ncurses.c, to demonstrate use of addstr()
9165           given UTF-8 string equivalents of WACS_xxx symbols.
9166         + minor fixes to several manpages based on groff -ww output.
9167         + add descriptions of external variables of termcap interface to
9168           the manpage (report by Bruce Evans <bde@zeta.org.au>).
9169         > patches by Bernhard Rosenkraenzer:
9170         + correct configure option --with-bool, which was executed as
9171           --with-ospeed.
9172         + add quotes for parameters of --with-bool and --with-ospeed configure
9173           options.
9174         > patch by Sven Verdoolaege (report by Gerhard Haering
9175           <haering_linux@gmx.de>):
9176         + correct typos in definitions of several wide-character macros:
9177           waddwstr, wgetbkgrnd, mvaddwstr, mvwadd_wchnstr, mvwadd_wchnstr,
9178           mvwaddwstr.
9179         + pass $(CPPFLAGS) to MKlib_gen.sh, thereby fixing a missing definition
9180           of _XOPEN_SOURCE_EXTENDED, e.g., on Solaris
9181
9182 20020209
9183         + implement wide-acs characters for UTF-8 locales.  When in UTF-8
9184           locale, ignore narrow version of acs.  Add 'F' test to test/ncurses.c
9185           to demonstrate.
9186         + correct prototype in keybound manpage (noted from a Debian mailing
9187           list item).
9188
9189 20020202
9190         + add several cases to the wscanw() example in testcurs.c, showing the
9191           format.
9192         + implement a simple vsscanf() fallback function which uses the %n
9193           conversion to help parse the input data (prompted by discussion with
9194           Albert Chin-A-Young).
9195         + modify mk-1st.awk and test/Makefile.in to add $(LDFLAGS) when making
9196           shared libraries, and to use $(CFLAGS) when linking test programs
9197           (patch by Albert Chin-A-Young).
9198         + add a call to _nc_keypad() in keypad() to accommodate applications
9199           such as nvi, which use curses for output but not for input (fixes
9200           Debian #131263, cf: 20011215).
9201         + add entrypoints to resizeterm.c which provide better control over the
9202           process:  is_term_resized() and resize_term().  The latter restores
9203           the original design of resizeterm() before KEY_RESIZE was added in
9204           970906.  Do this to accommodate 20010922 changes to view.c, but allow
9205           for programs with their own sigwinch handler, such as lynx (reported
9206           by Russell Ruby <russ@math.orst.edu>).
9207
9208 20020127
9209         + fix a typo in change to mk-1st.awk, which broke the shared-library
9210           makefile rules (reported by Martin Mokrejs).
9211
9212 20020126
9213         + update config.guess, config.sub
9214         + finish changes needed to build dll's on cygwin.
9215         + fix a typo in mvwchat() macro (reported by Cy <yam@homerow.net).
9216
9217 20020119
9218         + add case in lib_baudrate.c for B921600 (patch by Andrey A Chernov).
9219         + correct missing sed-editing stage in manpage installs which is used
9220           to rename manpages, broken in 20010324 fix for Debian #89939 (Debian
9221           #78866).
9222         + remove -L$(libdir) from linker flags, probably not needed any more
9223           since HPUX is handled properly (reported by Niibe Yutaka
9224           <gniibe@m17n.org>).
9225         + add configure check for mbstate_t, needed for wide-character
9226           configuration.  On some platforms we must include <wchar.h> to
9227           define this (reported by Daniel Jacobowitz).
9228         + incorporate some of the changes needed to build dll's on cygwin.
9229
9230 20020112a
9231         + workaround for awk did not work with mawk, adjusted shell script.
9232
9233 20020112
9234         + add Caps.osf1r5, as an example.
9235         + modify behavior of can_clear_with() so that if an application is
9236           running in a non-bce terminals with default colors enabled, it
9237           returns true, allowing the user to select/paste text without picking
9238           up extraneous trailing blanks (adapted from patch by Daniel
9239           Jacobowitz <dmj+@andrew.cmu.edu>).
9240         + modify generated curses.h to ifdef-out prototypes for extensions if
9241           they are disabled, and to define curses_version() as a string in that
9242           case.  This is needed to make the programs such as tic build in that
9243           configuration.
9244         + modified generated headers.sh to remove a gzip'd version of the
9245           target file if it exists, in case non-gzip'd manpages are installed
9246           into a directory where gzip'd ones exist.  In that case, the latter
9247           would be found.
9248         + corrected a redundant initialization of signal handlers from 20010922
9249           changes.
9250         + clarified bug-reporting address in terminfo.src (report by John H
9251           DuBois III <spcecdt@armory.com>).
9252         > several fixes from Robert Joop:
9253         + do not use "-v" option of awk in MKkey_defs.sh because it does not
9254           work with SunOS nawk.
9255         + modify definitions for libutf8 in curses.h to avoid redefinition
9256           warnings for mblen
9257         + quoted references to compiler in shell command in misc/Makefile, in
9258           case it uses multiple tokens.
9259
9260 20011229
9261         + restore special case from 20010922 changes to omit SA_RESTART when
9262           setting up SIGWINCH handler, which is needed to allow wgetch() to be
9263           interrupted by that signal.
9264         + updated configure macro CF_WITH_PATHLIST, to omit some double quotes
9265           not needed with autoconf 2.52
9266         + revert configure script to autoconf 2.13 patched with
9267                 autoconf-2.13-19990117.patch.gz (or later)
9268           from
9269                 ftp://invisible-island.net/autoconf/
9270           because autoconf 2.52 macro AC_PROG_AWK does not work on HPUX 11.0
9271           (report by David Ellement <ellement@sdd.hp.com>).  This also fixes a
9272           different problem configuring with Mac OS X (reported by Marc Smith
9273           <marc.a.smith@home.com>).
9274
9275 20011222
9276         + modify include/edit_cfg.h to eliminate BROKEN_LINKER symbol from
9277           term.h
9278         + move prototype for _nc_vsscanf() into curses.h.in to omit
9279           HAVE_VSSCANF symbol from curses.h, which was dependent upon the
9280           ncurses_cfg.h file which is not installed.
9281         + use ACS_LEN rather than SIZEOF(acs_map) in trace code of lib_acs.c,
9282           to work with broken linker configuration, e.g., cygwin (report by
9283           Robert Joop <rj@rainbow.in-berlin.de>).
9284         + make napms() call _nc_timed_wait() rather than poll() or select(),
9285           to work around broken implementations of these on cygwin.
9286
9287 20011218
9288         + drop configure macro CF_WIDEC_SHIFT, since that was rendered obsolete
9289           by Sven Verdoolaege's rewrite of wide-character support.  This makes
9290           libncursesw incompatible again, but makes the header files almost the
9291           same as in the narrow-character configuration.
9292         + simplify definitions that combine wide/narrow versions of bkgd, etc.,
9293           to eliminate differences between the wide/narrow versions of curses.h
9294         + correct typo in configure macro CF_FUNC_VSSCANF
9295         + correct location of call to _nc_keypad() from 20011215 changes which
9296           prevented keypad() from being disabled (reported by Lars Hecking).
9297
9298 20011215
9299         + rewrote ncurses 'a' test to exercise wgetch() and keypad() functions
9300           better, e.g., by adding a 'w' command to create new windows which
9301           may have different keypad() settings.
9302         + corrected logic of keypad() by adding internal screen state to track
9303           whether the terminal's keypad-mode has been set.  Use this in
9304           wgetch() to update the keypad-mode according to whether the
9305           associated window's keypad-mode has been set with keypad().  This
9306           corrects a related problem restoring terminal state after handling
9307           SIGTSTP (reported by Mike Castle).
9308         + regenerate configure using patch for autoconf 2.52
9309                 autoconf-2.52-patch.gz
9310           at
9311                 ftp://invisible-island.net/autoconf/
9312         + update config.guess, config.sub from
9313                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
9314         + minor changes to quoting in configure script to allow it to work
9315           with autoconf 2.52
9316
9317 20011208
9318         + modify final checks in lib_setup.c for line and col values, making
9319           them independent.
9320         + modify acs_map[] if configure --broken-linker is specified, to make
9321           it use a function rather than an array (prompted by an incorrect
9322           implementation in cygwin package).
9323         + correct spelling of configure option --enable-colorfgbg, which
9324           happened to work if --with-develop was set (noted in cygwin package
9325           for ncurses).
9326         + modify ifdef for genericerror() to compile with SUNWspro Sun WorkShop
9327           6 update 1 C++ 5.2 (patch by Sullivan N Beck <sbeck@cise.ufl.edu>).
9328         + add configure checks to see if ncurses' fallback vsscanf() will
9329           compile either of the special cases for FILE structs, and if not,
9330           force it to the case which simply returns an error (report by
9331           Sullivan N Beck <sbeck@cise.ufl.edu> indicates that Solaris 8 with
9332           64-bits does not allow access to FILE's fields).
9333         + modify ifdef's for c++/cursesw.cc to use the fallback vsscanf() in
9334           the ncurses library if no better substitute for this can be found
9335           in the C++ runtime.
9336         + modify the build to name dynamic libraries according to the
9337           convention used on OS X and Darwin.  Rather than something like
9338           libncurses.dylib.5.2, Darwin would name it libncurses.  5.dylib.
9339           There are a few additional minor fixes, such as setting the library
9340           version and compatibility version numbers (patch by Jason Evans
9341           <jevans@apple.com>).
9342         + use 'sh' to run mkinstalldirs, to work around problems with buggy
9343           versions of 'make' on OS/2 (report by John Polterak <jp@eyup.org>).
9344         + correct typo in manpage description of curs_set() (Debian #121548).
9345         + replace the configure script existence-check for mkstemp() by one
9346           that checks if the function works, needed for older glibc and
9347           AmigaOS.
9348
9349 20011201
9350         + modify script that generates fallbacks.c to compile a temporary
9351           copy of the terminfo source in case the host does not contain all of
9352           the entries requested for fallbacks (request by Greg Roelofs).
9353         + modify configure script to accommodate systems such as Mac OS X whose
9354           <stdbool.h> header defines a 'bool' type inconsistent with ncurses,
9355           which normally makes 'bool' consistent with C++.  Include <stdbool.h>
9356           from curses.h to force consistent usage, define a new type
9357           NCURSES_BOOL and related that to the exported 'bool' as either a
9358           typedef or definition, according to whether <stdbool.h> is present
9359           (based on a bug report for tin 1.5.9 by Aaron Adams <adamsa@mac.com>).
9360
9361 20011124
9362         + added/updated terminfo entries for M$ telnet and KDE konsole -TD
9363
9364 20011117
9365         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
9366           (Benjamin C W Sittler).
9367         + add putty terminfo entry -TD
9368         + if configuring for wide-curses, define _XOPEN_SOURCE_EXTENDED, since
9369           this may not otherwise be defined to make test/view.c compile.
9370
9371 20011110
9372         + review/correct several missing/generated items in curses.wide, sorted
9373           the lists to make subsequent diff's easier to track.
9374
9375 20011103
9376         + add manual pages for add_wch(), echo_wchar(), getcchar(),
9377           mvadd_wch(), mvwadd_wch(), setcchar(), wadd_wch() and wecho_wchar().
9378         + implement wecho_wchar()
9379         + modify _tracedump() to handle wide-characters by mapping them to '?'
9380           and control-characters to '.', to make the trace file readable.  Also
9381           dynamically allocate the buffer used by _tracedump() for formatting
9382           the results.
9383         + modify T_CALLED/T_RETURN macros to ease balancing call/return lines
9384           in a trace by using curly braces.
9385         + implement _nc_viscbuf(), for tracing cchar_t arrays.
9386         + correct trace-calls in setcchar() and getcchar() functions, which
9387           traced the return values but not the entry to each function.
9388         + correct usage message in test/view.c, which still mentioned -u flag.
9389
9390 20011027
9391         + modify configure script to allow building with termcap only, or with
9392           fallbacks only.  In this case, we do not build tic and toe.
9393         + add configure --with-termpath option, to override default TERMPATH
9394           value of /etc/termcap:/usr/share/misc/termcap.
9395         + cosmetic change to tack: make menu descriptions agree with menu
9396           titles.
9397
9398 20011020
9399         + rewrote limit-checks in wscrl() and associated _nc_scroll_window(),
9400           to ensure that if the parameter of wscrl() is larger than the size of
9401           the scrolling region, then the scrolling region will be cleared
9402           (report by Ben Kohlen <bckohlen@yahoo.com>).
9403         + add trace/varargs.c, using this to trace parameters in lib_printw.c
9404         + implement _tracecchar_t2() and _tracecchar_t().
9405         + split-out trace/visbuf.c
9406         + correct typo in lib_printw.c changes from 20010922 (report by Mike
9407           Castle).
9408
9409 20011013
9410         + modify run_tic.sh to check if the build is a cross-compile.  In that
9411           case, do not use the build's tic to install the terminfo database
9412           (report by Rafael Rodriguez Velilla <rrv@tid.es>).
9413         + modify mouse click resolution so that mouseinterval(-1) will disable
9414           it, e.g., to handle touchscreens via a slow connection (request by
9415           Byron Stanoszek <gandalf@winds.org>).
9416         + correct mouseinterval() default value shown in curs_mouse.3x
9417         + remove conflicting definition of mouse_trafo() (reported by Lars
9418           Hecking, using gcc 2.95.3).
9419
9420 20011001
9421         + simpler fix for signal_name(), to replace the one overlooked in
9422           20010929 (reported by Larry Virden).
9423
9424 20010929
9425         + add -i option to view.c, to test ncurses' check for non-default
9426           signal handler for SIGINT, etc.
9427         + add cases for shared-libraries on Darwin/OS X (patch by Rob Braun
9428           <bbraun@synack.net>).
9429         + modify tset to restore original I/O modes if an error is encountered.
9430           Also modify to use buffered stderr consistently rather than mixing
9431           with write().
9432         + change signal_name() function to use if-then-else rather than case
9433           statement, since signal-values aren't really integers (reported by
9434           Larry Virden).
9435         + add limit checks in wredrawln(), fixing a problem where lynx was
9436           repainting a pad which was much larger than the screen.
9437
9438 20010922
9439         + fix:  PutRange() was counting the second part of a wide character as
9440           part of a run, resulting in a cursor position that was one too far
9441           (patch by Sven Verdoolaege).
9442         + modify resizeterm() to not queue a KEY_RESIZE if there was no
9443           SIGWINCH, thereby separating the two styles of SIGWINCH handling
9444           in test/view.c
9445         + simplified lib_tstp.c, modify it to use SA_RESTART flag for SIGWINCH.
9446         + eliminate several static buffers in the terminfo compiler, using
9447           allocated buffers.
9448         + modify MKkeyname.awk so that keyname() does not store its result into
9449           a static buffer that is overwritten by the next call.
9450         + reorganize the output of infocmp -E and -e options to compile cleanly
9451           with gcc -Wwrite-strings warnings.
9452         + remove redefinition of chgat/wchgat/mvwchgat from curses.wide
9453
9454 20010915
9455         + add label to test/view.c, showing the name of the last key or signal
9456           that made the screen repaint, to make it clearer when a sigwinch
9457           does this.
9458         + use ExitProgram() consistently in the test-programs to make it
9459           simpler to test leaks with dmalloc, etc.
9460         + move hashtab static data out of hashmap.c into SCREEN struct.
9461         + make NO_LEAK code compile with revised WINDOWLIST structs.
9462
9463 20010908
9464         + modify tgetent() to check if exit_attribute_mode resets the alternate
9465           character set, and if so, attempt to adjust the copy of the termcap
9466           "me" string which it will return to eliminate that part.  In
9467           particular, 'screen' would lose track of line-drawing characters
9468           (report by Frederic L W Meunier <0@pervalidus.net>, analysis by
9469           Michael Schroeder).
9470
9471 20010901
9472         + specify DOCTYPE in html manpages.
9473         + add missing macros for several "generated" functions:  attr_get(),
9474           attr_off(), attr_on(), attr_set(), chgat(), mvchgat(), mvwchgat() and
9475           mouse_trafo().
9476         + modify view.c to agree with non-experimental status of ncurses'
9477           sigwinch handler:
9478           + change the sense of the -r option, making it default to ncurses'
9479             sigwinch handler.
9480           + add a note explaining what functions are unsafe in a signal
9481             handler.
9482           + add a -c option, to set color display, for testing.
9483         + unset $data variable in MKterminfo.sh script, to address potential
9484           infinite loop if shell malfunction (report by Samuel Mikes
9485           <smikes@cubane.com>, for bash 2.05.0 on a Linux 2.0.36 system).
9486         + change kbs in mach terminfo entries to ^?  (Marcus Brinkmann
9487           <Marcus.Brinkmann@ruhr-uni-bochum.de>).
9488         + correct logic for COLORFGBG environment variable: if rxvt is compiled
9489           with xpm support, the variable has three fields, making it slightly
9490           incompatible with itself.  In either case, the background color is
9491           the last field.
9492
9493 20010825
9494         + move calls to def_shell_mode() and def_prog_mode() before loop with
9495           callbacks in lib_set_term.c, since the c++ demo otherwise initialized
9496           the tty modes before saving them (patch by John David Anglin
9497           <dave@hiauly1.hia.nrc.ca>).
9498         + duplicate logic used to initialize trace in newterm(), in initscr()
9499           to avoid confusing trace of initscr().
9500         + simplify allocation of WINDOW and WINDOWLIST structs by making the
9501           first a part of the second rather than storing a pointer.  This saves
9502           a call to malloc for each window (discussion with Philippe Blain).
9503         + remove unused variable 'used_ncv' from lib_vidattr.c (Philippe
9504           Blain).
9505         + modify c++/Makefile.in to accommodate archive programs that are
9506           different for C++ than for C, and add cases for vendor's C++
9507           compilers on Solaris and IRIX (report by Albert Chin-A-Young).
9508         + correct manpage description of criteria for deciding if the terminal
9509           supports xterm mouse controls.
9510         + add several configure script options to aid with cross-compiling:
9511           --with-build-cc, --with-build-cflags, --with-build-ldflags, and
9512           --with-build-libs (request by Greg Roelofs).
9513         + change criteria for deciding if configure is cross-compiling from
9514           host/build mismatch to host/target mismatch (request by Greg Roelofs
9515           <greg.roelofs@philips.com>).
9516         + correct logic for infocmp -e and -E options which writes the data for
9517           the ext_Names[] array.  This is needed if one constructs a fallback
9518           table for a terminfo entry which uses extended termcap names, e.g.,
9519           AX in a color xterm.
9520         + fix undefined NCURSES_PATHSEP when configure --disable-database
9521           option is given.
9522
9523 20010811
9524         + fix for VALID_BOOLEAN() macro when char is not signed.
9525         + modify 'clean' rule for C++ binding to work with Sun compiler, which
9526           caches additional information in a subdirectory of the objects.
9527         + added llib-ncursesw.
9528
9529 20010804
9530         + add Caps.keys example for experimental extended function keys
9531           (adapted from a patch by Ilya Zakharevich).
9532         + correct parameter types of vidputs() and vidattr() to agree with
9533           header files (report by William P Setzer).
9534         + fix typos in several man-pages (patch by William P Setzer).
9535         + remove unneeded ifdef for __GNUG__ in CF_CPP_VSCAN_FUNC configure
9536           macro, which made ncurses C++ binding fail to build with other
9537           C++ compilers such as HPUX 11.x (report by Albert Chin-A-Young).
9538         + workaround for bug in HPUX 11.x C compiler: add a blank after
9539           NCURSES_EXPORT macro in form.h (report by Albert Chin-A-Young)
9540         + ignore blank lines in Caps* files in MKkey_defs.sh script (report by
9541           Albert Chin-A-Young).
9542         + correct definition of key_end in Caps.aix4, which left KEY_END
9543           undefined (report by Albert Chin-A-Young).
9544         + remove a QNX-specific fallback prototype for vsscanf(), which is
9545           obsolete with QNX RTP.
9546         + review/fix some of the T() and TR() macro calls, having noticed that
9547           there was no data for delwin() in a trace of dialog because there was
9548           no returnVoid call for wtimeout().  Also, traces in lib_twait.c are
9549           now selected under TRACE_IEVENT rather than TRACE_CALLS.
9550
9551 20010728
9552         + add a _nc_access() check before opening files listed via $TERMPATH.
9553         + using modified man2html, regenerate some of the html manpages to fix
9554           broken HREF's where the link was hyphenated.
9555
9556 20010721
9557         + add some limit/pointer checks to -S option of tputs.
9558         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
9559           (Benjamin C W Sittler).
9560         + add a note in curs_termcap.3x regarding a defect in the XSI
9561           description of tgetent (based on a discussion with Urs Jansen
9562           regarding the HPUX 11.x implementation, whose termcap interface is
9563           not compatible with existing termcap programs).
9564         + modify manhtml rule in dist.mk to preserve copyright notice on the
9565           generated files, as well as to address HTML style issues reported by
9566           tidy and weblint.  Regenerated/updated corresponding html files.
9567         + comment out use of Protected_Character and related rarely used
9568           attributes in ncurses Ada95 test/demo to compile with wide-character
9569           configuration.
9570
9571 20010714
9572         + implement a simple example in C++ demo to test scanw().
9573         + corrected stdio function used to implement scanw() in cursesw.cc
9574         + correct definition of RemAttr() macro from 20010602 changes, which
9575           caused C++ SillyDemo to not show line-drawing characters.
9576         + modify C++ binding, adding getKey() which can be overridden by user
9577           to substitute functions other than getch() for keyboard processing
9578           of forms and menus (patch by Juergen Pfeifer).
9579
9580 20010707
9581         + fix some of the trace calls which needed modification to work with
9582           new wide-character structures.
9583         + modify magic-cookie code in tty_update.c to compile with new
9584           wide-character structures (report by <George.R.Goffe@seagate.com>).
9585         + ensure that _XOPEN_SOURCE_EXTENDED is defined in curses.priv.h if
9586           compiling for wide-character configuration.
9587         + make addwnstr() handle non-spacing characters (patch by Sven
9588           Verdoolaege).
9589
9590 20010630
9591         + add configure check to define _GNU_SOURCE, needed to prop up glibc
9592           header files.
9593         + split-out include/curses.wide to solve spurious redefinitions caused
9594           by defining _GNU_SOURCE, and move includes for <signal.h> before
9595           <curses.h> to work around misdefinition of ERR in glibc 2.1.3 header
9596           file.
9597         + extended ospeed change to NetBSD and OpenBSD -TD
9598         + modify logic in lib_baudrate.c for ospeed, for FreeBSD to make it
9599           work properly for termcap applications (patch by Andrey A Chernov).
9600
9601 20010623
9602         + correct an overlooked CharOf/UChar instance (reports by Eugene Lee
9603           <eugene@anime.net>, Sven Verdoolaege).
9604         + correct unneeded ifdef for wunctrl() (reported by Sven Verdoolaege)
9605
9606 20010618
9607         + change overlooked several CharOf/UChar instances.
9608         > several patches from Sven Verdoolaege:
9609         + correct a typo in wunctrl(), which made it appear that botwc() was
9610           needed (no such function: use btowc()).
9611         + reimplement wide-character demo in test/view.c, using new functions.
9612         + implement getcchar(), setcchar(), wadd_wchnstr() and related macros.
9613         + fix a syntax problem with do/if/while in PUTC macro (curses.priv.h).
9614
9615 20010616
9616         + add parentheses in macros for malloc in test.priv.h, fixes an
9617           expression in view.c (report by Wolfgang Gutjahr <gutw@knapp.co.at>).
9618         + add Caps.uwin, as an example.
9619         + change the way curses.h is generated, making the list of function
9620           key definitions extracted from the Caps file.
9621         + add #undef's before possible redefinition of ERR and OK in curses.h
9622         + modify logic in tic, toe, tput and tset which checks for basename of
9623           argv[0] to work properly on systems such as OS/2 which have
9624           case-independent filenames and/or program suffixes, e.g., ".ext".
9625
9626 20010609
9627         + add a configure check, if --enable-widec is specified, for putwc(),
9628           which may be in libutf8.
9629         + remove some unnecessary text from curs_extend.3x and
9630           default_colors.3x which caused man-db to make incorrect symbolic
9631           links (Debian #99550).
9632         + add configure check if cast for _IO_va_list is needed to compile
9633           C++ vscan code (Debian #97945).
9634         > several patches from Sven Verdoolaege:
9635         + correct code that used non-standard auto-initialization of a struct,
9636           which gcc allows (report by Larry Virden).
9637         + use putwc() in PUTC() macro.
9638         + make addstr() work for the special case where the codeset is
9639           non-stateful (eg. UTF-8), as well as stateful codesets.
9640
9641 20010603
9642         + correct loop expression in NEXT_CHAR macro for lib_addstr.c changes
9643           from 20010602 (report by Mike Castle).
9644
9645 20010602
9646         + modify mvcur() to avoid emitting newline characters when nonl() mode
9647           is set.  Normally this is not a problem since the actual terminal
9648           mode is set to suppress nl/crlf translations, however it is useful to
9649           allow the caller to manipulate the terminal mode to avoid staircasing
9650           effects after spawning a process which writes messages (for lynx
9651           2.8.4) -TD
9652         > several patches from Sven Verdoolaege <skimo@kotnet.org>:
9653         + remove redundant type-conversion in fifo_push()
9654         + correct definition of addwstr() macro in curses.h.in
9655         + remove _nc_utf8_outch()
9656         + rename most existing uses of CharOf() to UChar(), e.g., where it is
9657           used to prevent sign-extension in ctype macros.
9658         + change some chtype's to attr_t's where the corresponding variables
9659           are used to manipulate attributes.
9660         + UpdateAttr() was applied to both attributes (attr_t) and characters
9661           (chtype).  Modify macro and calls to it to make these distinct.
9662         + add CharEq() macro, use in places where wide-character configuration
9663           implementation uses a struct for cchar_t.
9664         + moved struct ldat into curses.priv.h, to hide implementation details.
9665         + change CharOf() macro to use it for masking A_CHARTEXT data from
9666           chtype's.
9667         + add L() macro to curses.priv.h, for long-character literals.
9668         + replace several assignments from struct ldat entries to chtype or
9669           char values with combinations of CharOf() and AttrOf() macros.
9670         + add/use intermediate ChAttrOf() and ChCharOf() macros where we know
9671           we are using chtype data.
9672         + add/use lowlevel attribute manipulation macros AddAttr(), RemAttr()
9673           and SetAttr().
9674         + add/use SetChar() macro, to change a cchar_t based on a character and
9675           attributes.
9676         + convert most internal use of chtype to NCURSES_CH_T, to simplify use
9677           of cchar_t for wide-character configuration.  Similarly, use ARG_CH_T
9678           where a pointer would be more useful.
9679         + add stubs for tracing cchar_t values.
9680         + add/use macro ISBLANK()
9681         + add/use constructors for cchar_t's: NewChar(), NewChar2().
9682         + add/use macros CHREF(), CHDEREF(), AttrOfD(), CharOfD() to facilitate
9683           passing cchar_t's by address.
9684         + add/use PUTC_DATA, PUTC() macros.
9685         + for wide-character configuration, move the window background data to
9686           the end of the WINDOW struct so that whether _XOPEN_SOURCE_EXTENDED
9687           is defined or not, the offsets in the struct will not change.
9688         + modify addch() to work with wide-characters.
9689         + mark several wide-character functions as generated in curses.h.in
9690         + implement wunctrl(), wadd_wch(), wbkgrndset(), wbkgrnd(),
9691           wborder_set() and waddnwstr().
9692
9693 20010526
9694         + add experimental --with-caps=XXX option to customize to similar
9695           terminfo database formats such as AIX 4.x
9696         + add Caps.aix4 as an example.
9697         + modify Caps to add columns for the the KEY_xxx symbols.
9698         + modify configure --with-widec to suppress overwrite of libcurses.so
9699           and curses.h
9700         + add checks to toe.c to avoid being confused by files and directories
9701           where we would expect the reverse, e.g., source-files in the
9702           top-level terminfo levels as is the case for AIX.
9703
9704 20010519
9705         + add top-level 'depend' rule for the C sources, assuming that the
9706           makedepend program is available.  As a side-effect, this makes
9707           the generated sources, as in "make sources" (prompted by a report
9708           by Mike Castle that "make -j" fails because the resulting parallel
9709           processes race to generate ncurses/names.c).
9710         + modify configure script so that --disable-overwrite option's action
9711           to add a symbolic link for libcurses applies to the static library as
9712           well as the shared library when both are configured (report by Felix
9713           Natter <f.natter@ndh.net>).
9714         + add ELKS terminfo entries (Federico Bianchi
9715           <bianchi@www.arte.unipi.it>)
9716         + add u6 (CSR) to Eterm (Michael Jennings).
9717
9718 20010512
9719         + modify test/ncurses.c to work with xterm-256color, which has fewer
9720           color pairs than colors*colors (report by David Ellement
9721           <ellement@sdd.hp.com>).
9722
9723 20010505
9724         + corrected screen.xterm-xfree86 entry.
9725         + update comment in Caps regarding IBM (AIX) function-key definitions.
9726
9727 20010421
9728         + modify c++/Makefile.in to link with libncurses++w.a when configured
9729           for wide-characters (patch by Sven Verdoolaege).
9730         + add check in _nc_trace_buf() to refrain from freeing a null pointer.
9731         + improve CF_PROG_INSTALL macro using CF_DIRNAME.
9732         + update config.guess, config.sub from autoconf 2.49e (alpha).
9733
9734 20010414
9735         + add secondary check in tic.c, similar_sgr() to see if the reason
9736           for mismatch was that the individual capabilities used a time-delay
9737           while sgr did not.  Used this to cleanup mismatches, e.g., in vt100,
9738           and remove time-delay from Apple_Terminal entries.
9739         + add Apple_Terminal terminfo entries (Benjamin C W Sittler
9740           <bsittler@iname.com>).
9741         + correct definitions of shifted editing keys for xterm-xfree86 -TD
9742         + fix a bug in test/bs.c from 20010407 (patch by Erik Sigra).
9743         + prevent relative_move() from doing an overwrite if it detects 8-bit
9744           characters when configured for UTF-8 (reported by Sven Verdoolaege
9745           <skimo@kotnet.org>).
9746
9747 20010407
9748         + add configure checks for strstream.h vscan function, and similar
9749           stdio-based function which may be used in C++ binding for gcc 3.0
9750           (reports by George Goffe, Lars Hecking, Mike Castle).
9751         + rewrite parts of configure.in which used changequote().  That feature
9752           is broken in the latest autoconf alphas (e.g., 2.49d).
9753         + add a missing pathname for ncurses_dll.h, needed when building in
9754           a directory outside the source tree (patch by Sven Verdoolaege
9755           <skimo@kotnet.org>).
9756         > fix 2 bugs in test/bs.c Erik Sigra <sigra@home.se>:
9757         + no ships were ever placed in the last row or in the last column.
9758           This made the game very easy to win, because you never had to waste
9759           any shots there, but the computer did.
9760         + the squares around a sunken ship that belonged to the player were not
9761           displayed as already hit by the computer, like it does for the
9762           player.
9763
9764 20010331
9765         + add some examples of customizing screen's terminfo:
9766           screen.xterm-xfree86, screen.xterm-r6, screen.teraterm -TD
9767         + modify screen's terminfo entry to match the khome/kend in screen
9768           3.09.08 (Debian #92215).
9769         + correct a memory leak in forms library (report by Stefan Vogtner
9770           <stefan@vogtner.de>) (patch by Juergen Pfeifer).
9771
9772 20010324
9773         + change symbols used to guard against repeated includes to begin
9774           consistently with "NCURSES_" rather than a leading underscore.  There
9775           are other symbols defined in the header files which begin with a
9776           leading underscore, but they are part of the legacy interface.
9777         + reorder includes in c++ binding so that rcs identifiers can be
9778           compiled-in.
9779         + add .cc.ii rule to c++ makefile, to get preprocessor output for
9780           debugging.
9781         + correct configure script handling of @keyword@ substitutions when the
9782           --with-manpage-renames option is given (cf: 20000715, fixes Debian
9783           #89939).
9784         + report stack underflow/overflow in tparm() when tic -cv option is
9785           given.
9786         + remove spurious "%|" operator from xterm-xfree86 terminfo entry,
9787           (reported by Adam Costello <amc@cs.berkeley.edu>, Debian #89222).
9788
9789 20010310
9790         + cleanup of newdemo.c, fixing some ambiguous expressions noted by gcc
9791           2.95.2, and correcting some conflicting color pair initializations.
9792         + add missing copyright notice for cursesw.h
9793         + review, make minor fixes for use of '::' for referring to C-language
9794           interface from C++ binding.
9795         + modify configure check for g++ library slightly to accommodate
9796           nonstandard version number, e.g., <vendor>-2.7 (report by Ronald Ho
9797           <rho@mipos2.intel.com>).
9798         + add configure check for c++ <sstream> header, replace hardcoded
9799           ifdef.
9800         + workaround for pre-release of gcc 3.0 libstdc++, which has dropped
9801           vscan from strstreambuf to follow standard, use wrapper for C vscanf
9802           instead (report by George Goffe <grgoffe@excite.com> and Matt Taggart
9803           <taggart@carmen.fc.hp.com>, fixes Debian .
9804
9805 20010303
9806         + modify interface of _nc_get_token() to pass 'silent' parameter to it,
9807           to make quieter loading of /etc/termcap (patch by Todd C Miller).
9808         + correct a few typos in curs_slk.3x and curs_outopts.3x manpages
9809           (patch by Todd C Miller).
9810
9811 20010224
9812         + compiler-warning fixes (reported by Nelson Beebe).
9813
9814 20010210
9815         + modify screen terminfo entry to use new 3.9.8 feature allowing xterm
9816           mouse controls -TD
9817
9818 20010203
9819         + broaden patterns used to match OS/2 EMX in configure script to cover
9820           variant used in newer config.guess/config.sub
9821         + remove changequote() calls from configure script, since this feature
9822           is broken in the autoconf 2.49c alpha, maintainers decline to fix.
9823         + remove macro callPutChar() from tty_update.c, since this is no longer
9824           needed (reported by Philippe Blain).
9825         + add a null-pointer check in tic.c to handle the case when the input
9826           file is really empty.  Modify the next_char() function in comp_scan.c
9827           to allow arbitrarily long lines, and incidentally supply a newline to
9828           files that do not end in a newline.  These changes improve tic's
9829           recovery from attempts to read binary files, e.g., its output from
9830           the terminfo database (reported by Bernhard Rosenkraenzer).
9831
9832 20010127
9833         + revert change to c++/demo.cc from 20001209, which changed definition
9834           of main() apparently to accommodate cygwin linker, but broke the demo
9835           program.
9836         + workaround for broken egcs 2.91.66 which calls member functions
9837           (i.e., lines() and colors() of NCursesWindow before calling its
9838           constructor.  Add calls to initialize() in a few constructors which
9839           did not do this already.
9840         + use the GNAT preprocessor to make the necessary switch between TRACE
9841           and NO_TRACE configurations (patch by Juergen Pfeifer).
9842         > patches by Bernhard Rosenkraenzer:
9843         + modify kterm terminfo entry to use SCS sequence to support alternate
9844           character set (it does not work with SI/SO).
9845         + --with-ospeed=something didn't work.  configure.in checked for a
9846           $enableval where it should check for $withval.  Also,
9847           ncurses/llib-lncurses still had a hardcoded short.
9848
9849 20010114
9850         + correction to my merge of Tom Riddle's patch that broke tic in some
9851           conditions (reported by Enoch Wexler <enoch@wexler.co.il>) -TD
9852
9853 20010113
9854         + modify view.c to test halfdelay().  Like other tests, this recognizes
9855           the 's' and space commands for stopping/starting polled input, shows
9856           a freerunning clock in the header.  If given a parameter to 's', that
9857           makes view.c use halfdelay() with that parameter rather than
9858           nodelay().
9859         + fix to allow compile with the experimental configure option
9860           --disable-hashmap.
9861         + modify postprocess_termcap() to avoid overwriting key_backspace,
9862           key_left, key_down when processing a non-base entry (report/patch by
9863           Tom Riddle).
9864         + modify _nc_wrap_entry(), adding option to reallocate the string
9865           table, needed in _nc_merge_entry() when merging termcap entries.
9866           (adapted from report/patch by Tom Riddle <ftr@oracom.com>).
9867         + modify a few configure script macros to keep $CFLAGS used only for
9868           compiler options, preprocessor options in $CPPFLAGS.
9869
9870 20001230
9871         + correct marker positions in lrtest.c after receiving a sigwinch.
9872         + fix ifdef's in ncurses.c to build against pre-5.2 for testing.
9873         + fixes to tclock for resizing behavior, redundant computation (report
9874           and patch by A M Kuchling <akuchlin@mems-exchange.org>).
9875
9876 20001216
9877         + improved scoansi terminfo entry -TD
9878         + modify configure script and makefile in Ada95/src to compile a stub
9879           for the trace functions when ncurses does not provide those.
9880
9881 20001209
9882         + add ncurses_dll.h and related definitions to support generating DLL's
9883           with cygwin (adapted from a patch by Charles Wilson
9884           <cwilson@ece.gatech.edu>, changed NCURSES_EXPORT macro to make it
9885           work with 'indent') -TD
9886
9887 20001202
9888         + correct prototypes for some functions in curs_termcap.3x, matching
9889           termcap.h, which matches X/Open.
9890         > patch by Juergen Pfeifer:
9891         + a revised version of the Ada enhancements sent in by "H.
9892           Nanosecond", aka Eugene V Melaragno <aldomel@ix.netcom.com>.  This
9893           patch includes
9894           - small fixes to the existing ncurses binding
9895           - addition of some more low-level functions to the binding, including
9896             termcap and terminfo functions
9897           - An Ada implementation of the "ncurses" test application originally
9898             written in C.
9899
9900 20001125
9901         + modify logic in lib_setup.c to allow either lines or columns value
9902           from terminfo to be used if the screen size cannot be determined
9903           dynamically rather than requiring both (patch by Ehud Karni
9904           <ehud@unix.simonwiesel.co.il>).
9905         + add check in lib_tgoto.c's is_termcap() function to reject null or
9906           empty strings (reported by Valentin Nechayev <netch@netch.kiev.ua> to
9907           freebsd-bugs).
9908         + add definition from configure script that denotes the path-separator,
9909           which is normally a colon.  The path-separator is a semicolon on
9910           OS/2 EMX and similar systems which may use a colon within pathnames.
9911         + alter logic to set default for --disable-overwrite option to set it
9912           to 'yes' if the --prefix/$prefix value is not /usr/local, thereby
9913           accommodating the most common cause of problems: gcc's nonstandard
9914           search rules.  Other locations such as /usr/local/ncurses will
9915           default to overwriting (report by Lars Hecking <lhecking@nmrc.ie>).
9916
9917 20001118
9918         + modify default for --disable-overwrite configure option to disable
9919           if the --prefix or $prefix value is not /usr.
9920         + add cygwin to systems for which ncurses is installed by default into
9921           /usr rather than /usr/local.
9922
9923 20001111
9924         + minor optimization in comp_error.c and lib_termname.c, using
9925           strncat() to replace strncpy() (patch by Solar Designer).
9926         + add a use_terminfo_vars() check for $HOME/.termcap, and check for
9927           geteuid() to use_terminfo_vars() (patch by Solar Designer
9928           <solar@false.com>).
9929         + improved cygwin terminfo entry, based on patch by
9930           <ernie_boyd@yahoo.com>.
9931         + modify _nc_write_entry() to allow for the possibility that linking
9932           aliases on a filesystem that ignores case would not succeed because
9933           the source and destination differ only by case, e.g., NCR260VT300WPP0
9934           on cygwin (report by Neil Zanella).
9935         + fix a typo in the curs_deleteln.3x man page (patch by Bernhard
9936           Rosenkraenzer <bero@redhat.de>).
9937
9938 20001104
9939         + add configure option --with-ospeed to assist packagers in transition
9940           to 5.3 change to ospeed type.
9941         + add/use CharOf() macro to suppress sign-extension of char type on
9942           platforms where this is a problem in ctype macros, e.g., Solaris.
9943         + change trace output to binary format.
9944         + correct a missing quote adjustment in CF_PATH_SYNTAX autoconf
9945           macro, for OS/2 EMX configuration.
9946         + rearrange a few configure macros, moving preprocessor options to
9947           $CPPFLAGS (a now-obsolete version of autoconf did not consistently
9948           use $CPPFLAGS in both the compile and preprocessor checks).
9949         + add a check in relative_move() to guard against buffer overflow in
9950           the overwrite logic.
9951
9952 20001028
9953         + add message to configure script showing g++ version.
9954         + resync config.guess, config.sub
9955         + modify lib_delwin.c, making it return ERR if the window did not exist
9956           (suggested by Neil Zanella).
9957         + add cases for FreeBSD 3.1 to tdlint and makellib scripts, used this
9958           to test/review ncurses library.  (Would use lclint, but it doesn't
9959           work).
9960         + reorganized knight.c to avoid forward references.  Correct screen
9961           updates when backtracking, especially to the first cell.  Add F/B/a
9962           commands.
9963
9964 20001021 5.2 release for upload to ftp.gnu.org
9965         + update generated html files from manpages.
9966         + modify dist.mk to use edit_man.sh to substitute autoconf'd variables
9967           in html manpages.
9968         + fix an uninitialized pointer in read_termcap.c (report by Todd C
9969           Miller, from report/patch by Philip Guenther <guenther@gac.edu>).
9970         + correct help-message and array limit in knight.c (patch by Brian
9971           Raiter <breadbox@muppetlabs.com>).
9972         > patch by Juergen Pfeifer:
9973         + fix to avoid warning by GNAT-3.13p about use of inconsistent casing
9974           for some identifiers defined in the standard package.
9975         + cosmetic change to forms/fty_enum.c
9976
9977 20001014
9978         + correct an off-by-one position in test/railroad.c which could cause
9979           wrapping at the right margin.
9980         + test/repair some issues with libtool configuration.  Make
9981           --disable-echo force libtool --silent.  (Libtool does not work for
9982           OS/2 EMX, works partly for SCO - libtool is still very specific to
9983           gcc).
9984         + change default of --with-manpage-tbl to "no", since for most of the
9985           platforms which do have tbl installed, the system "man" program
9986           understands how to run tbl automatically.
9987         + minor improvement to force_bar() in comp_parse.c (Bernhard
9988           Rosenkraenzer <bero@redhat.de>).
9989         + modify lib_tparm.c to use get_space() before writing terminating
9990           null character, both for consistency as well as to ensure that if
9991           save_char() was called immediately before, that the allocated memory
9992           is enough (patch by Sergei Ivanov).
9993         + add note about termcap ML capability which is duplicated between two
9994           different capabilities:  smgl and smglr (reported by Sergei Ivanov
9995           <svivanov@pdmi.ras.ru>).
9996         + correct parameter counts in include/Caps for dclk as well as some
9997           printer-specific capabilities: csnm, defc, scs, scsd, smgtp, smglp.
9998         > patch by Johnny C Lam <lamj@stat.cmu.edu>:
9999         + add support for building with libtool (apparently version 1.3.5,
10000           since old versions do not handle -L../lib), using new configure
10001           option --with-libtool.
10002         + add configure option --with-manpage-tbl, which causes the manpages to
10003           be preprocessed by tbl(1) prior to installation,
10004         + add configure option --without-curses-h, which causes the
10005           installation process to install curses.h as ncurses.h and make
10006           appropriate changes to headers and manpages.
10007
10008 20001009
10009         + correct order of options/parameters in run_tic.in invocation of tic,
10010           which did not work with standard getopt() (reported by Ethan
10011           Butterfield <primus@veris.org>).
10012         + correct logic for 'reverse' variable in lib_vidattr.c, which was
10013           setting it true without checking if newmode had A_REVERSE set, e.g.,
10014           using $TERM=ansi on OS/2 EMX (see 20000917).
10015         > patch by Todd C Miller:
10016         + add a few missing use_terminfo_vars() and fixes up _nc_tgetent().
10017           Previously, _nc_cgetset() would still get called on cp so the
10018           simplest thing is to set cp to NULL if !use_terminfo_vars().
10019         + added checks for an empty $HOME environment variable.
10020         > patches for OS/2 EMX (Ilya Zakharevich):
10021         + modify convert_configure.pl to support INSTALL.  Change compiler
10022           options in that script to use multithreading, needed for the mouse.
10023         + modify OS/2 mouse support, retrying as a 2-button mouse if code fails
10024           to set up a 3-button mouse.
10025         + improve code for OS/2 mouse support, using _nc_timed_wait() to
10026           replace select() call.
10027
10028 20001007
10029         + change type of ospeed variable back to short to match its use in
10030           legacy applications (reported by Andrey A Chernov).
10031         + add case to configure script for --enable-rpath on IRIX (patch by
10032           Albert Chin-A-Young).
10033         + minor fix to position_check() function, to ensure it gets the whole
10034           cursor report before decoding.
10035         + add configure option --disable-assumed-color, to allow pre-5.1
10036           convention of default colors used for color-pair 0 to be configured
10037           (see assume_default_colors()).
10038         + rename configure option --enable-hashmap --disable-hashmap, and
10039           reorder the configure options, splitting the experimental and
10040           development
10041         + add configure option --disable-root-environ, which tells ncurses to
10042           disregard $TERMINFO and similar environment variables if the current
10043           user is root, or running setuid/setgid (based on discussion with
10044           several people).
10045         + modified misc/run_tic.in to use tic -o, to eliminate dependency on
10046           $TERMINFO variable for installs.
10047         + add table entry for plab_norm to tput, so it passes in strings
10048           for that capability.
10049         + modify parse_format() in lib_tparm.c to ignore precision if it is
10050           longer than 10000 (report by Jouko Pynnonen).
10051         + rewrote limit checks in lib_mvcur.c using new functions
10052           _nc_safe_strcat(), etc.  Made other related changes to check lengths
10053           used for strcat/strcpy (report by Jouko Pynnonen
10054           <jouko@solutions.fi>).
10055
10056 20000930
10057         + modify several descriptions, including those for setaf, setab, in
10058           include/Caps to indicate that the entries are parameterized.  This
10059           information is used to tell which strings are translated when
10060           converting to termcap.  Fixes a problem where the generated termcap
10061           would contain a spurious "%p1" for the terminfo "%p1%d".
10062         + modify ld -rpath options (e.g., Linux, and Solaris) to use an
10063           absolute pathname for the build tree's lib directory (prompted by
10064           discussion with Albert Chin-A-Young).
10065         + modify "make install.man" and "make uninstall.man" to include tack's
10066           man-page.
10067         + various fixes for install scripts used to support configure --srcdir
10068           and --with-install-prefix (reported by Matthew Clarke
10069           <Matthew_Clarke@mindlink.bc.ca>).
10070         + make configure script checks on variables $GCC and $GXX consistently
10071           compare against 'yes' rather than test if they are nonnull, since
10072           either may be set to the corresponding name of the C or C++ compiler
10073           (report/patch by Albert Chin-A-Young).
10074
10075 20000923
10076         + modify rs2 capability in xterm-r6 and similar where cursor
10077           save/restore bracketed the sequence for resetting video attributes.
10078           The cursor restore would undo that (report by John Hawkinson
10079           <jhawk@MIT.EDU> (see NetBSD misc/11052)).
10080         + using parameter check added to tic, corrected 27 typos in
10081           terminfo.src -TD
10082         + modify tic to verify that its inputs are really files, in case
10083           someone tries to read a directory (or /dev/zero).
10084         + add a check for empty buffers returned by fgets() in comp_scan.c
10085           next_char() function, in case tic is run on a non-text file (fixes
10086           a core dump reported by Aaron Campbell <aaron@cs.dal.ca>).
10087         + add to railroad.c some code exercising tgoto(), providing an
10088           alternate form of display if the terminal supports cursor addressing.
10089         + split-out tgoto() again, this time into new file lib_tgoto.c, and
10090           implement a conventional BSD-style tgoto() which is used if the
10091           capability string does not contain terminfo-style padding or
10092           parameters (requested by Andrey A Chernov).
10093         + add check to tic which reports capabilities that do not reference
10094           the expected number of parameters.
10095         + add error checking to infocmp's -v and -m options to ensure that
10096           the option value is indeed a number.
10097         + some cleanup of logic in _nc_signal_handler() to verify if SIGWINCH
10098           handler is setup.  Separated the old/new sigaction data for SIGTSTP
10099           from the other signals.
10100
10101 20000917
10102         + add S0, E0 extensions to screen's terminfo entry, which is another
10103           way to solve the misconfiguration issue -TD
10104         + completed special case for tgoto from 20000916
10105
10106 20000916
10107         + update xterm terminfo entries to match XFree86 xterm patch #146 -TD
10108         + add Matrix Orbital terminfo entries (from Eric Z Ayers
10109           <eric@ale.org>).
10110         + add special case to lib_tparm.c to allow 'screen' program to use a
10111           termcap-style parameter "%." to tgoto() for switching character sets.
10112         + use LN_S substitution in run_tic.in, to work on OS/2 EMX which has
10113           no symbolic links.
10114         + updated notes in README.emx regarding autoconf patches.
10115         + replace a lookup table in lib_vidattr.c used to decode no_color_video
10116           with a logic expression (suggested by Philippe Blain).
10117         + add a/A toggle to ncurses.c 'b' test, which clears/sets alternate
10118           character set attribute from the displayed text.
10119         + correct inequality in parameter analysis of rewritten lib_tparm.c
10120           which had the effect of ignoring p9 in set_attributes (sgr), breaking
10121           alternate character set (reported by Piotr Majka <charvel@link.pl>).
10122         + correct ifdef'ing for GCC_PRINTF, GCC_SCANF which would not compile
10123           with Sun WorkShop compilers since these tokens were empty (cf:
10124           20000902, reported by Albert Chin-A-Young).
10125
10126 20000909
10127         + correct an uninitialized parameter to open_tempfile() in tic.c which
10128           made "tic -I" give an ambiguous error message about tmpnam.
10129         + add special case in lib_vidattr.c to reset underline and standout for
10130           devices that have no sgr0 defined (patch by Don Lewis
10131           <Don.Lewis@tsc.tdk.com>).  Note that this will not work for bold
10132           mode, since there is no exit-bold-mode capability.
10133         + improved patch for Make_Enum_Type (patch by Juergen Pfeifer).
10134         + modify tparm to disallow arithmetic on strings, analyze the varargs
10135           list to read strings as strings and numbers as numbers.
10136         + modify tparm's internal function spop() to treat a null pointer as
10137           an empty string.
10138         + modify tput program so it can be renamed or invoked via a link as
10139           'reset' or 'init', producing the same effect as 'tput reset' or 'tput
10140           init'.
10141         + add private entrypoint _nc_basename(), use to consolidate related
10142           code in progs, as well as accommodating OS/2 EMX pathnames.
10143         + remove NCURSES_CONST line from edit_cfg.sh to compensate for its
10144           removal (except via AC_SUBST) from configure.in, making
10145           --enable-const work again (reported by Juergen Pfeifer).
10146         + regen'd configure to pick up "hpux*" change from 20000902.
10147
10148 20000902
10149         + modify tset.c to check for transformed "reset" program name, if any.
10150         + add a check for null pointer in Make_Enum_Type() (reported by Steven
10151           W Orr <steveo@world.std.com>).
10152         + change functions _nc_parse_entry() and postprocess_termcap() to avoid
10153           using strtok(), because it is non-reentrant (reported by Andrey A
10154           Chernov <ache@nagual.pp.ru>).
10155         + remove "hpux10.*" case from CF_SHARED_OPTS configure script macro.
10156           This differed from the "hpux*" case by using reversed symbolic
10157           links, which made the 5.1 version not match the configuration of
10158           5.0 shared libraries (reported by Albert Chin-A-Young).
10159         + correct a dependency in Ada95/src/Makefile.in which prevented
10160           building with configure --srcdir (patch by H Nanosecond
10161           <aldomel@ix.netcom.com>).
10162         + modify ifdef's in curses.h.in to avoid warning if GCC_PRINTF or
10163           GCC_SCANF was not previously defined (reported by Pavel Roskin
10164           <proski@gnu.org>).
10165         + add MKncurses_def.sh to generate fallback definitions for
10166           ncurses_cfg.h, to quiet gcc -Wundef warnings, modified ifdef's in
10167           code to consistently use "#if" rather than "#ifdef".
10168
10169 20000826
10170         + add QNX qansi entries to terminfo -TD
10171         + add os2 entry to misc/emx.src (<jmcoopr@webmail.bmi.net>).
10172         + add configure option --with-database to allow specifying a different
10173           terminfo source-file to install.  On OS/2 EMX, this defaults to
10174           misc/emx.src
10175         + change misc/run_tic.sh to derive it from misc/run_tic.in, to simplify
10176           setting .exe extension on OS/2 EMX.
10177         + add .exe extension in Ada95/gen/Makefile.in,
10178           Ada95/samples/Makefile.in, for OS/2 EMX (reported by
10179           <jmcoopr@webmail.bmi.net>).
10180         + add configure check for filesystems (such as OS/2 EMX) which do not
10181           distinguish between upper/lowercase filenames, use this to fix tags
10182           rules in makefiles.
10183         + initialize fds[] array to 0's in _nc_timed_wait(); apparently poll()
10184           only sets the revents members of that array when there is activity
10185           corresponding to the related file (report by Glenn Cooper
10186           <gcooper@qantas.com.au>, using Purify on Solaris 5.6).
10187         + change configure script to use AC_CANONICAL_SYSTEM rather than
10188           AC_CANONICAL_HOST, which means that configure --target will set
10189           a default program-prefix.
10190         + add note on cross-compiling to INSTALL (which does not rely on the
10191           AC_CANONICAL_* macros).
10192
10193 20000819
10194         + add cases for EMX OS/2 to config.guess, config.sub
10195         + new version of config.guess, config.sub from lynx 2.8.4dev.7
10196         + add definitions via transform.h to allow tic and tput to check for
10197           the transformed aliases rather than the original infotocap, etc.
10198         + simplify transform-expressions in progs/Makefile.in, make the
10199           uninstall rule work for transformed program names.
10200         + change symbol used by --install-prefix configure option from
10201           INSTALL_PREFIX to DESTDIR (the latter has become common usage
10202           although the name is misleading).
10203         + modify programs to use curses_version() string to report the version
10204           of ncurses with which they are compiled rather than the
10205           NCURSES_VERSION string.  The function returns the patch level in
10206           addition to the major and minor version numbers.
10207
10208 20000812
10209         + modify CF_MAN_PAGES configure macro to make transformed program names
10210           a parameter to that macro rather than embedding them in the macro.
10211         + newer config.guess, config.sub (reference version used in lynx
10212           2.8.4dev.7).
10213         + add configure option --with-default-terminfo-dir=DIR to allow
10214           specifying the default terminfo database directory (request by Albert
10215           Chin-A-Young).
10216         + minor updates for terminfo.src from FreeBSD termcap change-history.
10217         + correct notes in README and INSTALL regarding documentation files
10218           that were moved from misc directory to doc (report by Rich Kulawiec
10219           <rsk@gsp.org>).
10220         + change most remaining unquoted parameters of 'test' in configure
10221           script to use quotes, for instance fixing a problem in the
10222           --disable-database option (reported by Christian Mondrup
10223           <scancm@biobase.dk>).
10224         + minor adjustments to work around some of the incompatibilities/bugs
10225           in autoconf 2.29a alpha.
10226         + add -I/usr/local/include when --with-ncurses option is used in
10227           test/configure script.
10228         + correct logic in adjust_cancels(), which did not check both
10229           alternatives when reclassifying an extended name between boolean,
10230           number and string, causing an infinite loop in tic.
10231
10232 20000730
10233         + correct a missing backslash in curses.priv.h
10234
10235 20000729
10236         + change handling of non_dest_scroll_region in tty_update.c to clear
10237           text after it is shifted in rather than before shifting out.  Also
10238           correct row computation (reported by Ruediger Kuhlmann
10239           <uck4@rz.uni-karlsruhe.de>).
10240         + add/use new trace function to display chtype values from winch() and
10241           getbkgd().
10242         + add trace mask TRACE_ATTRS, alter several existing _tracef calls that
10243           trace attribute changes under TRACE_CALLS to use this.
10244         + modify MKlib_gen.sh so that functions returning chtype will call
10245           returnChar().
10246         + add returnChar() trace, for functions returning chtype.
10247         + change indent.pro to line up parenthesis.
10248
10249 20000722
10250         + fix a heap problem with the c++ binding (report by
10251           <alexander_liberson@ninewest.com>, patch by Juergen Pfeifer).
10252         + minor adjustment to ClrToEOL() to handle an out-of-bounds parameter.
10253         + modify the check for big-core to force a couple of memory accesses,
10254           which may work as needed for older/less-capable machines (if not,
10255           there's still the explicit configure option).
10256         > fixes based on diff's for Amiga and BeOS found at
10257           http://www.mathematik.uni-karlsruhe.de/~kuhlmann/cross/ncurses/
10258         + alter definition of NCURSES_CONST to make it non-empty.
10259         + add amiga-vnc terminfo entry.
10260         + redefine 'TEXT' in menu.h for AMIGA, since it is reported to have
10261           an (unspecified) symbol conflict.
10262         + replaced case-statement in _nc_tracebits() for CSIZE with a table to
10263           simplify working around implementations that define random
10264           combinations of the related macros to zero.
10265         + modify configure test for tcgetattr() to allow for old
10266           implementations, e.g., on BeOS, which only defined it as a macro.
10267         > patches by Bruno Haible:
10268         + when checking LC_ALL/LC_CTYPE/LANG environment variables for UTF-8
10269           locale, ignore those which are set to an empty value, as per SUSV2.
10270         + encode 0xFFFD in UTF-8 with 3 bytes, not 2.
10271         + modify _nc_utf8_outch() to avoid sign-extension when checking for
10272           out-of-range value.
10273
10274 20000715
10275         + correct manlinks.sed script to avoid using ERE "\+", which is not
10276           understood by older versions of sed (patch by Albert Chin-A-Young).
10277         + implement configure script options that transform installed program
10278           names, e.g., --program-prefix, including the manpage names and cross
10279           references (patch by Albert Chin-A-Young <china@thewrittenword.com>).
10280         + correct several mismatches between manpage filename and ".TH"
10281           directives, renaming dft_fgbg.3x to default_colors.3x and
10282           menu_attribs.3x to menu_attributes.3x (report by Todd C Miller).
10283         + correct missing includes for <string.h> in several places, including
10284           the C++ binding.  This is not noted by gcc unless we use the
10285           -fno-builtin option (reported by Igor Schein <igor@txc.com>).
10286         + modified progs/tset.c and tack/sysdep.c to build with sgttyb
10287           interface if neither termio or termios is available.  Tested this
10288           with FreeBSD 2.1.5 (which does have termios - but the sgttyb does
10289           work).
10290
10291 20000708 5.1 release for upload to ftp.gnu.org
10292         + document configure options in INSTALL.
10293         + add man-page for ncurses trace functions.
10294         + correct return value shown in curs_touch.3x for is_linetouched() and
10295           is_wintouched(), in curs_initscr.3x for isendwin(), and in
10296           curs_termattr.3x for has_ic() and has_il().
10297         + add prototypes for touchline() and touchwin(), adding them to the
10298           list of generated functions.
10299         + modify fifo_push() to put ERR into the fifo just like other values to
10300           return from wgetch().  It was returning without doing that, making
10301           end-of-file condition incorrectly return a 0 (reported by Todd C
10302           Miller).
10303         + uncomment CC_SHARED_OPTS for progs and tack (see 971115), since they
10304           are needed for SCO OpenServer.
10305         + move _nc_disable_period from free_ttype.c to comp_scan.c to appease
10306           dynamic loaders on SCO and IRIX64.
10307         + add "-a" option to test/ncurses.c to invoke assume_default_colors()
10308           for testing.
10309         + correct assignment in assume_default_colors() which tells ncurses
10310           whether to use default colors, or the assumed ones (reported by Gary
10311           Funck <gary@Intrepid.Com>).
10312         + review/correct logic in mk-1st.awk for making symbolic links for
10313           shared libraries, in particular for FreeBSD, etc.
10314         + regenerate misc/*.def files for OS/2 EMX dll's.
10315         + correct quoting of values for CC_SHARED_OPTS in aclocal.m4 for
10316           cases openbsd2*, openbsd*, freebsd* and netbsd* (patch by Peter
10317           Wemm) (err in 20000610).
10318         + minor updates to release notes, as well as adding/updating URLs for
10319           examples cited in announce.html
10320         > several fixes from Philippe Blain <philippe.blain2@freesbee.fr>:
10321         + correct placement of ifdef for NCURSES_XNAMES in function
10322           _nc_free_termtype(), fixes a memory leak.
10323         + add a call to _nc_synchook() to the end of function whline() like
10324           that in wvline() (difference was in 1.9.4).
10325         + make ClearScreen() a little faster by moving two instances of
10326           UpdateAttr() out of for-loops.
10327         + simplify ClrBottom() by eliminating the tstLine data, using for-loops
10328           (cf: 960428).
10329
10330 20000701 pre-release
10331         + change minor version to 1, i.e., ncurses 5.1
10332         + add experimental configure option --enable-colorfgbg to check for
10333           $COLORFGBG variable as set by rxvt/aterm/Eterm.
10334         + add Eterm terminfo entry (Michael Jennings <mej@valinux.com>).
10335         + modify manlinks.sed to pick aliases from the SYNOPSIS section, and
10336           several manpages so manlinks.sed can find aliases for creating
10337           symbolic links.
10338         + add explanation to run_tic.sh regarding extended terminal
10339           capabilities.
10340         + change message format for edit_cfg.sh, since some people interpret
10341           it as a warning.
10342         + correct unescaped '$' in sysv5uw7*|unix_sv* rule for CF_SHARED_OPTS
10343           configure macro (report by Thanh Ma <Thanh.Ma@casi-rusco.com>).
10344         + correct logic in lib_twait.c as used by lib_mouse.c for GPM mouse
10345           support when poll() is used rather than select() (prompted by
10346           discussion with David Allen <DAllen24@aol.com>).
10347
10348 20000624 pre-release
10349         + modify TransformLine() to check for cells with different color pairs
10350           that happen to render the same display colors.
10351         + apply $NCURSES_NO_PADDING to cost-computation in mvcur().
10352         + improve cost computation in PutRange() by accounting for the use
10353           of parm_right_cursor in mvcur().
10354         + correct cost computation in EmitRange(), which was not using the
10355           normalized value for cursor_address.
10356         + newer config.guess, config.sub (reference version used in TIN 1.5.6).
10357
10358 20000617
10359         + update config.guess, config.sub (reference version used in PCRE 3.2).
10360         + resync changes to gnathtml against version 1.22, regenerated html
10361           files under doc/html/ada using this (1.22.1.1).
10362         + regenerated html files under doc/html/man after correcting top and
10363           bottom margin options for man2html in dist.mk
10364         + minor fixes to test programs ncurses 'i' and testcurs program to make
10365           the subwindow's background color cover the subwindow.
10366         + modify configure script so AC_MSG_ERROR is temporarily defined to a
10367           warning in AC_PROG_CXX to make it recover from a missing C++ compiler
10368           without requiring user to add --without-cxx option (adapted from
10369           comment by Akim Demaille <akim@epita.fr> to autoconf mailing list).
10370         + modify headers.sh to avoid creating temporary files in the build
10371           directory when installing headers (reported by Sergei Pokrovsky
10372           <pok@nbsp.nsk.su>)
10373
10374 20000610
10375         + regenerated the html files under doc/html/ada/files and
10376           doc/html/ada/funcs with a slightly-improved gnathtml.
10377         + add kmous capability to linux terminfo entry to allow it to use
10378           xterm-style events provided by gpm patch by Joerg Schoen.
10379         + make the configure macro CF_SHARED_OPTS a little smarter by testing
10380           if -fPIC is supported by gcc rather than -fpic.  The former option
10381           allows larger symbol tables.
10382         + update config.guess and config.sub (patches by
10383           Kevin Buettner <kev@primenet.com> (for elf64_ia64),
10384           Bernd Kuemmerlen <bkuemmer@mevis.de> (for MacOS X)).
10385         + add warning for 'tic -cv' about use of '^?' in terminfo source, which
10386           is an extension.
10387
10388 20000527
10389         + modify echo() behavior of getch() to match Solaris curses for
10390           carriage return and backspace (reported by Neil Zanella).
10391         + change _nc_flush() to a function.
10392         + modify delscreen() to check if the output stream has been closed, and
10393           if so, free the buffer allocated for setbuf (this provides an
10394           ncurses-specific way to avoid a memory leak when repeatedly calling
10395           newterm reported by Chipp C <at_1@zdnetonebox.com>).
10396         + correct typo in curs_getch.3x manpage regarding noecho (reported by
10397           David Malone <dwmalone@maths.tcd.ie>).
10398         + add a "make libs" rule.
10399         + make the Ada95 interface build with configure --enable-widec.
10400         + if the configure --enable-widec option is given, append 'w' to names
10401           of the generated libraries (e.g., libncursesw.so) to avoid conflict
10402           with existing ncurses libraries.
10403
10404 20000520
10405         + modify view.c to make a rudimentary viewer of UTF-8 text if ncurses
10406           is configured with the experimental wide-character support.
10407         + add a simple UTF-8 output driver to the experimental wide-character
10408           support.  If any of the environment variables LC_ALL, LC_CTYPE or
10409           LANG contain the string "UTF-8", this driver will be used to
10410           translate the output to UTF-8.  This works with XFree86 xterm.
10411         + modify configure script to allow building shared libraries on BeOS
10412           (from a patch by Valeriy E Ushakov).
10413         + modify lib_addch.c to allow repeated update to the lower-right
10414           corner, rather than displaying only the first character written until
10415           the cursor is moved.  Recent versions of SVr4 curses can update the
10416           lower-right corner, and behave this way (reported by Neil Zanella).
10417         + add a limit-check in _nc_do_color(), to avoid using invalid color
10418           pair value (report by Brendan O'Dea <bod@compusol.com.au>).
10419
10420 20000513
10421         + the tack program knows how to use smcup and rmcup but the "show caps
10422           that can be tested" feature did not reflect this knowledge.  Correct
10423           the display in the menu tack/test/edit/c (patch by Daniel Weaver).
10424         + xterm-16color does allow bold+colors, removed ncv#32 from that
10425           terminfo entry.
10426
10427 20000506
10428         + correct assignment to SP->_has_sgr_39_49 in lib_dft_fgbg.c, which
10429           broke check for screen's AX capability (reported by Valeriy E Ushakov
10430           <uwe@ptc.spbu.ru>).
10431         + change man2html rule in dist.mk to workaround bug in some
10432           man-programs that ignores locale when rendering hyphenation.
10433         + change web- and ftp-site to dickey.his.com
10434
10435 20000429
10436         + move _nc_curr_token from parse_entry.c to comp_scan.c, to work around
10437           problem linking tack on MacOS X DP3.
10438         + include <sys/time.h> in lib_napms.c to compile on MacOS X DP3
10439           (reported by Gerben Wierda <wierda@holmes.nl>).
10440         + modify lib_vidattr.c to check for ncv fixes when pair-0 is not
10441           default colors.
10442         + add -d option to ncurses.c, to turn on default-colors for testing.
10443         + add a check to _nc_makenew() to ensure that newwin() and newpad()
10444           calls do not silently fail by passing too-large limits.
10445         + add symbol NCURSES_SIZE_T to use rather than explicit 'short' for
10446           internal window and pad sizes.  Note that since this is visible in
10447           the WINDOW struct, it would be an ABI change to make this an 'int'
10448           (prompted by a question by Bastian Trompetter
10449           <btrompetter@firemail.de>, who attempted to create a 96000-line pad).
10450
10451 20000422
10452         + add mgterm terminfo entry from NetBSD, minor adjustments to sun-ss5,
10453           aixterm entries -TD
10454         + modify tack/ansi.c to make it more tolerant of bad ANSI replies.  An
10455           example of an illegal ANSI resonse can be found using Microsoft's
10456           Telnet client.  A correct display can be found using a VT-4xx
10457           terminal or XFree86 xterm with:
10458                 XTerm*VT100*decTerminalID:  450
10459           (patch by Daniel Weaver).
10460         + modify gdc.c to recognize 'q' for quit, 's' for single-step and ' '
10461           for resume.  Add '-n' option to force gdc's standard input to
10462           /dev/null, to both illustrate the use of newterm() for specifying
10463           alternate inputs as well as for testing signal handling.
10464         + minor fix for configure option --with-manpage-symlinks, for target
10465           directories that contain a period ('.') (reported by Larry Virden).
10466
10467 20000415
10468         + minor additions to beterm entry (feedback from Rico Tudor) -TD
10469         + corrections/updates for some IBM terminfo entries -TD
10470         + modify _nc_screen_wrap() so that when exiting curses mode with
10471           non-default colors, the last line on the screen will be cleared to
10472           the screen's default colors (request by Alexander V Lukyanov).
10473         + modify ncurses.c 'r' example to set nonl(), allowing control/M to be
10474           read for demonstrating the REQ_NEW_LINE operation (prompted by a
10475           question by Tony L Keith <tlkeith@keithconsulting.com>).
10476         + modify ncurses.c 'r' example of field_info() to work on Solaris 2.7,
10477           documented extension of ncurses which allows a zero pointer.
10478         + modify fmt_complex() to avoid buffer overflow in case of excess
10479           recursion, and to recognize "%e%?" as a synonym for else-if, which
10480           means that it will not recur for that special case.
10481         + add logic to support $TERMCAP variable in case the USE_GETCAP symbol
10482           is defined (patch by Todd C Miller).
10483         + modify one of the m4 files used to generate the Ada95 sources,
10484           to avoid using the token "symbols" (patch by Juergen Pfeifer).
10485
10486 20000408
10487         + add terminfo entries bsdos-pc-m, bsdos-pc-mono (Jeffrey C Honig)
10488         + correct spelling error in terminfo entry name:  bq300-rv was given as
10489           bg300-rv in esr's version.
10490         + modify redrawwin() macro so its parameter is fully parenthesized
10491           (fixes Debian #61088).
10492         + correct formatting error in dump_entry() which set incorrect column
10493           value when no newline trimming was needed at the end of an entry,
10494           before appending "use=" clauses (cf: 960406).
10495
10496 20000401
10497         + add configure option --with-manpage-symlinks
10498         + change unctrl() to render C1 characters (128-159) as ~@, ~A, etc.
10499         + change makefiles so trace() function is provided only if TRACE is
10500           defined, e.g., in the debug library.  Modify related calls to
10501           _tracechar() to use unctrl() instead.
10502
10503 20000325
10504         + add screen's AX capability (for ECMA SGR 39 and 49) to applicable
10505           terminfo entries, use presence of this as a check for a small
10506           improvement in setting default colors.
10507         + improve logic in _nc_do_color() implementing assume_default_colors()
10508           by passing in previous color pair info to eliminate redundant call to
10509           set_original_colors().  (Part of this is from a patch by Alexander
10510           V Lukyanov).
10511         + modify warning in _nc_trans_string() about a possibly too-long string
10512           to do this once only rather than for each character past the
10513           threshold (600).  Change interface of _nc_trans_string() to allow
10514           check for buffer overflow.
10515         + correct use of memset in _nc_read_entry_source() to initialize ENTRY
10516           struct each time before reading new data into it, rather than once
10517           per loop (cf:  990301).  This affects multi-entry in-core operations
10518           such as "infocmp -Fa".
10519
10520 20000319
10521         + remove a spurious pointer increment in _nc_infotocap() changes from
10522           20000311.  Add check for '.' in format of number, since that also
10523           is not permitted in termcap.
10524         + correct typo in rxvt-basic terminfo from temporary change made while
10525           integrating 20000318.
10526
10527 20000318
10528         + revert part of the vt220 change (request by Todd C Miller).
10529         + add ansi-* terminfo entries from ESR's version.
10530         + add -a option to tic and infocmp, which retains commented-out
10531           capabilities during source translation/comparison, e.g., captoinfo
10532           and infotocap.
10533         + modify cardfile.c to display an empty card if no input data file is
10534           found, fixes a core dump in that case (reported by Bruno Haible).
10535         + correct bracketing in CF_MATH_LIB configure macro, which gave wrong
10536           result for OS/2 EMX.
10537         + supply required parameter for _nc_resolve_uses() call in
10538           read_termcap.c, overlooked in 20000311 (reported by Todd C Miller).
10539         > patches by Bruno Haible <haible@ilog.fr>:
10540         + fix a compiler warning in fty_enum.c
10541         + correct LIB_PREFIX expression for DEPS_CURSES in progs, tack
10542           makefiles, which resulted in redundant linking (cf: 20000122).
10543
10544 20000311
10545         + make ifdef's for BROKEN_LINKER consistent (patch by Todd C Miller).
10546         + improved tack/README (patch by Daniel Weaver).
10547         + modify tput.c to ensure that unspecified parameters are passed to
10548           tparm() as 0's.
10549         + add a few checks in infocmp to guard against buffer overflow when
10550           displaying string capabilities.
10551         + add check for zero-uses in infocmp's file_comparison() function
10552           before calling _nc_align_termtype().  Otherwise one parameter is
10553           indexed past the end of the uses-array.
10554         + add an option -q to infocmp to specify the less verbose output,
10555           keeping the existing format as the default, though not retaining the
10556           previous behavior that made the -F option compare each entry to
10557           itself.
10558         + adapted patch by ESR to make infocmp -F less verbose -TD
10559           (the submitted patch was unusable because it did not compile
10560           properly)
10561           + modify write_entry.c to ensure that absent or cancelled booleans
10562             are written as FALSE, for consistency with infocmp which now
10563             assumes this.  Note that for the small-core configuration, tic
10564             may not produce the same result as before.
10565           + change some private library interfaces used by infocmp, e.g.,
10566             _nc_resolve_uses().
10567           + add a check in _nc_infotocap() to ensure that cm-style capabilities
10568             accept only %d codes when converting the format from terminfo to
10569             termcap.
10570           + modify ENTRY struct to separate the data in 'parent' into the name
10571             and link values (the original idea to merge both into 'parent' was
10572             not good).
10573           + discard repair_acsc(tterm);
10574         > patch by Juergen Pfeifer:
10575         + drop support for gnat 3.10
10576         + move generated documentation and html files under ./doc directory,
10577           adding makefile rules for this to dist.mk
10578
10579 20000304
10580         + correct conflicting use of tparm() in 20000226 change to tic, which
10581           made it check only one entry at a time.
10582         + fix errors in ncurses-intro.html and hackguide.html shown by Dave
10583           Raggett's tidy.
10584         + make the example in ncurses-intro.html do something plausible, and
10585           corrected misleading comment (reported by Neil Zanella).
10586         + modify pnoutrefresh() to set newscr->_leaveok as wnoutrefresh() does,
10587           to fix a case where the cursor position was not updated as in
10588           Solaris  (patch by David Mosberger <davidm@hpl.hp.com>).
10589         + add a limit-check for wresize() to ensure that a subwindow does not
10590           address out of bounds.
10591         + correct offsets used for subwindows in wresize() (patch by Michael
10592           Andres <ma@suse.de>).
10593         + regenerate html'ized manual pages with man2html 3.0.1 (patch by
10594           Juergen Pfeifer).  This generated a file with a space in its name,
10595           which I removed.
10596         + fix a few spelling errors in tack.
10597         + modify tack/Makefile.in to match linker options of progs/Makefile.in;
10598           otherwise it does not build properly for older HPUX shared library
10599           configurations.
10600         + add several terminfo entries from esr's "11.0".
10601
10602 20000226
10603         + make 'tput flash' work properly for xterm by flushing output in
10604           delay_output() when using napms(), and modifying xterm's terminfo to
10605           specify no padding character.  Otherwise, xterm's reported baud rate
10606           can mislead ncurses into producing too few padding characters
10607           (Debian #58530).
10608         + add a check to tic for consistency between sgr and the separate
10609           capabilities such as smso, use this to check/correct several
10610           terminfo entries (Debian #58530).
10611         + add a check to tic if cvvis is the same as cnorm, adjusted several
10612           terminfo entries to remove the conflict (Debian #58530).
10613         + correct prototype shown in attr_set()/wattr_set() manpages (fixes
10614           Debian #53962).
10615         + minor clarification for curs_set() and leaveok() manpages.
10616         + use mkstemp() for creating temporary file for tic's processing of
10617           $TERMCAP contents (fixes Debian #56465).
10618         + correct two errors from integrating Alexander's changes:  did not
10619           handle the non-bce case properly in can_erase_with() (noted by
10620           Alexander), and left fg/bg uninitialized in the pair-zero case of
10621           _nc_do_color() (reported by Dr Werner Fink <werner@suse.de> and
10622           Ismael Cordeiro <ismael@cordeiro.com>).
10623
10624 20000219
10625         + store default-color code consistently as C_MASK, even if given as
10626           -1 for convenience (adapted from patches by Alexander V Lukyanov).
10627         > patches by Alexander V Lukyanov:
10628         + change can_clear_with() macro to accommodate logic for
10629           assume_default_colors(), making most of the FILL_BCE logic
10630           unnecessary.  Made can_clear_with() an inline function to make it
10631           simpler to read.
10632
10633 20000212
10634         + corrected form of recent copyright dates.
10635         + minor corrections to xterm-xf86-v333 terminfo entry -TD
10636         > patches by Alexander V Lukyanov:
10637         + reworded dft_fgbg.3x to avoid assuming that the terminal's default
10638           colors are white on black.
10639         + fix initialization of tstLine so that it is filled with current blank
10640           character in any case.  Previously it was possible to have it filled
10641           with old blank.  The wrong over-optimization was introduced in 991002
10642           patch.  (it is not very critical as the only bad effect is not using
10643           clr_eos for clearing if blank has changed).
10644
10645 20000205
10646         + minor corrections/updates to several terminfo entries: rxvt-basic,
10647           vt520, vt525, ibm5151, xterm-xf86-v40 -TD
10648         + modify ifdef's for poll() to allow it to use <sys/poll.h>, thereby
10649           allowing poll() to be used on Linux.
10650         + add CF_FUNC_POLL macro to check if poll() is able to select from
10651           standard input.  If not we will not use it, preferring select()
10652           (adapted from patch by Michael Pakovic <mpakovic@fdn.com>).
10653         + update CF_SHARED_OPTS macro for SCO Unixware 7.1 to allow building
10654           shared libraries (reported/tested by Thanh <thanhma@mediaone.net>).
10655         + override $LANGUAGE in build to avoid incorrect ordering of keynames.
10656         + correct CF_MATH_LIB parameter, must be sin(x), not sqrt(x).
10657
10658 20000122
10659         + resync CF_CHECK_ERRNO and CF_LIB_PREFIX macros from tin and xterm -TD
10660         + modify CF_MATH_LIB configure macro to parameterize the test function
10661           used, for reuse in dialog and similar packages.
10662         + correct tests for file-descriptors in OS/2 EMX mouse support.  A
10663           negative value could be used by FD_SET, causing the select() call
10664           to wait indefinitely.
10665
10666 20000115
10667         + additional fixes for non-bce terminals (handling of delete_character)
10668           to work when assume_default_colors() is not specified.
10669         + modify warning message from _nc_parse_entry() regarding extended
10670           capability names to print only if tic/infocmp/toe have the -v flag
10671           set, and not at all in ordinary user applications.  Otherwise, this
10672           warning would be shown for screen's extended capabilities in programs
10673           that use the termcap interface (reported by Todd C Miller).
10674         + modify use of _nc_tracing from programs such as tic so their debug
10675           level is not in the same range as values set by trace() function.
10676         + small panel header cleanup (patch by Juergen Pfeifer).
10677         + add 'railroad' demo for termcap interface.
10678         + modify 'tic' to write its usage message to stderr (patch by Todd C
10679           Miller).
10680
10681 20000108
10682         + add prototype for erase() to curses.h.in, needed to make test
10683           programs build with c++/g++.
10684         + add .c.i and .c.h suffix rules to generated makefiles, for debugging.
10685         + correct install rule for tack.1; it assumed that file was in the
10686           current directory (reported by Mike Castle <dalgoda@ix.netcom.com>).
10687         + modify terminfo/termcap translation to suppress acsc before trying
10688           sgr if the entry would be too large (patch by Todd C Miller).
10689         + document a special case of incompatibility between ncurses 4.2 and
10690           5.0, add a section for this in INSTALL.
10691         + add TRACE_DATABASE flag for trace().
10692
10693 20000101
10694         + update mach, add mach-color terminfo entries based on Debian diffs
10695           for ncurses 5.0 -TD
10696         + add entries for xterm-hp, xterm-vt220, xterm-vt52 and xterm-noapp
10697           terminfo entries -TD
10698         + change OTrs capabilities to rs2 in terminfo.src -TD
10699         + add obsolete and extended capabilities to 'screen' terminfo -TD
10700         + corrected conversion from terminfo rs2 to termcap rs (cf: 980704)
10701         + make conversion to termcap ug (underline glitch) more consistently
10702           applied.
10703         + fix out-of-scope use of 'personal[]' buffer in 'toe' (this error
10704           was in the original pre-1.9.7 version, when $HOME/.terminfo was
10705           introduced).
10706         + modify 'toe' to ignore terminfo directories to which it has no
10707           permissions.
10708         + modify read_termtype(), fixing 'toe', which could dump core when it
10709           found an incomplete entry such as "dumb" because it did not
10710           initialize its buffer for _nc_read_file_entry().
10711         + use -fPIC rather than -fpic for shared libraries on Linux, not
10712           needed for i386 but some ports (from Debian diffs for 5.0) -TD
10713         + use explicit VALID_NUMERIC() checks in a few places that had been
10714           overlooked, and add a check to ensure that init_tabs is nonzero,
10715           to avoid divide-by-zero (reported by Todd C Miller).
10716         + minor fix for CF_ANSI_CC_CHECK configure macro, for HPUX 10.x (from
10717           tin) -TD
10718
10719 19991218
10720         + reorder tests during mouse initialization to allow for gpm to run in
10721           xterm, or for xterm to be used under OS/2 EMX.  Also drop test for
10722           $DISPLAY in favor of kmous=\E[M or $TERM containing "xterm" (report
10723           by Christian Weisgerber <naddy@mips.rhein-neckar.de>).
10724         + modify raw() and noraw() to clear/restore IEXTEN flag which affects
10725           stty lnext on systems such as FreeBSD (report by Bruce Evans
10726           <bde@zeta.org.au>, via Jason Evans <jasone@canonware.com>).
10727         + fix a potential (but unlikely) buffer overflow in failed() function
10728           of tset.c (reported by Todd C Miller).
10729         + add manual-page for ncurses extensions, documented curses_version(),
10730           use_extended_names().
10731
10732 19991211
10733         + treat as untranslatable to termcap those terminfo strings which
10734           contain non-decimal formatting, e.g., hexadecimal or octal.
10735         + correct commented-out capabilities that cannot be translated to
10736           termcap, which did not check if a colon must be escaped.
10737         + correct termcap translation for "%>" and "%+", which did not check
10738           if a colon must be escaped, for instance.
10739         + use save_string/save_char for _nc_captoinfo() to eliminate fixed
10740           buffer (originally for _nc_infotocap() in 960301 -TD).
10741         + correct expression used for terminfo equivalent of termcap %B,
10742           adjust regent100 entry which uses this.
10743         + some cleanup and commenting of ad hoc cases in _nc_infotocap().
10744         + eliminate a fixed-buffer in tic, used for translating comments.
10745         + add manpage for infotocap
10746
10747 19991204
10748         + add kvt and gnome terminfo entries -TD
10749         + correct translation of "%%" by infotocap, which was emitted as "%".
10750         + add "obsolete" termcap strings to terminfo.src
10751         + modify infocmp to default to showing obsolete capabilities rather
10752           than terminfo only.
10753         + modify write_entry.c so that if extended names (i.e., configure
10754           --enable-tcap-names) are active, then tic will also write "obsolete"
10755           capabilities that are present in the terminfo source.
10756         + modify tic so that when running as captoinfo or infotocap, it
10757           initializes the output format as in -C and -I options, respectively.
10758         + improve infocmp and tic -f option by splitting long strings that do
10759           not have if-then-else construct, but do have parameters, e.g., the
10760           initc for xterm-88color.
10761         + refine MKtermsort.sh slightly by using bool for the *_from_termcap
10762           arrays.
10763
10764 19991127
10765         + additional fixes for non-bce terminals (handling of clear_screen,
10766           clr_eol, clr_eos, scrolling) to work when assume_default_colors() is
10767           not specified.
10768         + several small changes to xterm terminfo entries -TD.
10769         + move logic for _nc_windows in lib_freeall.c inside check for nonnull
10770           SP, since it is part of that struct.
10771         + remove obsolete shlib-versions, which was unintentionally re-added
10772           in 970927.
10773         + modify infocmp -e, -E options to ensure that generated fallback.c
10774           type for Booleans agrees with term.h (reported by Eric Norum
10775           <eric@cls.usask.ca>).
10776         + correct configure script's use of $LIB_PREFIX, which did not work
10777           for installing the c++ directory if $libdir did not end with "/lib"
10778           (reported by Huy Le <huyle@ugcs.caltech.edu>).
10779         + modify infocmp so -L and -f options work together.
10780         + modify the initialization of SP->_color_table[] in start_color() so
10781           that color_content() will return usable values for COLORS greater
10782           than 8.
10783         + modify ncurses 'd' test in case COLORS is greater than 16, e.g., for
10784           xterm-88color, to limit the displayed/computed colors to 16.
10785         > patch by Juergen Pfeifer:
10786         + simplify coding of the panel library according to suggestions by
10787           Philippe Blain.
10788         + improve macro coding for a few macros in curses.priv.h
10789
10790 19991113
10791         + modify treatment of color pair 0 so that if ncurses is configured
10792           to support default colors, and they are not active, then ncurses
10793           will set that explicitly, not relying on orig_colors or orig_pair.
10794         + add new extension, assume_default_colors() to provide better control
10795           over the use of default colors.
10796         + modify test programs to use more-specific ifdef's for existence of
10797           wresize(), resizeterm() and use_default_colors().
10798         + modify configure script to add specific ifdef's for some functions
10799           that are included when --enable-ext-funcs is in effect, so their
10800           existence can be ifdef'd in the test programs.
10801         + reorder some configure options, moving those extensions that have
10802           evolved from experimental status into a new section.
10803         + change configure --enable-tcap-names to enable this by default.
10804
10805 19991106
10806         + install tack's manpage (reported by Robert Weiner
10807           <robert@progplus.com>)
10808         + correct worm.c's handling of KEY_RESIZE (patch by Frank Heckenbach).
10809         + modify curses.h.in, undef'ing some symbols to avoid conflict with C++
10810           STL (reported by Matt Gerassimoff <mgeras@ticon.net>)
10811
10812 19991030
10813         + modify linux terminfo entry to indicate that dim does not mix with
10814           color (reported by Klaus Weide <kweide@enteract.com>).
10815         + correct several typos in terminfo entries related to missing '['
10816           in CSI's -TD
10817         + fix several compiler warnings in c++ binding (reported by Tim
10818           Mooney for alphaev56-dec-osf4.0f
10819         + rename parameter of _nc_free_entries() to accommodate lint.
10820         + correct lint rule for tack, used incorrect list of source files.
10821         + add case to config.guess, config.sub for Rhapsody.
10822         + improve configure tests for libg++ and libstdc++ by omitting the
10823           math library (which is missing on Rhapsody), and improved test for
10824           the math library itself (adapted from path by Nelson H. F. Beebe).
10825         + explicitly initialize to zero several data items which were
10826           implicitly initialized, e.g., cur_term.  If not explicitly
10827           initialized, their storage type is C (common), and causes problems
10828           linking on Rhapsody 5.5 using gcc 2.7.2.1 (reported by Nelson H. F.
10829           Beebe).
10830         + modify Ada95 binding to not include the linker option for Ada
10831           bindings in the Ada headers, but in the Makefiles instead (patch by
10832           Juergen Pfeifer).
10833
10834 19991023 5.0 release for upload to ftp.gnu.org
10835         + effective with release of 5.0, change NCURSES_VERSION_PATCH to
10836           4-digit year.
10837         + add function curses_version(), to return ncurses library version
10838           (request by Bob van der Poel).
10839         + remove rmam, smam from cygwin terminfo entry.
10840         + modify FreeBSD cons25 terminfo entry to add cnorm and cvvis, as well
10841           as update ncv to indicate that 'dim' conflicts with colors.
10842         + modify configure script to use symbolic links for FreeBSD shared
10843           libraries by default.
10844         + correct ranf() function in rain and worm programs to ensure it does
10845           not return 1.0
10846         + hide the cursor in hanoi.c if it is running automatically.
10847         + amend lrtest.c to account for optimizations that exploit margin
10848           wrapping.
10849         + add a simple terminfo demo, dots.c
10850         + modify SIGINT/SIGQUIT handler to set a flag used in _nc_outch() to
10851           tell it to use write() rather than putc(), since the latter is not
10852           safe in a signal handler according to POSIX.
10853         + add/use internal macros _nc_flush() and NC_OUTPUT to hide details
10854           of output-file pointer in ncurses library.
10855         + uncomment CC_SHARED_OPTS (see 971115), since they are needed for SCO
10856           OpenServer.
10857         + correct CC_SHARED_OPTS for building shared libraries for SCO
10858           OpenServer.
10859         + remove usleep() from alternatives in napms(), since it may interact
10860           with alarm(), causing a process to be interrupted by SIGALRM (with
10861           advice from Bela Lubkin).
10862         + modify terminal_interface-curses-forms.ads.m4 to build/work with
10863           GNAT 3.10 (patch by Juergen Pfeifer).
10864         + remove part of CF_GPP_LIBRARY configure-script macro, which did not
10865           work with gcc 2.7.2.3
10866         + minor fix to test/tclock.c to avoid beeping more than once per second
10867         + add 's' and ' ' decoding to test/rain.c
10868
10869 991016  pre-release
10870         + corrected BeOS code for lib_twait.c, making nodelay() function work.
10871
10872 991009  pre-release
10873         + correct ncurses' value for cursor-column in PutCharLR(), which was
10874           off-by-one in one case (patch by Ilya Zakharevich).
10875         + fix some minor errors in position_check() debugging code, found while
10876           using this to validate the PutCharLR() patch.
10877         + modify firework, lrtest, worm examples to be resizable, and to
10878           recognize 'q' for quit, 's' for single-step and ' ' for resume.
10879         + restore reverted change to  terminal_interface-curses-forms.ads.m4,
10880           add a note on building with gnat 3.10p to Ada95/TODO.
10881         + add a copy of the standalone configure script for the test-directory
10882           to simplify testing on SCO and Solaris.
10883
10884 991002  pre-release
10885         + minor fixes for _nc_msec_cost(), color_content(), pair_content(),
10886           _nc_freewin(), ClrBottom() and onscreen_mvcur() (analysis by Philippe
10887           Blain, comments by Alexander V Lukyanov).
10888         + simplify definition of PANEL and eliminate internal functions
10889           _nc_calculate_obscure(), _nc_free_obscure() and _nc_override(),
10890           (patch by Juergen Pfeifer, analysis by Philippe Blain
10891           <bledp@voila.fr>)).
10892         + change renaming of dft_fgbg.3x to use_default_colors.3ncurses in
10893           man_db.renames, since Debian is not concerned with 14-character
10894           filename limitation (Debian bug report by Josip Rodin
10895           <joy@cibalia.gkvk.hr>).
10896         + corrected scoansi terminfo entry by testing with scoterm and console.
10897         + revert change from 990614 to terminal_interface-curses-forms.ads.m4,
10898           since this does not work for gnat 3.10p
10899         + modify tclock example to be resizable (if ncurses' sigwinch handler
10900           is used), and in color.
10901         + use $(CC) rather than 'gcc' in MK_SHARED_LIB symbols, used for Linux
10902           shared library rules.
10903
10904 990925  pre-release
10905         + add newer NetBSD console terminfo entries
10906         + add amiga-8bit terminfo entry (from Henning 'Faroul' Peters
10907           <Faroul@beyond.kn-bremen.de>)
10908         + remove -lcurses -ltermcap from configure script's check for the gpm
10909           library, since they are not really necessary (a properly configured
10910           gpm library has no dependency on any curses library), and if the
10911           curses library is not installed, this would cause the test to fail.
10912         + modify tic's -C option so that terminfo "use=" clauses are translated
10913           to "tc=" clauses even when running it as captoinfo.
10914         + modify CF_STDCPP_LIBRARY configure macro to perform its check only
10915           for GNU C++, since that library conflicts with SGI's libC on IRIX-6.2
10916         + modify CF_SHARED_OPTS configure macro to support build on NetBSD with
10917           ELF libraries (patch by Bernd Ernesti <bernd@arresum.inka.de>).
10918         + correct a problem in libpanel, where the _nc_top_panel variable was
10919           not set properly when bottom_panel() is called to hide a panel which
10920           is the only one on the stack (report/analysis by Michael Andres
10921           <ma@suse.de>, patch by Juergen Pfeifer).
10922
10923 990918  pre-release
10924         + add acsc string to HP 70092 terminfo entry (patch by Joerg Wunsch
10925           <j@interface-business.de>).
10926         + add top-level uninstall.data and uninstall.man makefile rules.
10927         + correct logic of CF_LINK_FUNCS configure script, from BeOS changes so
10928           that hard-links work on Unix again.
10929         + change default value of cf_cv_builtin_bool to 1 (suggested by
10930           Jeremy Buhler), making it less likely that a conflicting declaration
10931           of bool will be seen when compiling with C++.
10932
10933 990911  pre-release
10934         + improved configure checks for builtin.h
10935         + minor changes to C++ binding (remove static initializations, and make
10936           configure-test for parameter initializations) for features not
10937           allowed by vendor's C++ compilers (reported by Martin Mokrejs, this
10938           applies to SGI, though I found SCO has the same characteristics).
10939         + corrected quoting of ETIP_xxx definitions which support old versions
10940           of g++, e.g., those using -lg++
10941         + remove 'L' code from safe_sprintf.c, since 'long double' is not
10942           widely portable.  safe_sprintf.c is experimental, however, and
10943           exists mainly as a fallback for systems without snprintf (reported
10944           by Martin Mokrejs <mmokrejs@natur.cuni.cz>, for IRIX 6.2)
10945         + modify definition of _nc_tinfo_fkeys in broken-linker configuration
10946           so that it is not unnecessarily made extern (Jeffrey C Honig).
10947
10948 990904  pre-release
10949         + move definition for builtin.h in configure tests to specific check
10950           for libg++, since qt uses the same filename incompatibly.
10951         + correct logic of lib_termcap.c tgetstr function, which did not copy
10952           the result to the buffer parameter.  Testing shows Solaris does
10953           update this, though of course tgetent's buffer is untouched (reported
10954           in Peter Edwards <peter.edwards@ireland.com> in
10955           mpc.lists.freebsd.current newsgroup.
10956         + corrected beterm terminfo entry, which lists some capabilities which
10957           are not actually provided by the BeOS Terminal.
10958         + add special logic to replace select() calls on BeOS, whose select()
10959           function works only for sockets.
10960         + correct missing escape in mkterm.h.awk.in, which caused part
10961           of the copyright noticed to be omitted (reported by Peter
10962           Wemm <peter@netplex.com.au>).
10963         > several small changes to make the c++ binding and demo work on OS/2
10964           EMX (related to a clean reinstall of EMX):
10965         + correct library-prefix for c++ binding; none is needed.
10966         + add $x suffix to make_hash and make_keys so 'make distclean' works.
10967         + correct missing $x suffix for tack, c++ demo executables.
10968         + split CF_CXX_LIBRARY into CF_GPP_LIBRARY (for -lg++) and
10969           CF_STDCPP_LIBRARY (for -lstdc++)
10970
10971 990828  pre-release
10972         + add cygwin terminfo entry -TD
10973         + modify CF_PROG_EXT configure macro to set .exe extension for cygwin.
10974         + add configure option --without-cxx-binding, modifying the existing
10975           --without-cxx option to check only for the C++ compiler
10976           characteristics.  Whether or not the C++ binding is needed, the
10977           configure script checks for the size/type of bool, to make ncurses
10978           match.  Otherwise C++ applications cannot use ncurses.
10979
10980 990821  pre-release
10981         + updated configure macros CF_MAKEFLAGS, CF_CHECK_ERRNO
10982         + minor corrections to beterm terminfo entry.
10983         + modify lib_setup.c to reject values of $TERM which have a '/' in
10984           them.
10985         + add ifdef's to guard against CS5, CS6, CS7, CS8 being zero, as more
10986           than one is on BeOS.  That would break a switch statement.
10987         + add configure macro CF_LINK_FUNCS to detect and work around BeOS's
10988           nonfunctional link().
10989         + improved configure macros CF_BOOL_DECL and CF_BOOL_SIZE to detect
10990           BeOS's bool, which is declared as an unsigned char.
10991
10992 990814  pre-release
10993         + add ms-vt100 terminfo entry -TD
10994         + minor fixes for misc/emx.src, based on testing with tack.
10995         + minor fix for test/ncurses.c, test 'a', in case ncv is not set.
10996
10997 990731  pre-release
10998         + minor correction for 'screen' terminfo entry.
10999         + clarify description of errret values for setupterm in manpage.
11000         + modify tput to allow it to emit capabilities for hardcopy terminals
11001           (patch by Goran Uddeborg <goeran@uddeborg.pp.se>).
11002         + modify the 'o' (panel) test in ncurses.c to show the panels in color
11003           or at least in bold, to test Juergen's change to wrefresh().
11004         > patches by Juergen Pfeifer:
11005         + Fixes a problem using wbkgdset() with panels.  It has actually
11006           nothing to with panels but is a problem in the implementation of
11007           wrefresh().  Whenever a window changes its background attribute to
11008           something different than newscr's background attribute, the whole
11009           window is touched to force a copy to newscr.  This is an unwanted
11010           side-effect of wrefresh() and it is actually not necessary.  A
11011           changed background attribute affects only further outputs of
11012           background it doesn't mean anything to the current content of the
11013           window.  So there is no need to force a copy.  (reported by Frank
11014           Heckenbach <frank@g-n-u.de>).
11015         + an upward compatible enhancement of the NCursesPad class in the C++
11016           binding.  It allows one to add a "viewport" window to a pad and then
11017           to use panning to view the pad through the viewport window.
11018
11019 990724  pre-release
11020         + suppress a call to def_prog_mode() in the SIGTSTP handler if the
11021           signal was received while not in curses mode, e.g., endwin() was
11022           called in preparation for spawning a shell command (reported by Frank
11023           Heckenbach <frank@g-n-u.de>)
11024         + corrected/enhanced xterm-r5, xterm+sl, xterm+sl-twm terminfo entries.
11025         + change test for xterm mouse capability:  it now checks only if the
11026           user's $DISPLAY variable is set in conjunction with the kmous
11027           capability being present in the terminfo.  Before, it checked if any
11028           of "xterm", "rxvt" or "kterm" were substrings of the terminal name.
11029           However, some emulators which are incompatible with xterm in other
11030           ways do support the xterm mouse capability.
11031         + reviewed and made minor changes in ncurses to quiet g++ warnings
11032           about shadowed or uninitialized variables.  g++ incorrectly warns
11033           about uninitialized variables because it does not take into account
11034           short-circuit expression evaluation.
11035         + change ncurses 'b' test to start in color pair 0 and to show in the
11036           right margin those attributes which are suppressed by no_color_video,
11037           i.e., "(NCV)".
11038         + modify ifdef's in curses.h so that __attribute__ is not redefined
11039           when compiling with g++, but instead disabled the macros derived for
11040           __attribute__ since g++ does not consistently recognize the same
11041           keywords as gcc (reported by Stephan K Zitz <zitz@erf.net>).
11042         + update dependencies for term.h in ncurses/modules (reported by
11043           Ilya Zakharevich).
11044
11045 990710  pre-release
11046         + modify the form demo in ncurses.c to illustrate how to manipulate the
11047           field appearance, e.g, for highlighting or translating the field
11048           contents.
11049         + correct logic in write_entry from split-out of home_terminfo in
11050           980919, which prevented update of $HOME/.terminfo (reported by Philip
11051           Spencer <pspencer@fields.utoronto.ca>).
11052
11053 990703  pre-release
11054         + modify linux terminfo description to make use of kernel 2.2.x mods
11055           that support cursor style, e.g., to implement cvvis (patch by Frank
11056           Heckenbach <frank@g-n-u.de>)
11057         + add special-case in setupterm to retain previously-saved terminal
11058           settings in cur_term, which happens when curses and termcap calls are
11059           mixed (from report by Bjorn Helgaas <helgaas@dhc.net>).
11060         + suppress initialization of key-tries in _nc_keypad() if we are only
11061           disabling keypad mode, e.g., in endwin() called when keypad() was
11062           not.
11063         + modify the Ada95 makefile to ensure that always the Ada files from
11064           the development tree are used for building and not the eventually
11065           installed ones (patch by Juergen Pfeifer).
11066
11067 990626  pre-release
11068         + use TTY definition in tack/sysdep.c rather than struct termios
11069           (reported by Philippe De Muyter).
11070         + add a fallback for strstr, used in lib_mvcur.c and tack/edit.c,
11071           not present on sysV68 (reported by Philippe De Muyter).
11072         + correct definition in comp_hash.c to build with configure
11073           --with-rcs-ids option.
11074
11075 990619  pre-release
11076         + modified ifdef's for sigaction and sigvec to ensure we do not try to
11077           handle SIGTSTP if neither is available (from report by Philippe De
11078           Muyter).
11079         > patch by Philippe De Muyter:
11080         + in tic.c, use `unlink' if `remove' is not available.
11081         + use only `unsigned' as fallback value for `speed_t'.  Some files used
11082           `short' instead.
11083
11084 990616  pre-release
11085         + fix some compiler warnings in tack.
11086         + add a check for predefined bool type in CC, based on report that
11087           BeOS predefines a bool type.
11088         + correct logic for infocmp -e option, i.e., the configure
11089           --with-fallbacks option, which I'd not updated when implementing
11090           extended names (cf:  990301).  The new implementation adds a "-E"
11091           option to infocmp -TD
11092         > patch by Juergen Pfeifer:
11093         + introduce the private type Curses_Bool in the Ada95 binding
11094           implementation.  This is to clearly represent the use of "bool" also
11095           in the binding.  It should have no effect on the generated code.
11096         + improve the man page for field_buffer() to tell the people, that the
11097           whole buffer including leading/trailing spaces is returned.  This is
11098           a common source of confusion, so it's better to document it clearly.
11099
11100 990614  pre-release
11101         > patch by Juergen Pfeifer:
11102         + use pragma PreElaborate in several places.
11103         + change a few System.Address uses to more specific types.
11104         + change interface version-number to 1.0
11105         + regenerate Ada95 HTML files.
11106
11107 990612  pre-release
11108         + modify lib_endwin.c to avoid calling reset_shell_mode(), return ERR
11109           if it appears that curses was never initialized, e.g., by initscr().
11110           For instance, this guards against setting the terminal modes to
11111           strange values if endwin() is called after setupterm().  In the same
11112           context, Solaris curses will dump core.
11113         + modify logic that avoids a conflict in lib_vidattr.c between sgr0 and
11114           equivalent values in rmso or rmul by ensuring we do not modify the
11115           data which would be returned by the terminfo or termcap interfaces
11116           (reported by Brad Pepers <brad@linuxcanada.com>, cf:  960706).
11117         + add a null-pointer check for SP in lib_vidattr.c to logic that checks
11118           for magic cookies.
11119         + improve fallback declaration of 'bool' when the --without-cxx option
11120           is given, by using a 'char' on i386 and related hosts (prompted by
11121           discussion with Alexander V Lukyanov).
11122
11123 990605  pre-release
11124         + include time.h in lib_napms.c if nanosleep is used (patch by
11125           R Lindsay Todd <toddr@rpi.edu>).
11126         + add an "#undef bool" to curses.h, in case someone tries to define it,
11127           e.g., perl.
11128         + add check to tparm to guard against divide by zero (reported by Aaron
11129           Campbell <aaron@ug.cs.dal.ca>).
11130
11131 990516  pre-release
11132         + minor fix to build tack on CLIX (mismatched const).
11133         > patch by Juergen Pfeifer:
11134         + change Juergen's old email address with new one in the files where it
11135           is referenced.  The Ada95 HTML pages are regenerated.
11136         + update MANIFEST to list the tack files.
11137
11138 990509  pre-release
11139         + minor fixes to make 'tack' build/link on NeXT (reported by Francisco
11140           A. Tomei Torres).
11141
11142 990417  pre-release
11143         + add 'tack' program (which is GPL'd), updating it to work with the
11144           modified TERMTYPE struct and making a fix to support setaf/setab
11145           capabilities.  Note that the tack program is not part of the
11146           ncurses libraries, but an application which can be distributed with
11147           ncurses.  The configure script will ignore the directory if it is
11148           omitted, however.
11149         + modify gpm mouse support so that buttons 2 and 3 are used for
11150           select/paste only when shift key is pressed, making them available
11151           for use by an application (patch by Klaus Weide).
11152         + add complete list of function keys to scoansi terminfo entry - TD
11153
11154 990410  pre-release
11155         + add a simple test program cardfile.c to illustrate how to read form
11156           fields, and showing forms within panels.
11157         + change shared-library versioning for the Hurd to be like Linux rather
11158           than *BSD (patch by Mark Kettenis <kettenis@wins.uva.nl>).
11159         + add linux-lat terminfo entry.
11160         + back-out _nc_access check in read_termcap.c (both incorrect and
11161           unnecessary, except to guard against a small window where the file's
11162           ownership may change).
11163
11164 990403  pre-release
11165         + remove conflicting _nc_free_termtype() function from test module
11166           lib_freeall.c
11167         + use _nc_access check in read_termcap.c for termpaths[] array (noted
11168           by Jeremy Buhler, indicating that Alan Cox made a similar patch).
11169         > patch by Juergen Pfeifer:
11170         + modify menu creation to not inherit status flag from the default menu
11171           which says that the associated marker string has been allocated and
11172           should be freed (bug reported by Marek Paliwoda"
11173           <paliwoda@kki.net.pl>)
11174
11175 990327  pre-release (alpha.gnu.org:/gnu/ncurses-5.0-beta1.tar.gz)
11176         + minor fixes to xterm-xfree86 terminfo entry - TD.
11177         + split up an expression in configure script check for ldconfig to
11178           workaround limitation of BSD/OS sh (reported by Jeff Haas
11179           <jmh@mail.msen.com>).
11180         + correct a typo in man/form_hook.3x (Todd C Miller).
11181
11182 990318  pre-release
11183         + parenthesize and undef 'index' symbol in c++ binding and demo, to
11184           accommodate its definition on NeXT (reported by Francisco A. Tomei
11185           Torres).
11186         + add sigismember() to base/sigaction.c compatibility to link on NeXT
11187           (reported by Francisco A. Tomei Torres).
11188         + further refinements to inequality in hashmap.c to cover a case with
11189           ^U in nvi (patch by Alexander V Lukyanov).
11190
11191 990316  pre-release
11192         + add fallback definition for getcwd, to link on NeXT.
11193         + add a copy of cur_term to tic.c to make it link properly on NeXT
11194           (reported by Francisco A. Tomei Torres).
11195         + change inequality in hashmap.c which checks the distance traveled by
11196           a chunk so that ^D command in nvi (scrolls 1/2 screen) will use
11197           scrolling logic (patch by Alexander V Lukyanov, reported by Jeffrey
11198           C Honig).
11199
11200 990314  pre-release
11201         + modify lib_color.c to handle a special case where the curscr
11202           attributes have been made obsolete (patch by Alexander V Lukyanov).
11203         + update BSD/OS console terminfo entries to use klone+sgr and
11204           klone+color (patch by Jeffrey C Honig).
11205         + update glibc addon configure script for extended capabilities.
11206         + correct a couple of warnings in the --enable-const configuration.
11207         + make comp_hash build properly with _nc_strdup(), on NeXT (reported by
11208           Francisco A. Tomei Torres <francisco.tomei@cwix.com>).
11209
11210 990313  pre-release
11211         + correct typos in linux-c initc string - TD
11212         + add 'crt' terminfo entry, update xterm-xfree86 entry - TD
11213         + remove a spurious argument to tparm() in lib_sklrefr.c (patch by
11214           Alexander V Lukyanov).
11215
11216 990307  pre-release
11217         + back-out change to wgetch because it causes a problem with ^Z
11218           handling in lynx (reported by Kim DeVaughn).
11219
11220 990306  pre-release
11221         + add -G option to tic and infocmp, to reverse the "-g" option.
11222         + recode functions in name_match.c to avoid use of strncpy, which
11223           caused a 4-fold slowdown in tic (cf: 980530).
11224         + correct a few warnings about sign-extension in recent changes.
11225         > patch by Juergen Pfeifer:
11226         + fixes suggested by Jeff Bradbury <jibradbury@lucent.com>:
11227           + improved parameter checking in new_fieldtype().
11228           + fixed a typo in wgetch() timeout handling.
11229           + allow slk_init() to be called per newterm call.  The internal SLK
11230             state is stored in the SCREEN struct after every newterm() and then
11231             reset for the next newterm.
11232           + fix the problem that a slk_refresh() refreshes stdscr if the
11233             terminal has true SLKs.
11234         + update HTML documentation for Ada binding.
11235
11236 990301  pre-release
11237         + remove 'bool' casts from definitions of TRUE/FALSE so that statements
11238           such as "#if TRUE" work.  This was originally done to allow for a C++
11239           compiler which would warn of implicit conversions between enum and
11240           int, but is not needed for g++ (reported by Kim DeVaughn).
11241         + add use_extended_names() function to allow applications to suppress
11242           read of the extended capabilities.
11243         + add configure option --enable-tcap-names to support logic which
11244           allows ncurses' tic to define new (i.e., extended) terminal
11245           capabilities.  This is activated by the tic -x switch.  The infocmp
11246           program automatically shows or compares extended capabilities.
11247           Note:  This changes the Strings and similar arrays in the TERMTYPE
11248           struct so that applications which manipulate it must be recompiled.
11249         + use macros typeMalloc, typeCalloc and typeRealloc consistently
11250           throughout ncurses library.
11251         + add _nc_strdup() to doalloc.c.
11252         + modify define_key() to allow multiple strings to be bound to the
11253           same keycode.
11254         + correct logic error in _nc_remove_string, from 990220.
11255         > patch for Ada95 binding (Juergen Pfeifer):
11256         + regenerate some of the html documentation
11257         + minor cleanup in terminal_interface-curses.adb
11258
11259 990220  pre-release
11260         + resolve ambiguity of kend/kll/kslt and khome/kfnd/kich1 strings in
11261           xterm and ncsa terminfo entries by removing the unneeded ones.  Note
11262           that some entries will return kend & khome versus kslt and kfnd, for
11263           PC-style keyboards versus strict vt220 compatibility - TD
11264         + add function keybound(), which returns the definition associated with
11265           a given keycode.
11266         + modify define_key() to undefine the given string when no keycode is
11267           given.
11268         + modify keyok() so it works properly if there is more than one string
11269           defined for a keycode.
11270         + add check to tic to warn about terminfo descriptions that contain
11271           more than one key assigned to the same string.  This is shown only if
11272           the verbose (-v) option is given.  Moved related logic (tic -v) from
11273           comp_parse.c into the tic program.
11274         + add/use _nc_trace_tries() to show the function keys that will be
11275           recognized.
11276         + rename init_acs to _nc_init_acs (request by Alexander V Lukyanov).
11277         > patch for Ada95 binding (Juergen Pfeifer):
11278         + remove all the *_adabind.c from ncurses, menu and form projects.
11279           Those little helper routines have all been implemented in Ada and are
11280           no longer required.
11281         + The option handling routines in menu and form have been made more
11282           save.  They now make sure that the unused bits in options are always
11283           zero.
11284         + modify configuration scripts to
11285           + use gnatmake as default compiler name.  This is a safer choice than
11286             gcc, because some GNAT implementations use other names for the
11287             compilerdriver to avoid conflicts.
11288           + use new default installation locations for the Ada files according
11289             to the proposed GNU Ada filesystem standard (for Linux).
11290         + simplify the Makefiles for the Ada binding
11291         + rename ada_include directory to src.
11292
11293 990213
11294         + enable sigwinch handler by default.
11295         + disable logic that allows setbuf to be turned off/on, because some
11296           implementations will overrun the buffer after it has been disabled
11297           once.
11298
11299 990206
11300         + suppress sc/rc capabilities from terminal description if they appear
11301           in smcup/rmcup.  This affects only scrolling optimization, to fix a
11302           problem reported by several people with xterm's alternate screen,
11303           though the problem is more general.
11304         > patch for Ada95 binding (Juergen Pfeifer):
11305         + removed all pragma Preelaborate() stuff, because the just released
11306           gnat-3.11p complains on some constructs.
11307         + fixed some upper/lower case notations because gnat-3.11p found
11308           inconsistent use.
11309         + used a new method to generate the HTML documentation of the Ada95
11310           binding.  This invalidates nearly the whole ./Ada95/html subtree.
11311           Nearly all current files in this subtree are removed
11312
11313 990130
11314         + cache last result from _nc_baudrate, for performance (suggested by
11315           Alexander V Lukyanov).
11316         + modify ClrUpdate() function to workaround a problem in nvi, which
11317           uses redrawwin in SIGTSTP handling.  Jeffrey C Honig reported that
11318           ncurses repainted the screen with nulls before resuming normal
11319           operation (patch by Alexander V Lukyanov).
11320         + generalize is_xterm() function a little by letting xterm/rxvt/kterm
11321           be any substring rather than the prefix.
11322         + modify lib_data.c to initialize SP.  Some linkers, e.g., IBM's, will
11323           not link a module if the only symbols exported from the module are
11324           uninitialized ones (patch by Ilya Zakharevich).  Ilya says that he
11325           has seen messages claiming this behavior conforms to the standard.)
11326         + move call on _nc_signal_handler past _nc_initscr, to avoid a small
11327           window where Nttyb hasn't yet been filled (reported by Klaus Weide).
11328         + modify lib_tstp.c to block SIGTTOU when handling SIGTSTP, fixes a
11329           problem where ncurses applications which were run via a shell script
11330           would hang when given a ^Z.  Also, check if the terminal's process
11331           group is consistent, i.e., a shell has not taken ownership of it,
11332           before deciding to save the current terminal settings in the SIGTSTP
11333           handler (patch by Klaus Weide).
11334         + correct spelling of ACS_ names in curs_border.3x (reported by Bob van
11335           der Poel <bvdpoel@kootenay.com>).
11336         + correct a couple of typos in the macros supporting the configure
11337           --with-shlib-version option.
11338
11339 990123
11340         + modify fty_regex.c to compile on HAVE_REGEXPR_H_FUNCS machine (patch
11341           by Kimio Ishii <ishii@csl.sony.co.jp>).
11342         + rename BSDI console terminfo entries:  bsdos to bsdos-pc-nobold, and
11343           bsdos-bold to bsdos-pc (patch by Jeffrey C Honig).
11344         + modify tput to accept termcap names as an alternative to terminfo
11345           names (patch by Jeffrey C Honig).
11346         + correct a typo in term.7 (Todd C Miller).
11347         + add configure --with-shlib-version option to allow installing shared
11348           libraries named according to release or ABI versions.  This
11349           parameterizes some existing logic in the configure script, and is
11350           intended for compatibility upgrades on Digital Unix, which used
11351           versioned libraries in ncurses 4.2, but no longer does (cf:  980425).
11352         + resync configure script against autoconf 2.13 + patches
11353         + minor improvements for teraterm terminfo entry based on the program's
11354           source distribution.
11355
11356 990116
11357         + change default for configure --enable-big-core to assume machines do
11358           have enough memory to resolve terminfo.src in-memory.
11359         + correct name of ncurses library in TEST_ARGS when configuring with
11360           debug library.
11361         + minor fixes to compile ncurses library with broken-linker with g++.
11362         + add --enable-broken-linker configure option, default to environment
11363           variable $BROKEN_LINKER (request by Jeffrey C Honig).
11364         + change key_names[] array to static since it is not part of the curses
11365           interface (reported by Jeffrey C Honig <jch@bsdi.com>).
11366
11367 990110
11368         + add Tera Term terminfo entry - TD
11369
11370 990109
11371         + reviewed/corrected macros in curses.h as per XSI document.
11372         + provide support for termcap PC variable by copying it from terminfo
11373           data and using it as the padding character in tputs (reported by
11374           Alexander V Lukyanov).
11375         + corrected iris-ansi and iris-ansi-ap terminfo entries for kent and
11376           kf9-kf12 capabilities, as well as adding kcbt.
11377         + document the mouse handling mechanism in menu_driver and make a small
11378           change in menu_driver's return codes to provide more consistency
11379           (patch by Juergen Pfeifer).
11380         + add fallback definition for NCURSES_CONST to termcap.h.in (reported
11381           by Uchiyama Yasushi <uch@nop.or.jp>).
11382         + move lib_restart.c to ncurses/base, since it uses curses functions
11383           directly, and therefore cannot be used in libtinfo.so
11384         + rename micro_char_size to micro_col_size, adding #define to retain
11385           old name.
11386         + add set_a_attributes and set_pglen_inch to terminfo structure, as per
11387           XSI and Solaris 2.5.
11388         + minor makefile files to build ncurses test_progs
11389         + update html files in misc directory to reflect changes since 4.2
11390
11391 990102
11392         + disable scroll hints when hashmap is enabled (patch by Alexander
11393           V Lukyanov).
11394         + move logic for tic's verify of -e option versus -I and -C so that the
11395           terminfo data is not processed if we cannot handle -e (reported by
11396           Steven Schwartz <steves@unitrends.com>.
11397         + add test-driver traces to terminfo and termcap functions.
11398         + provide support for termcap ospeed variable by copying it from the
11399           internal cur_term member, and using ospeed as the baudrate reference
11400           for the delay_output and tputs functions.  If an application does not
11401           set ospeed, the library behaves as before, except that _nc_timed_wait
11402           is no longer used, or needed, since ospeed always has a value.  But
11403           the application can modify ospeed to adjust the output of padding
11404           characters (prompted by a bug report for screen 3.7.6 and email from
11405           Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>).
11406         + removed some unused ifdef's as part of Alexander's restructuring.
11407         + reviewed/updated curses.h, term.h against X/Open Curses Issue 4
11408           Version 2.  This includes making some parameters NCURSES_CONST
11409           rather than const, e.g., in termcap.h.
11410         + change linux terminfo entry to use ncv#2, since underline does not
11411           work with color
11412
11413 981226
11414         + miscellaneous corrections for curses.h to match XSI.
11415         + change --enable-no-padding configure option to be normally enabled.
11416         + add section to ncurses manpage for environment variables.
11417         + investigated Debian bug report that pertains to screen 3.7.4/3.7.6
11418           changes, found no sign of problems on Linux (or on SunOS, Solaris)
11419           running screen built with ncurses.
11420         + check if tmp_fp is opened in tic.c before closing it (patch by Pavel
11421           Roskin <pavel_roskin@geocities.com>).
11422         + correct several font specification typos in man-pages.
11423
11424 981220
11425         + correct default value for BUILD_CC (reported by Larry Virden).
11426
11427 981219
11428         + modify _nc_set_writedir() to set a flag in _nc_tic_dir() to prevent
11429           it from changing the terminfo directory after chdir'ing to it.
11430           Otherwise, a relative path in $TERMINFO would confuse tic (prompted
11431           by a Debian bug report).
11432         + correct/update ncsa terminfo entry (report by Larry Virden).
11433         + update xterm-xfree86 terminfo to current (patch 90), smcur/rmcur
11434           changes
11435         + add Mathew Vernon's mach console entries to terminfo.src
11436         + more changes, moving functions, as part of Alexander's restructuring.
11437         + modify configure script for GNU/Hurd share-library support, introduce
11438           BUILD_CC variable for cross compiling (patch by Uchiyama Yasushi
11439           <uch@nop.or.jp>)
11440
11441 981212
11442         + add environment variable NCURSES_NO_SETBUF to allow disabling the
11443           setbuf feature, for testing purposes.
11444         + correct ifdef's for termcap.h versus term.h that suppress redundant
11445           declarations of prototypes (reported by H.J.Lu).
11446         + modify Makefile.os2 to add linker flags which allow multiple copies
11447           of an application to coexist (reported by Ilya Zakharevich).
11448         + update Makefile.glibc and associated configure script so that ncurses
11449           builds as a glibc add-on with the new directory configuration
11450           (reported by H.J.Lu).
11451
11452 981205
11453         + modify gen_reps() function in gen.c to work properly on SunOS
11454           (sparc), which is a left-to-right architecture.
11455         + modify relative_move and tputs to avoid an interaction with the
11456           BSD-style padding.  The relative_move function could produce a string
11457           to replace on the screen which began with a numeric character, which
11458           was then interpreted by tputs as padding.  Now relative_move will not
11459           generate a string with a leading digit in that case (overwrite).
11460           Also, tputs will only interpret padding if the string begins with a
11461           digit; as coded it permitted a string to begin with a decimal point
11462           or asterisk (reported by Larry Virden).
11463         > patches by Juergen Pfeifer:
11464         + fix a typo in m_driver.c mouse handling and improves the error
11465           handling.
11466         + fix broken mouse handling in the Ada95 binding
11467         + make the Ada95 sample application menus work with the new menu mouse
11468           support
11469         + improve the mouse handling introduced by Ilya; it now handles menus
11470           with spacing.
11471         + repair a minor bug in the menu_driver code discovered during this
11472           rework.
11473         + add new function wmouse_trafo() to hide implementation details of
11474           _yoffset member of WINDOW struct needed for mouse coordinate
11475           transformation.
11476
11477 981128
11478         + modify Ada95/gen/gen.c to avoid using return-value of sprintf, since
11479           some older implementations (e.g., SunOS 4.x) return the buffer
11480           address rather than its length.
11481         > patch by Rick Ohnemus:
11482         + modify demo.cc to get it to compile with newer versions of egcs.
11483         + trim a space that appears at the end of the table preprocessor lines
11484           ('\" t).  This space prevents some versions of man from displaying
11485           the pages - changed to remove all trailing whitespace (TD)
11486         + finally, 'make clean' does not remove panel objects.
11487         > patches by Ilya Zakharevich:
11488         + allow remapping of OS/2 mouse buttons using environment variable
11489           MOUSE_BUTTONS_123 with the default value 132.
11490         + add mouse support to ncurses menus.
11491
11492 981121
11493         + modify misc/makedef.cmd to report old-style .def file symbols, and to
11494           generate the .def files sorted by increasing names rather than the
11495           reverse.
11496         + add misc/*.ref which are J.J.G.Ripoll's dll definition files (renamed
11497           from misc/*.old), and updated based on the entrypoint coding he used
11498           for an older version of ncurses.
11499         + add README.emx, to document how to build on OS/2 EMX.
11500         + updates for config.guess, config.sub from Lynx
11501         > patches by Ilya Zakharevich:
11502         + minor fixes for mouse handling mode:
11503           a) Do not initialize mouse if the request is to have no mouse;
11504           b) Allow switching of OS/2 VIO mouse on and off.
11505         + modify Makefile.os2 to support alternative means of generating
11506           configure script, by translating Unix script with Perl.
11507         > patches by Juergen Pfeifer:
11508         + Updates MANIFEST to reflect changes in source structure
11509         + Eliminates a problem introduced with my last patch for the C++
11510           binding in the panels code.  It removes the update() call done in the
11511           panel destructor.
11512         + Changes in the Ada95 binding to better support systems where
11513           sizeof(chtype)!=sizeof(int) (e.g.  DEC Alpha).
11514
11515 981114
11516         + modify install-script for manpages to skip over .orig and .rej files
11517           (request by Larry Virden).
11518         > patches/discussion by Alexander V Lukyanov:
11519         + move base-library sources into ncurses/base and tty (serial terminal)
11520           sources into ncurses/tty, as part of Alexander V Lukyanov's proposed
11521           changes to ncurses library.
11522         + copy _tracemouse() into ncurses.c so that lib_tracemse.c need not
11523           be linked into the normal ncurses library.
11524         + move macro winch to a function, to hide details of struct ldat
11525         > patches by Juergen Pfeifer:
11526         + fix a potential compile problem in cursesw.cc
11527         + some Ada95 cosmetics
11528         + fix a gen.c problem when compiling on 64-Bit machines
11529         + fix Ada95/gen/Makefile.in "-L" linker switch
11530         + modify Ada95 makefiles to use the INSTALL_PREFIX setting.
11531
11532 981107
11533         + ifdef'd out lib_freeall.c when not configured.
11534         + rename _tracebits() to _nc_tracebits().
11535         + move terminfo-library sources into ncurses/tinfo, and trace-support
11536           functions into ncurses/trace as part of Alexander V Lukyanov's
11537           proposed changes to ncurses library.
11538         + modify generated term.h to always specify its own definitions for
11539           HAVE_TERMIOS_H, etc., to guard against inclusion by programs with
11540           broken configure scripts.
11541
11542 981031
11543         + modify terminfo parsing to accept octal and hexadecimal constants,
11544           like Solaris.
11545         + remove an autoconf 2.10 artifact from the configure script's check
11546           for "-g" compiler options.  (Though harmless, this confused someone
11547           at Debian, who recently issued a patch that results in the opposite
11548           effect).
11549         + add configure option --with-ada-compiler to accommodate installations
11550           that do not use gcc as the driver for GNAT (patch by Juergen
11551           Pfeifer).
11552
11553 981017
11554         + ensure ./man exists in configure script, needed when configuring
11555           with --srcdir option.
11556         + modify infocmp "-r" option to remove limit on formatted termcap
11557           output, which makes it more like Solaris' version.
11558         + modify captoinfo to treat no-argument case more like Solaris'
11559           version, which uses the contents of $TERMCAP as the entry to format.
11560         + modify mk-2nd.awk to handle subdirectories, e.g., ncurses/tty
11561           (patch by Alexander V Lukyanov).
11562
11563 981010
11564         + modify --with-terminfo-dirs option so that the default value is the
11565           ${datadir} value, unless $TERMINFO_DIRS is already set.  This gets
11566           rid of a hardcoded list of candidate directories in the configure
11567           script.
11568         + add some error-checking to _nc_read_file_entry() to ensure that
11569           strings are properly terminated (Todd C Miller).
11570         + rename manpage file curs_scr_dmp.3x to curs_scr_dump.3x, to
11571           correspond with contents (reported by Neil Zanella
11572           <nzanella@cs.mun.ca>).
11573         + remove redundant configure check for C++ which did not work when $CXX
11574           was specified with a full pathname (reported by Andreas Jaeger).
11575         + corrected bcopy/memmove check; the macro was not standalone.
11576
11577 981003
11578         + remove unnecessary portion of OS/2 EMX mouse change from
11579           check_pending() (reported by Alexander V Lukyanov).
11580
11581 980926
11582         + implement mouse support for OS/2 EMX (adapted from patch against
11583           4.2(?) by Ilya Zakharevich).
11584         + add configure-check for bcopy/memmove, for 980919 changes to hashmap.
11585         + merge Data General terminfo from Hasufin <hasufin@vidnet.net> - TD
11586         + merge AIX 3.2.5 terminfo descriptions for IBM terminals, replaces
11587           some older entries - TD
11588         + modify tic to compile into %'char' form in preference to %{number},
11589           since that is a little more efficient.
11590         + minor correction to infocmp to avoid displaying "difference" between
11591           two capabilities that are rendered in equivalent forms.
11592         + add "-g" option to tic/infocmp to force character constants to be
11593           displayed in quoted form.  Otherwise their decimal values are shown.
11594         + modify setupterm so that cancelled strings are treated the same as
11595           absent strings, cancelled and absent booleans false (does not affect
11596           tic, infocmp).
11597         + modify tic, infocmp to discard redundant i3, r3 strings when output
11598           to termcap format.
11599         > patch by Alexander V Lukyanov:
11600         + improve performance of tparm, now it takes 19% instead of 25% when
11601           profiling worm.
11602         + rename maxlen/minlen to prec/width for better readability.
11603         + use format string for printing strings.
11604         + use len argument correctly in save_text, and pass it to save_number.
11605
11606 980919
11607         + make test_progs compile (but hashmap does not function).
11608         + correct NC_BUFFERED macro, used in lib_mvcur test-driver, modify
11609           associated logic to avoid freeing the SP->_setbuf data.
11610         + add modules home_terminfo and getenv_num to libtinfo.
11611         + move write_entry to libtinfo, to work with termcap caching.
11612         + minor fixes to blue.c to build with atac.
11613         + remove softscroll.c module; no longer needed for testing.
11614         > patches by Todd C Miller:
11615         + use strtol(3) instead of atoi(3) when parsing env variables so we can
11616           detect a bogus (non-numeric) value.
11617         + check for terminal names > MAX_NAME_SIZE in a few more places when
11618           dealing with env variables again.
11619         + fix a MAX_NAME_SIZE that should be MAX_NAME_SIZE+1
11620         + use sizeof instead of strlen(3) on PRIVATE_INFO since it is a fixed
11621           string #define (compile time vs runtime).
11622         + when setting errno to ENOMEM, set it right before the return, not
11623           before code that could, possibly, set errno to a different value.
11624         > patches by Alexander V Lukyanov:
11625         + use default background in update_cost_from_blank()
11626         + disable scroll-hints when hashmap is configured.
11627         + improve integration of hashmap scrolling code, by adding oldhash and
11628           newhash data to SP struct.
11629         + invoke del_curterm from delscreen.
11630         + modify del_curterm to set cur_term to null if it matches the
11631           function's parameter which is deleted.
11632         + modify lib_doupdate to prefer parm_ich to the enter_insert_mode and
11633           exit_insert_mode combination, adjusting InsCharCost to check
11634           enter_insert_mode, exit_insert_mode and insert_padding.  Add
11635           insert_padding in insert mode after each char.  This adds new costs
11636           to the SP struct.
11637
11638 980912
11639         + modify test-driver in lib_mvcur.s to use _nc_setbuffer, for
11640           consistent treatment.
11641         + modify ncurses to restore output to unbuffered on endwin, and resume
11642           buffering in refresh (see lib_set_term.c and NC_BUFFERED macro).
11643         + corrected HTML version numbers (according to the W3C validator, they
11644           never were HTML 2.0-compliant, but are acceptable 3.0).
11645
11646 980905
11647         + modify MKterminfo.sh to generate terminfo.5 with tables sorted by
11648           capability name, as in SVr4.
11649         + modified term.h, termcap.h headers to avoid redundant declarations.
11650         + change 'u_int' type in tset.c to unsigned, making this compile on
11651           Sequent PRX 4.1 (reported by Michael Sterrett <msterret@coat.com>).
11652
11653 980829
11654         + corrections to mailing addresses, and moving the magic line that
11655           causes the man program to invoke tbl to the first line of each
11656           manpage (patch by Rick Ohnemus <rick@ecompcon.com>).
11657         + add Makefile.os2 and supporting scripts to generate dll's on OS/2 EMX
11658           (from J.J.G.Ripoll, with further integration by TD).
11659         + correct a typo in icl6404 terminfo entry.
11660         + add xtermm and xtermc terminfo entries.
11661         > from esr's terminfo version:
11662         + Added Francesco Potorti's tuned Wyse 99 entries.
11663         + dtterm enacs (from Alexander V Lukyanov).
11664         + Add ncsa-ns, ncsa-m-ns and ncsa-m entries from esr version.
11665
11666 980822
11667         + document AT&T acs characters in terminfo.5 manpage.
11668         + use EMX _scrsize() function if terminfo and environment do not
11669           declare the screen size (reported by Ilya Zakharevich
11670           <ilya@math.ohio-state.edu>).
11671         + remove spurious '\' characters from eterm and osborne terminfo
11672           entries (prompted by an old Debian bug report).
11673         + correct reversed malloc/realloc calls in _nc_doalloc (reported by
11674           Hans-Joachim Widmaier <hjwidmai@foxboro.com>).
11675         + correct misplaced parenthesis which caused file-descriptor from
11676           opening termcap to be lost, from 980725 changes (reported by Andreas
11677           Jaeger).
11678
11679 980815
11680         + modify lib_setup.c to eliminate unneeded include of <sys/ioctl.h>
11681           when termios is not used (patch by Todd C Miller).
11682         + add function _nc_doalloc, to ensure that failed realloc calls do not
11683           leak memory (reported by Todd C Miller).
11684         + improved ncsa-telnet terminfo entry.
11685
11686 980809
11687         + correct missing braces around a trace statement in read_entry.c,
11688           from 980808 (reported by Kim DeVaughn <kimdv@best.com> and Liviu
11689           Daia).
11690
11691 980808
11692         + fix missing include <errno.h> in ditto.c (reported by Bernhard
11693           Rosenkraenzer <bero@k5.sucks.eu.org>)
11694         + add NCSA telnet terminfo entries from Francesco Potorti
11695           <F.Potorti@cnuce.cnr.it>, from Debian bug reports.
11696         + make handling of $LINES and $COLUMNS variables more compatible with
11697           Solaris by allowing them to individually override the window size
11698           as obtained via ioctl.
11699
11700 980801
11701         + modify lib_vidattr.c to allow for terminal types (e.g., xterm-color)
11702           which may reset all attributes in the 'op' capability, so that colors
11703           are set before turning on bold and other attributes, but still after
11704           turning attributes off.
11705         + add 'ditto.c' to test directory to illustrate use of newterm for
11706           initializing multiple screens.
11707         + modify _nc_write_entry() to recover from failed attempt to link alias
11708           for a terminfo on a filesystem which does not preserve character case
11709           (reported by Peter L Jordan <PJordan@chla.usc.edu>).
11710
11711 980725
11712         + updated versions of config.guess and config.sub based on automake 1.3
11713         + change name-comparisons in lib_termcap to compare no more than 2
11714           characters (gleaned from Debian distribution of 1.9.9g-8.8, verified
11715           with Solaris curses).
11716         + fix typo in curs_insstr.3x (patch by Todd C Miller)
11717         + use 'access()' to check if ncurses library should be permitted to
11718           open or modify files with fopen/open/link/unlink/remove calls, in
11719           case the calling application is running in setuid mode (request by
11720           Cristian Gafton <gafton@redhat.com>, responding to Duncan Simpson
11721           <dps@io.stargate.co.uk>).
11722         + arm100 terminfo entries from Dave Millen <dmill@globalnet.co.uk>).
11723         + qnxt2 and minitel terminfo entries from esr's version.
11724
11725 980718
11726         + use -R option with ldconfig on FreeBSD because otherwise it resets
11727           the search path to /usr/lib (reported by Dan Nelson).
11728         + add -soname option when building shared libraries on OpenBSD 2.x
11729           (request by QingLong).
11730         + add configure options --with-manpage-format and
11731           --with-manpage-renames (request by QingLong).
11732         + correct conversion of CANCELLED_NUMERIC in write_object(), which was
11733           omitting the high-order byte, producing a 254 in the compiled
11734           terminfo.
11735         + modify return-values of tgetflag, tgetnum, tgetstr, tigetflag,
11736           tigetnum and tigetstr to be compatible with Solaris (gleaned from
11737           Debian distribution of 1.9.9g-8.8).
11738         + modify _nc_syserr_abort to abort only when compiled for debugging,
11739           otherwise simply exit with an error.
11740
11741 980711
11742         + modify Ada95 'gen' program to use appropriate library suffix (e.g.,
11743           "_g" for a debug build).
11744         + update Ada95 'make clean' rule to include generics .ali files
11745         + add a configure test to ensure that if GNAT is found, that it can
11746           compile/link working Ada95 program.
11747         + flush output in beep and flash functions, fixing a problem with
11748           getstr (patch by Alexander V Lukyanov)
11749         + fix egcs 1.0.2 warning for etip.h (patch by Chris Johns).
11750         + correct ifdef/brace nesting in lib_sprintf.c (patch by Bernhard
11751           Rosenkraenzer <bero@Pool.Informatik.RWTH-Aachen.DE>).
11752         + correct typo in wattr_get macro from 980509 fixes (patch by Dan
11753           Nelson).
11754
11755 980704
11756         + merge changes from current XFree86 xterm terminfo descriptions.
11757         + add configure option '--without-ada'.
11758         + add a smart-default for termcap 'ac' to terminfo 'acs_chars' which
11759           corresponds to vt100.
11760         + change translation for termcap 'rs' to terminfo 'rs2', which is
11761           the documented equivalent, rather than 'rs1'.
11762
11763 980627
11764         + slow 'worm' down a little, for very fast machines.
11765         + corrected firstchar/lastchar computation in lib_hline.c
11766         + simplify some expressions with CHANGED_CELL, CHANGED_RANGE and
11767           CHANGED_TO_EOL macros.
11768         + modify init_pair so that if a color-pair is reinitialized, we will
11769           repaint the areas of the screen whose color changes, like SVr4 curses
11770           (reported by Christian Maurer <maurer@inf.fu-berlin.de>).
11771         + modify getsyx/setsyx macros to comply with SVr4 man-page which
11772           says that leaveok() affects their behavior (report by Darryl Miles,
11773           patch by Alexander V Lukyanov).
11774
11775 980620
11776         + review terminfo.5 against Solaris 2.6 curses version, corrected
11777           several minor errors/omissions.
11778         + implement tparm %l format.
11779         + implement tparm printf-style width and precision for %s, %d, %x, %o
11780           as per XSI.
11781         + implement tparm dynamic variables (reported by Xiaodan Tang).
11782
11783 980613
11784         + update man-page for for wattr_set, wattr_get (cf:  980509)
11785         + correct limits in hashtest, which would cause nonprinting characters
11786           to be written to large screens.
11787         + correct configure script, when --without-cxx was specified:  the
11788           wrong variable was used for cf_cv_type_of_bool.  Compilers up to gcc
11789           2.8 tolerated the missing 'int'.
11790         + remove the hardcoded name "gcc" for the GNU Ada compiler.  The
11791           compiler's name might be something like "egcs" (patch by Juergen
11792           Pfeifer).
11793         + correct curs_addch.3x, which implied that echochar could directly
11794           display control characters (patch by Alexander V Lukyanov).
11795         + fix typos in ncurses-intro.html (patch by Sidik Isani
11796           <isani@cfht.hawaii.edu>)
11797
11798 980606
11799         + add configure test for conflicting use of exception in math.h and
11800           other headers.
11801         + minor optimization to 'hash()' function in hashmap.c, reduces its
11802           time by 10%.
11803         + correct form of LD_SHARED_OPTS for HP-UX 10.x (patch by Tim Mooney).
11804         + fix missing quotes for 'print' in MKunctrl.awk script (reported by
11805           Mihai Budiu <mihaib@gs41.sp.cs.cmu.edu>).
11806         > patch by Alexander V Lukyanov:
11807         + correct problem on Solaris (with poll() function) where getch could
11808           hang indefinitely even if timeout(x) was called.  This turned out to
11809           be because milliseconds was not updated before 'goto retry' in
11810           _nc_timed_wait.
11811         + simplified the function _nc_timed_wait and fixed another bug, which
11812           was the assumption of !GOOD_SELECT && HAVE_GETTIMEOFDAY in *timeleft
11813           assignment.
11814         + removed the cycle on EINTR, as it seems to be useless.
11815
11816 980530
11817         + add makefile-rule for test/keynames
11818         + modify run_tic.sh and shlib to ensure that user's .profile does not
11819           override the $PATH used to run tic (patch by Tim Mooney).
11820         + restore LD_SHARED_OPTS to $(LD_SHARED_FLAGS) when linking programs,
11821           needed for HP-UX shared-library path (recommended by Tim Mooney).
11822         + remove special case of HP-UX -L options, use +b options to embed
11823           $(libdir) in the shared libraries (recommended by Tim Mooney).
11824         + add checks for some possible buffer overflows and unchecked
11825           malloc/realloc/calloc/strdup return values (patch by Todd C Miller
11826           <Todd.Miller@courtesan.com>)
11827
11828 980523
11829         + correct maxx/maxy expression for num_columns/num_lines in derwin
11830           (patch by Alexander V Lukyanov).
11831         + add /usr/share/lib/terminfo and /usr/lib/terminfo as compatibility
11832           fallbacks to _nc_read_entry(), along with --with-terminfo-dirs
11833           configure option (suggested by Mike Hopkirk).
11834         + modify config.guess to recognize Unixware 2.1 and 7 (patch by Mike
11835           Hopkirk <hops@sco.com>).
11836         + suppress definition of CC_SHARED_OPTS in LDFLAGS_SHARED in c++
11837           Makefile.in, since this conflicts when g++ is used with HP-UX
11838           compiler (reported by Tim Mooney).
11839         + parenthesize 'strcpy' calls in c++ binding to workaround redefinition
11840           in some C++ implementations (reported by several people running
11841           egcs with glibc 2.0.93, analysis by Andreas Jaeger.
11842
11843 980516
11844         + modify write_entry.c so that it will not attempt to link aliases
11845           with embedded '/', but give only a warning.
11846         + put -L$(libdir) first when linking programs, except for HP-UX.
11847         + modify comp_scan.c to handle SVr4 terminfo description for att477,
11848           which contains a colon in the description field.
11849         + modify configure script to support SCO osr5.0.5 shared libraries,
11850           from comp.unix.sco.programmer newsgroup item (Mike Hopkirk).
11851         + eliminate extra GoTo call in lib_doupdate.c (patch by Alexander V.
11852           Lukyanov).
11853         + minor adjustments of const/NCURSES_CONST from IRIX compile.
11854         + add updates based on esr's 980509 version of terminfo.src.
11855
11856 980509
11857         + correct macros for wattr_set, wattr_get, separate wattrset macro from
11858           these to preserve behavior that allows attributes to be combined with
11859           color pair numbers.
11860         + add configure option --enable-no-padding, to allow environment
11861           variable $NCURSES_NO_PADDING to eliminate non-mandatory padding,
11862           thereby making terminal emulators (e.g., for vt100) a little more
11863           efficient (request by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
11864         + modify configure script to embed ABI in shared libraries for HP-UX
11865           10.x (detailed request by Tim Mooney).
11866         + add test/example of the 'filter()' function.
11867         + add nxterm and xterm-color terminfo description (request by Cristian
11868           Gafton <gafton@redhat.com>).
11869         + modify rxvt terminfo description to clear alternate screen before
11870           switching back to normal screen, for compatibility with applications
11871           which use xterm (reported by Manoj Kasichainula <manojk@io.com>).
11872         + modify linux terminfo description to reset color palette (reported
11873           by Telford Tendys <telford@eng.uts.edu.au>).
11874         + correction to doupdate, for case where terminal does not support
11875           insert/delete character.  The logic did not check that there was a
11876           difference in alignment of changes to old/new screens before
11877           repainting the whole non-blank portion of the line.  Modified to fall
11878           through into logic that reduces by the portion which does not differ
11879           (reported by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
11880         + minor performance improvement to wnoutrefresh by moving some
11881           comparisons out of inner loop.
11882
11883 980425
11884         + modify configure script to substitute NCURSES_CONST in curses.h
11885         + updated terminfo entries for xterm-xf86-v40, xterm-16color,
11886           xterm-8bit to correspond to XFree86 3.9Ag.
11887         + remove restriction that forces ncurses to use setaf/setab if the
11888           number of colors is greater than 8.  (see 970524 for xterm-16color).
11889         + change order of -L options (so that $(libdir) is searched first) when
11890           linking tic and other programs, to workaround HP's linker.
11891           Otherwise, the -L../lib is embedded when linking against shared
11892           libraries and the installed program does not run (reported by Ralf
11893           Hildebrandt).
11894         + modify configuration of shared libraries on Digital Unix so that
11895           versioning is embedded in the library, rather than implied by
11896           links (patch by Tim Mooney).
11897
11898 980418
11899         + modify etip.h to avoid conflict with math.h on HP-UX 9.03 with gcc
11900           2.8.1 which redefines 'exception' (reported by Ralf Hildebrandt
11901           <R.Hildebrandt@tu-bs.de>).
11902         + correct configure tests in CF_SHARED_OPTS which used $CC value to
11903           check for gcc, rather than autoconf's $GCC value.  This did not
11904           work properly if the full pathname of the compiler were given
11905           (reported by Michael Yount <yount@csf.Colorado.edu>).
11906         + revise check for compiler options to force ANSI mode since repeating
11907           an option such as -Aa causes HP's compiler to fail on its own headers
11908           (reported by Clint Olsen <olsenc@ichips.intel.com>).
11909
11910 980411
11911         + ifdef'd has_key() and mcprint() as extended functions.
11912         + modified several prototypes to correspond with 1997 version of
11913           X/Open Curses (affects ABI since developers have used attr_get).
11914         + remove spurious trailing blanks in glibc addon-scripts (patch by
11915           H.J.Lu).
11916         + insert a few braces at locations where gcc-2.8.x asks to use them to
11917           avoid ambiguous else's, use -fpic rather than -fPIC for Linux (patch
11918           by Juergen Pfeifer).
11919
11920 980404
11921         + split SHLIB_LIST into SHLIB_DIRS/SHLIB_LIST to keep -L options
11922           before -l to accommodate Solaris' linker (reported by Larry Virden).
11923
11924 980328
11925         + modify lib_color.c to eliminate dependency on orig_colors and
11926           orig_pair, since SVr4 curses does not require these either, but
11927           uses them when they are available.
11928         + add detailed usage-message to infocmp.
11929         + correct a typo in att6386 entry (a "%?" which was "?").
11930         + add -f option to infocmp and tic, which formats the terminfo
11931           if/then/else/endif so that they are readable (with newlines and
11932           tabs).
11933         + fixes for glibc addon scripts (patch by H.J.Lu).
11934
11935 980321
11936         + revise configure macro CF_SPEED_TYPE so that termcap.h has speed_t
11937           declared (from Adam J Richter <adam@yggdrasil.com>)
11938         + remove spurious curs_set() call from leaveok() (J T Conklin).
11939         + corrected handling leaveok() in doupdate() (patch by Alexander V.
11940           Lukyanov).
11941         + improved version of wredrawln (patch by Alexander V. Lukyanov).
11942         + correct c++/Makefile.in so install target do not have embedded ../lib
11943           to confuse it (patch by Thomas Graf <graf@essi.fr>).
11944         + add warning to preinstall rule which checks if the installer would
11945           overwrite a curses.h or termcap.h that is not derived from ncurses.
11946           (The recommended configuration for developers who need both is to
11947           use --disable-overwrite).
11948         + modify preinstall rule in top-level Makefile to avoid implicit
11949           use of 'sh', to accommodate Ultrix 4.4 (reported by Joao Palhoto
11950           Matos <jmatos@math.ist.utl.pt>, patch by Thomas Esser
11951           <te@informatik.uni-hannover.de>)
11952         + refine ifdef's for TRACE so that libncurses has fewer dependencies
11953           on libtinfo when TRACE is disabled.
11954         + modify configure script so that if the --with-termlib option is used
11955           to generate a separate terminfo library, we chain it to the ncurses
11956           library with a "-l" option (reported by Darryl Miles and Ian T.
11957           Zimmerman).
11958
11959 980314
11960         + correct limits and window in wredrawln function (reported/analysis by
11961           Alexander V. Lukyanov).
11962         + correct sed expression in configure script for --with-fallback
11963           option (patch by Jesse Thilo).
11964         + correct some places in configure script where $enableval was used
11965           rather than $withval (patch by Darryl Miles <dlm@g7led.demon.co.uk>).
11966         + modify some man-pages so no '.' or '..' falls between TH and SH
11967           macros, to accommodate man_db program (reported by Ian T. Zimmerman
11968           <itz@rahul.net>).
11969         + terminfo.src 10.2.1 downloaded from ESR's webpage (ESR).
11970         > several changes by Juergen Pfeifer:
11971         + add copyright notices (and rcs id's) on remaining man-pages.
11972         + corrected prototypes for slk_* functions, using chtype rather than
11973           attr_t.
11974         + implemented the wcolor_set() and slk_color() functions
11975         + the slk_attr_{set,off,on} functions need an additional void*
11976           parameter according to XSI.
11977         + fix the C++ and Ada95 binding as well as the man pages to
11978           reflect above enhancements.
11979
11980 980307
11981         + use 'stat()' rather than 'access()' in toe.c to check for the
11982           existence of $HOME/.terminfo, since it may be a file.
11983         + suppress configure CF_CXX_LIBRARY check if we are not using g++
11984           2.7.x, since this is not needed with g++ 2.8 or egcs (patch by
11985           Juergen Pfeifer).
11986         + turn on hashmap scrolling code by default, intend to remedy defects
11987           by 4.3 release.
11988         + minor corrections to terminfo.src changelog.
11989
11990 980302  4.2 release for upload to prep.ai.mit.edu
11991         + correct Florian's email address in ncurses-intro.html
11992         + terminfo.src 10.2.0 (ESR).
11993
11994 980228  pre-release
11995         + add linux-koi8r replace linux-koi8, which is not KOI8 (patch by
11996           QingLong <qinglong@Bolizm.ihep.su>).
11997         + minor documentation fixes (patch by Juergen Pfeifer).
11998         + add setlocale() call to ncurses.c (reported by Claes G. Lindblad
11999           <claesg@algonet.se>).
12000         + correct sign-extension in lib_insstr.c (reported by Sotiris
12001           Vassilopoulos <svas@leon.nrcps.ariadne-t.gr>)
12002
12003 980221  pre-release
12004         + regenerated some documentation overlooked in 980214 patch
12005           (ncurses-intro.doc, curs_outopts.3x.html)
12006         + minor ifdef change to C++ binding to work with gcc 2.8.0 (patch by
12007           Juergen Pfeifer).
12008         + change maintainer's mailing address to florian@gnu.org, change
12009           tentative mailing list address to bug-ncurses-request@gnu.org (patch
12010           by Florian La Roche).
12011         + add definition of $(REL_VERSION) to c++/Makefile.in (reported by Gran
12012           Hasse <gh@raditex.se>).
12013         + restore version numbers to Ada95 binding, accidentally deleted by
12014           copyright patch (patch by Juergen Pfeifer).
12015
12016 980214  pre-release
12017         + remove ncurses.lsm from MANIFEST so that it won't be used in FSF
12018           distributions, though it is retained in development.
12019         + correct scaling of milliseconds to nanoseconds in lib_napms.c (patch
12020           by Jeremy Buhler).
12021         + update mailing-list information (bug-ncurses@gnu.org).
12022         + update announcement for upcoming 4.2 release.
12023         + modify -lm test to check for 'sin()' rather than 'floor()'
12024         + remove spurious commas from terminfo.src descriptions.
12025         + change copyright notices to Free Software Foundation
12026
12027 980207
12028         + minor fixes for autoconf macros CF_ERRNO, CF_HELP_MESSAGE and
12029           CF_SIZECHANGE
12030         + modify Makefile.glibc so that $(objpfx) is defined (H.J.Lu).
12031         + ifdef-out true-return from _nc_mouse_inline() which depends on
12032           merge of QNX patch (pending 4.2 release).
12033         > patch to split off seldom-used modules in ncurses (J T Conklin):
12034           This reduces size by up to 2.6kb.
12035         + move functionality of _nc_usleep into napms, add configuration case
12036           for nanosleep().
12037         + moved wchgat() from lib_addch.c to lib_chgat.c
12038         + moved clearok(), immedok(), leaveok(), and scrollok() from
12039           lib_options.c to lib_clearok.c, lib_immedok.c, lib_leaveok.c and
12040           lib_scrollok.c.
12041         + moved napms() from lib_kernel.c to lib_napms.c
12042         + moved echo() and noecho() from lib_raw.c to lib_echo.c
12043         + moved nl() and nonl() from lib_raw.c to lib_nl.c
12044
12045 980131
12046         + corrected conversion in tclock.c (cf: 971018).
12047         + updates to Makefile.glibc and associated Linux configure script
12048           (patch by H.J.Lu).
12049         + workaround a quoting problem on SunOS with tar-copy.sh
12050         + correct init_pair() calls in worm.c to work when use_default_colors()
12051           is not available.
12052         + include <sys/types.h> in CF_SYS_TIME_SELECT to work with FreeBSD
12053           2.1.5
12054         + add ncv capability to FreeBSD console (cons25w), making reverse
12055           work with color.
12056         + correct sense of configure-test for sys/time.h inclusion with
12057           sys/select.h
12058         + fixes for Ada95/ada_include/Makefile.in to work with --srcdir option.
12059         + remove unused/obsolete test-program rules from progs/Makefile.in
12060           (the rules in ncurses/Makefile.in work).
12061         + remove shared-library loader flags from test/Makefile.in, etc.
12062         + simplify test/configure.in using new version of autoconf to create
12063           test/ncurses_cfg.h
12064         + suppress suffix rules in test/Makefile.in, provide explicit
12065           dependency to work with --srcdir option and less capable 'make'
12066           programs.
12067         > adapted from patch for QNX by Xiaodan Tang:
12068         + initialize %P and %g variables set/used in tparm, and also ensure
12069           that empty strings don't return a null result from tparam_internal
12070         + add QNX-specific prototype for vsscanf()
12071         + move initialization of SP->_keytry from init_keytry() to newterm() to
12072           avoid resetting it via a keyok() call by mouse_activate().
12073         + reorganized some functions in lib_mouse() to use case-statements.
12074         + remove sgr string from qnx terminfo entry since it is reported to
12075           turn off attributes inconsistently.
12076
12077 980124
12078         + add f/F/b/B commands to ncurses 'b' test to toggle colors, providing
12079           test for no_color_video.
12080         + adjusted emx.src to use no_color_video, now works with ncurses 'b'
12081           and 'k' tests.
12082         + implement no_color_video attribute, and as a special case, reverse
12083           colors when the reverse attribute cannot be combined with color.
12084         + check for empty string in $TERM variable (reported by Brett Michaels
12085           <brett@xylan.com>).
12086         > from reports by Fred Fish:
12087         + add configure-test for isascii
12088         + add configure-test for -lm library.
12089         + modify CF_BOOL_SIZE to check if C++ bool types are unsigned.
12090         > patches by J.J.G.Ripoll
12091         + add configure/makefile variables to support .exe extension on
12092           OS/2 EMX (requires additional autoconf patches).
12093         + explicitly initialize variables in lib_data.c to appease OS/2 linker
12094         > patches by Fred Fish <fnf@ninemoons.com>
12095         + misc/Makefile.in (install.data):  Avoid trying to install the CVS
12096           directory.
12097         + aclocal.m4 (install.includes):  Remove files in the include directory
12098           where we are going to install new ones, not the original source
12099           files.
12100         + misc/terminfo.src:  Add entry for "beterm", derived from termcap
12101           distributed with BeOS PR2 using captoinfo.
12102         + aclocal.m4: Wrap $cf_cv_type_of_bool with quotes (contains space)
12103         + aclocal.m4: Assume bool types are unsigned.
12104         + progs/infocmp.c: workaround mwcc 32k function data limit
12105
12106 980117
12107         + correct initialization of color-pair (cf: 970524) in xmas.c, which
12108           was using only one color-pair for all colors (reported by
12109           J.J.G.Ripoll).
12110         + add multithread options for objects build on EMX, for compatibility
12111           with XFree86.
12112         + split up an expression in MKlib_gen.sh to work around a problem on
12113           OS/2 EMX, with 'ash' (patch by J.J.G.Ripoll).
12114         + change terminfo entries xterm (xterm-xf86-v40), xterm-8bit rs1 to use
12115           hard reset.
12116         + rename terminfo entry xterm-xf86-v39t to xterm-xf86-v40
12117         + remove bold/underline from sun console entries since they're not
12118           implemented.
12119         + correct _tracef calls in _tracedump(), which did not separate format
12120           from parameters.
12121         + correct getopt string for tic "-o" option, and add it to man-page
12122           synopsis (reported by Darren Hiebert <darren@hmi.com>).
12123         + correct typo in panel/Makefile.in, reversed if-statement in scrolling
12124           optimization (Alexander V.  Lukyanov).
12125         + test for 'remove()', use 'unlink() if not found (patch by Philippe De
12126           Muyter <phdm@macqel.be>).
12127         > patches by Juergen Pfeifer:
12128         + Improve a feature of the forms driver.  For invisible fields
12129           (O_VISIBLE off) only the contents but not the attributes are cleared.
12130           We now clear both.  (Reported by Javier Kohan
12131           <jkohan@adan.fceia.unr.edu.ar>)
12132         + The man page form_field_opts.3x makes now clear, that invisible
12133           fields are also always inactive.
12134         + adjust ifdef's to compile the C++ binding with the just released
12135           gcc-2.8.0 c++ and the corresponding new C++ libraries.
12136
12137 980110
12138         + correct "?" command in ncurses.c; it was performing non-screen writes
12139           while the program was in screen mode.  (It "worked" in 1.9.9e because
12140           that version sets OPOST and OCRNL incorrectly).
12141         + return error from functions in lib_kernel, lib_raw and lib_ti if
12142           cur_term is null, or if underlying I/O fails.
12143         + amend change to tputs() so that it does not return an error if
12144           cur_term is null, since some applications depend on being able to use
12145           tputs without initializing the terminal (reported by Christian J.
12146           Robinson <infynity@cyberhighway.net>).
12147
12148 980103
12149         + add a copy of emx.src from J.J.G.Ripoll's OS/2 EMX version of ncurses
12150           1.9.9e, together with fixes/additions for the "ansi" terminal type.
12151         + add tic check for save/restore cursor if change_scroll_region is
12152           defined (reference: O'Reilly book).
12153         + modify read_termcap.c to handle EMX-style pathnames (reported by
12154           J.J.G.Ripoll).
12155         + modify lib_raw.c to use EMX's setmode (patch from J.J.G.Ripoll).
12156           Ripoll says EMX's curses does this.
12157         + modify _nc_tic_expand() to generate \0 rather than \200.
12158         + move/revise 'expand()' from dump_entry.c to ncurses library as
12159           _nc_tic_expand(), for use by tack.
12160         + decode \a as \007 for terminfo, as per XSI.
12161         + correct translation of terminfo "^@", to \200, like \0.
12162         + modify next_char() to treat <cr><lf> the same as <newline>, for
12163           cross-platform compatibility.
12164         + use new version of autoconf (971230) to work around limited
12165           environment on CLIX, due to the way autoconf builds --help message.
12166         > patch by Juergen Pfeifer:
12167         + check that the Ada95 binding runs against the correct version of
12168           ncurses.
12169         + insert constants about the library version into the main spec-file of
12170           the Ada95 binding.
12171
12172 971227
12173         + modify open/fopen calls to use binary mode, needed for EMX.
12174         + modify configure script to work with autoconf 2.10 mods for OS/2
12175           EMX (from J.J.G.Ripoll).
12176         + generated ncurses_cfg.h with patch (971222) to autoconf 2.12 which
12177           bypasses limited sed buffer length.
12178         > several changes from Juan Jose Garcia Ripoll <worm@arrakis.es>
12179           (J.J.G.Ripoll) to support OS/2 EMX:
12180         + add a _scrolling flag to SP, to set when we encounter a terminal
12181           that simply cannot scroll.
12182         + corrected logic in _nc_add_to_try(), by ensuring that strings with
12183           embedded \200 characters are matched.
12184         + don't assume the host has 'link()' function, for linking terminfo
12185           entries.
12186
12187 971220
12188         + if there's no ioctl's to support sigwinch handler, disable it.
12189         + add configure option --disable-ext-funcs to remove the extended
12190           functions from the build.
12191         + add configure option --with-termlib to generate the terminfo
12192           functions as a separate library.
12193         + add 'sources' rule to facilitate cross-compiling.
12194         + review/fix order of mostlyclean/clean/distclean rules.
12195         + modify install-rule for headers to first remove old header, in
12196           case there was a symbolic link that confuses the install script.
12197         + corrected substitution for NCURSES_CONST in term.h (cf: 971108)
12198         + add null pointer checks in wnoutrefresh(), overlap() (patch by
12199           Xiaodan Tang <xtang@qnx.com>)
12200         + correct tputs(), which could dereference a null cur_term if invoked
12201           before terminal is initialized (patch by Christopher Seawood
12202           <cls@seawood.org>)
12203         > patch by Juergen Pfeifer:
12204         + makes better use of "pragma Inline" in the Ada95 binding
12205         + resynchronizes the generated html manpages
12206
12207 971213
12208         + additional fixes for man-pages section-references
12209         + add (for debugging) a check for ich/ich1 conflict with smir/rmir
12210           to tic, etc.
12211         + remove hpa/vpa from rxvt terminal description because they are not
12212           implemented correctly, added sgr0.
12213         + change ncurses 's' to use raw mode, so ^Q works (reported by Rudolf
12214           Leitgeb <leitgeb@leland.stanford.edu>)
12215
12216 971206
12217         + modify protection when installing libraries to (normally) not
12218           executable.  HP-UX shared libraries are an exception.
12219         + add configure check for 'tack'.
12220         + implement script for renaming section-references in man-page install,
12221           for Debian configuration.
12222         + add validity-check for SP in trace code in baudrate() (reported by
12223           Daniel Weaver).
12224         > patch by Alexander V. Lukyanov (fixes to match sol25 curses)
12225         + modify 'overlay()' so that copy applies target window background to
12226           characters.
12227         + correct 'mvwin()' so that it does not clear the previous locations.
12228         + correct lib_acs.c so that 8-bit character is not sign expanded in
12229           case of wide characters in chtype.
12230         + correct control-char test in lib_addch.c for use with wide chars
12231         + use attribute in the chtype when adding a control character in
12232           lib_addch.c control char was added with current attribute
12233
12234 971129
12235         + save/restore errno in _tracef() function
12236         + change treatment of initialize_color to use a range of 0..1000
12237           (recommended by Daniel Weaver).
12238         + set umask in mkinstalldirs, fixing problems reported by users who
12239           have set root's umask to 077.
12240         + correct bug in tic that caused capabilities to be reprinted at the
12241           end of output when they had embedded comments.
12242         + rewrote wredrawln to correspond to XSI, and split-out since it is
12243           not often used (from report by Alexander V. Lukyanov, 970825)
12244         + rewrote Dan Nelson's change to make it portable, as well as to
12245           correct logic for handling backslashes.
12246         + add code to _nc_tgetent() to make it work more like a real tgetent().
12247           It removes all empty fields, and removes all but the first in a group
12248           of duplicate caps.  The code was pulled from the BSD libtermcap code
12249           in termcap.c (patch by Dan Nelson <dnelson@emsphone.com>
12250         + don't include --enable-widec in the --with-develop configure option,
12251           since it is not binary-compatible with 4.1 (noted by Alexander V.
12252           Lukyanov)
12253         > patch by Juergen Pfeifer:
12254         + further improvements of the usage of elaboration pragmas in the Ada95
12255           binding
12256         + enhanced Ada95 sample to use the user_data mechanism for panels.
12257         + a fix for the configuration script to make gnat-3.10 the required
12258           version.
12259         + resync of the html version of the manpages
12260
12261 971122
12262         > fixes/updates for terminfo.src:
12263         + add vt220-js, pilot, rbcomm, datapoint entries from esr's 27-jun-97
12264           version.
12265         + add hds200 description (Walter Skorski)
12266         + add EMX 0.9b descriptions
12267         + correct rmso/smso capabilities in wy30-mc and wy50-mc (Daniel Weaver)
12268         + rename xhpterm back to hpterm.
12269         > patch by Juergen Pfeifer:
12270         + Improves the usage of elaboration pragmas for the Ada95 binding.
12271         + Adds a translation of the test/rain.c into Ada95 to the samples.
12272           This has been contributed to the project by Laurent Pautet
12273           (pautet@gnat.com)
12274
12275 971115
12276         + increase MAX_NAME_SIZE to 512 to handle extremely long alias list
12277           in HP-UX terminfo.
12278         + correction & simplification of delay computation in tputs, based on
12279           comments from Daniel Weaver.
12280         + replace test for SCO with more precise header tests.
12281         + add configure test for unsigned literals, use in NCURSES_BITS macro.
12282         + comment-out the -PIC, etc., flags from c++, progs and test makefiles
12283           since they probably are not needed, and are less efficient (noted by
12284           Juergen Fluk)
12285         + add -L$(libdir) to loader options, after -L../lib so that loaders
12286           that record this information will tend to do the right thing if
12287           the programs are moved around after installing them (suggested by
12288           Juergen Fluk).
12289         + add -R option to loader options for programs for Solaris if the
12290           --enable-rpath option is specified for the libraries.
12291
12292 971112
12293         + correct installed filename for shared libraries on *BSD (reported by
12294           Juergen Fluk).
12295
12296 971108
12297         + cleanup logic for deciding when tputs() should call delay_output(),
12298           based on comments from Daniel Weaver.
12299         + modified tputs() to avoid use of float.
12300         + correct use of trailpad in tputs(), which used the wrong variable
12301           in call to delay_output().
12302         + correct inverted expression for null-count in delay_output()
12303           (analysis by Daniel Weaver).
12304         + apply --enable-rpath option to Solaris (requested by Larry Virden).
12305         + correct substitution of EXTRA_CFLAGS for gcc 2.6.3
12306         + correct check for error-return by _nc_tgetent(), which returns 0
12307           for success.
12308         + add configure test for BSD 4.4 cgetent() function, modify
12309           read_termcap.c to use the host's version of that if found, using the
12310           terminal database on FreeBSD (reported by Peter Wemm).
12311         + add u8, u9 strings to sun-il description for Daniel Weaver.
12312         + use NCURSES_CONST in panel's user-pointer.
12313         + modify edit_cfg.sh and MKterm.h.awk.in to substitute NCURSES_CONST
12314           so that will work on NeXT.
12315         + use _nc_set_screen() rather than assignments to SP to fix port to
12316           NeXT (reported by Francisco A. Tomei Torres).
12317
12318 971101
12319         + force mandatory padding in bell and flash_screen, as specified in
12320           XSI.
12321         + don't allow padding_baud_rate to override mandatory delays (reported
12322           by Daniel Weaver).
12323         + modify delay_output() to use _nc_timed_wait() if no baudrate has been
12324           defined, or if the cur_term pointer is not initialized.  XSI treats
12325           this as unspecified.  (requested by Daniel Weaver).
12326         + change getcap-cache ifdef's to eliminate unnecessary chdir/mkdir
12327           when that feature is not configured.
12328         + remove _nc_err_abort() calls when write_entry.c finds a directory but
12329           cannot write to it, e.g., when translating part/all of /etc/termcap
12330           (reported by Andreas Jaeger <aj@arthur.rhein-neckar.de>).
12331           (this dates back to 951102 in 1.9.7a).
12332         + minor ifdef fixes to compile with atac and glibc 2.0.5c
12333         + add check for -lgen when configuring regexpr.h
12334         + modify Solaris shared-library option "-d y" to "-dy" to workaround
12335           incompatibility of gcc 2.7.2 vs vendor's tools.
12336
12337 971026
12338         + correct ifdef's for struct winsize vs struct ttysize in lib_setup.c
12339           to compile on SCO.
12340         + remove dangling backslash in panel/Makefile.in
12341         + modify MKkeyname.awk to work with SCO's nawk, which dumps core in the
12342           length() function.
12343         + correct length of allocation in _nc_add_to_try(), to allow for
12344           trailing null.
12345         + correct logic in _nc_remove_key(), which was discarding too many
12346           nodes (patch by Alexander V. Lukyanov)
12347
12348 971025
12349         + add definition for $(REL_VERSION) to test/Makefile.in, so *BSD
12350           shared libraries link properly (see 970524).
12351         + modify Linux shared-library generation to include library
12352           dependencies (e.g., -lncurses and -lgpm) in the forms, menu and
12353           panel libraries (suggested by Juergen Pfeifer).
12354         + modify configure script to use config.guess and config.sub rather
12355           than uname, which is unreliable on some systems.
12356         + updated Makefile.glibc, test-built with glibc 2.0.5c
12357         + modify keyname() to return values consistent with SVr4 curses (patch
12358           by Juergen Fluk).
12359         > changes requested by Daniel Weaver:
12360         + modify delay_output() so that it uses the same output function as
12361           tputs() if called from that function.
12362         + move _baudrate from SCREEN to TERMINAL so that low-level use of
12363           tputs works when SP is not set.
12364         > patch by Juergen Pfeifer:
12365         + factor lib_menu and lib_form into smaller modules
12366         + clean up the interface between panel and SCREEN
12367         + minor changes to the Ada95 mouse support implementation
12368         + minor bugfix in C++ binding to ripoff windows
12369         + fix a few Ada95 html documentation pages
12370
12371 971018
12372         + split-out lib_ungetch.c, make runtime link to resizeterm() to
12373           decouple those modules from lib_restart.c
12374         + add xterm-xf86-v39t description to terminfo.src
12375         + reset SP->_endwin in lib_tstp.c cleanup() function after calling
12376           endwin() to avoid unnecessary repainting if the application has
12377           established an atexit function, etc.  Encountered this problem in
12378           the c++ demo, whose destructors repaint the screen.
12379         + combine _nc_get_screensize() and resizeterm() calls as new function
12380           _nc_update_screensize().
12381         + minor fixes to allow compile with g++ (suggested by Nelson H. F.
12382           Beebe).
12383         + implement install-rules for Ada95 makefiles.
12384         + use screen_lines or MAXLINES as needed where LINES was coded,
12385           as well as screen_columns for COLS, in the ncurses library.
12386         > patch by Alexander V. Lukyanov:
12387         + modify logic for ripped-off lines to handle several SCREENs.
12388         > patch by Juergen Pfeifer:
12389         + factors lib_slk.c into some smaller modules
12390         + factors panel.c into some smaller modules
12391         + puts the static information about the current panel stack into the
12392           SCREEN structure to allow different panel stacks on different
12393           screens.
12394         + preliminary fix for an error adjusting LINES to account for
12395           ripped-off lines.
12396
12397 971011
12398         + move _nc_max_click_interval and other mouse interface items to SCREEN
12399           struct so that they are associated with a single terminal, and also
12400           save memory when the application does not need a mouse (roughly 3k vs
12401           0.5k on Linux).
12402         + modify mouseinterval() so that a negative parameter queries the
12403           click-interval without modifying it.
12404         + modify ncurses 'i' test to work with ncurses' apparent extension from
12405           SVr4, i.e., allows nocbreak+noecho (analysis by Alexander V.
12406           Lukyanov).
12407         + add configure options --with-ada-includes and --with-ada-objects,
12408           to drive Ada95 binding install (not yet implemented).
12409         + install C++ binding as -lncurses++ and associated headers with the
12410           other ncurses headers.
12411         + fix header uninstall if configure --srcdir is used.
12412         > minor interface changes to support 'tack' program -TD
12413           (request by Daniel Weaver <danw@znyx.com>).
12414         + export functions _nc_trans_string() and _nc_msec_cost().
12415         + add variable _nc_nulls_sent, to record the number of padding
12416           characters output in delay_output().
12417         + move tests for generic_type and hard_copy terminals in setupterm()
12418           to the end of that function so that the library will still be
12419           initialized, though not generally useful for curses programs.
12420         > patches by Alexander V. Lukyanov:
12421         + modify ClrBottom() to avoid using clr_eos if there is only one line
12422           to erase.
12423         + typo in configure --help.
12424         > patch by J T Conklin (with minor resync against Juergen's changes)
12425         + split-out lib_flash.c from lib_beep.c
12426         + split-out lib_hline.c and lib_vline.c from lib_box.c
12427         + split-out lib_wattron.c, lib_wattroff.c from lib_addch.c
12428
12429 971005
12430         > patch by Juergen Pfeifer:
12431         + correct source/target of c++/edit_cfg.sh
12432
12433 971004
12434         + add color, mouse support to kterm terminfo entry.
12435         + modify lib_mouse.c to recognize rxvt, kterm, color_xterm also as
12436           providing "xterm"-style mouse.
12437         + updated rxvt's terminfo description to correspond to 2.21b, with
12438           fixes for the acsc (the box1 capability is incorrect, ech1 does not
12439           work).
12440         + fix logic in parse_entry.c that discarded acsc when 'synthesizing'
12441           an entry from equivalents in XENIX or AIX.  This lets ncurses handle
12442           the distribution copy of rxvt's terminfo.
12443         + modify acsc capability for linux and linux-koi8 terminfo descriptions
12444           (from Pavel Roskin <pavel@absolute.spb.su>).
12445         + corrected definition in curses.h for ACS_LANTERN, which was 'I'
12446           rather than 'i' (see 970802).
12447         + updated terminfo.src with reformatted acsc entries, and repaired the
12448           trashed entries with spurious '\' characters that this exposed.
12449         + add logic to dump_entry.c to reformat acsc entries into canonical
12450           form (sorted, unique mapping).
12451         + add configure script to generate c++/etip.h
12452         + add configure --with-develop option, to enable by default most of the
12453           experimental options (requested by Alexander V. Lukyanov).
12454         + rename 'deinstall' to 'uninstall', following GNU convention
12455           (suggested by Alexander V. Lukyanov).
12456         > patches by Alexander V. Lukyanov:
12457         + modify tactics 2 and 5 in onscreen_mvcur(), to allow them on the last
12458           line of the screen, since carriage return will not cause a newline.
12459         + remove clause from PutCharLR() that would try to use
12460           eat_newline_glitch since that apparently does not work on some
12461           terminals (e.g., M$ telnet).
12462         + correct a limit check in scroll_csr_backward()
12463         > patches by Juergen Pfeifer:
12464         + adds dummy implementations of methods above() and below() to the
12465           NCursesPanel class.
12466         + fixes missing returncode in NCursesWindow::ripoffline()
12467         + fixes missing returncode in TestApplication::run() in demo.cc
12468         + We should at least give a comment in etip.h why it is currently a
12469           problem to install the C++ binding somewhere
12470         + makes the WINDOW* argument of wenclose() a const.
12471         + modifies several of the routines in lib_adabind.c to use a const
12472           WINDOW* argument.
12473
12474 970927
12475         + add 'deinstall' rules.
12476         + use explicit assignments in configure --without-progs option to
12477           work around autoconf bug which doesn't always set $withval.
12478         + check for ldconfig, don't try to run it if not found.
12479         + implement simple/unoptimized case in lib_doupdate.c to handle
12480           display with magic cookie glitch, tested with ncurses.c program.
12481         + correct missing _tracef in getmouse(), to balance the returnCode
12482           macro.
12483         + simplify show_attr() in ncurses.c using termattrs().
12484         > patches by Juergen Pfeifer:
12485         + provides missing inlines for mvw[hv]line in cursesw.h of the C++
12486           binding
12487         + fixes a typo in a comment of frm_driver.c
12488         + Enhances Ada95 Makefiles to fulfill the requirement of GNAT-3.10 that
12489           generics should be compiled.  Proper fixes to the configuration
12490           scripts are also provided.
12491
12492 970920
12493         + several modifications to the configure script (requested by Ward
12494           Horner):
12495           + add configure options --without-progs, to suppress the build of the
12496             utility programs, e.g., for cross-compiling.
12497           + add $(HOSTCCFLAGS) and $(HOSTLDFLAGS) symbols to ncurses
12498             Makefile.in, to simplify setup for cross compiling.
12499           + add logic in configure script to recognize "--target=vxworks", and
12500             generate load/install actions for VxWorks objects.
12501         + move typedef for sigaction_t into SigAction.h to work around problem
12502           generating lint library.
12503         + modify fty_regex.c to reflect renaming of ifdef's for regular
12504           expressions.
12505         + simplify ifdef in lib_setup.c for TIOCGWINSZ since that symbol may
12506           reside in <sys/ioctl.h>.
12507         + merge testcurs.c with version from PDCurses 2.3, clarifying some of
12508           the more obscure tests, which rely upon color.
12509         + use macros getbegyx() and getmaxyx() in newdemo.c and testcurs.c
12510         + modify ncurses.c to use getbegyx() and getmaxyx() macros to cover up
12511           implementation difference wrt SVr4 curses, allow 's' test to work.
12512         + add missing endwin() to testscanw.c program (reported by Fausto
12513           Saporito <fausap@itb.it>).
12514         + fixes/updates for Makefile.glibc and related files under sysdeps
12515           (patch by H.J.Lu).
12516         > patches by Juergen Pfeifer:
12517         + add checks for null pointers, especially WINDOW's throughout the
12518           ncurses library.
12519         + solve a problem with wrong calculation of panel overlapping (reported
12520           by Ward Horner):
12521           + make sure that a panel's window isn't a pad.
12522           + do more error checking in module lib_touch.c
12523         + missing files for Ada95 binding from the last patch
12524         + synch. of generated html pages (RCS-Id's were wrong in html files)
12525         + support for Key_Resize in Ada binding
12526         + changed documentation style in ./c++/cursesm.h
12527         > patches by Alexander V. Lukyanov:
12528         + undo attempt to do recursive inlining for PutChar(), noting that it
12529           did not improve timing measurably, but inflated the size of
12530           lib_doupdate.o
12531
12532 970913
12533         + modify rain.c to use color.
12534         + correct scroll_csr_backward() to match scroll_csr_forward().
12535         + minor adjustment to llib-lncurses, to work with Solaris 2.5.1
12536         + minor fixes to sysdeps/unix/sysv/linux/configure to reflect renaming
12537           of configure cache variables in 970906.
12538         + correct logic involving changes to O_VISIBLE option in
12539           Synchronize_Options function in frm_driver.c (Tony Hoffmann
12540           <Tony.Hoffmann@hia.nrc.ca>)
12541         + add $(HOSTCC) symbol to ncurses Makefile.in, to simplify setup for
12542           cross compiling (suggested by Chris Johns).
12543         + modify ifdef in lib_setup.c to only include <sys/ioctl.h> if we can
12544           use it to support screen-size calculation (reported by Chris Johns).
12545         + #undef unctrl to avoid symbol conflict in port to RTEMS (reported by
12546           Chris Johns <cjohns@plessey.com.au>)
12547         > patches by Juergen Pfeifer:
12548         + simplified, made minor corrections to Ada95 binding to form
12549           fieldtype.
12550         + The C++ binding has been enhanced:
12551           + Improve NCursesWindow class:  added additional methods to cover
12552             more ncurses functionality.  Make refresh() and noutrefresh()
12553             virtual members to allow different implementation in the
12554             NCursesPanel class.
12555           + CAUTION:  changed order of parameters in vline() and hline() of
12556             NCursesWindow class.
12557           + Make refresh() in NCursesPanel non-static, it is now a
12558             reimplementation of refresh() in the base class.  Added
12559             noutrefresh() to NCursesPanel.
12560           + Added NCursesForm and related classes to support libform
12561             functionality.
12562           + Moved most of configuration related stuff from cursesw.h to etip.h
12563           + Added NCursesApplication class to support easy configuration of
12564             menu and forms related attributes as well as ripped of title lines
12565             and Soft-Label-Keys for an application.
12566           + Support of Auto-Cleanup for a menu's fieldlist.
12567           + Change of return type for current_item() and operator[] for menus.
12568           + Enhanced demo.
12569         + Fixed a bug in form/fld_def.c:  take into account that copyarg and
12570           freearg for a fieldtype may be NULL, makearg must not be NULL
12571         + Fixed a bug in form/fld_type.c:  in set_fieldtype_arg() makearg must
12572           not be NULL, copyarg and freearg may be NULL.
12573         + Fixed a bug in form/frm_def.c:  Allow Disconnect_Fields() if it is
12574           already disconnected.
12575         + Enhance form/frm_driver.c:  Allow growth of dynamic fields also on
12576           navigation requests.
12577         + Fixed a bug in form/fty_enum.c:  wrong position of postincrement in
12578           case-insensitiva comparison routine.
12579         + Enhanced form/lib_adabind.c with function _nc_get_field() to get a
12580           forms field by index.
12581         + Enhanced menu/m_adabind.c with function _nc_get_item() to get a menus
12582           item by index.
12583         + Fixed in curses.h.in:  make chtype argument for pechochar() constant.
12584           Mark wbkgdset() as implemented, remove wbkgdset macro, because it was
12585           broken (didn't handle colors correctly).
12586         + Enhanced lib_mouse.c: added _nc_has_mouse() function
12587         + Added _nc_has_mouse() prototype to curses.priv.h
12588         + Modified lib_bkgd.c:  hopefully correct implementation of wbkgdset();
12589           streamlined implementation of wbkgd()
12590         + Modified lib_mvwin.c:  Disable move of a pad.  Implement (costly)
12591           move of subwindows.  Fixed update behavior of movements of regular
12592           windows.
12593         + Fixed lib_pad.c:  make chtype argument of pechochar() const.
12594         + Fixed lib_window.c:  dupwin() is not(!) in every bit a really clone
12595           of the original.  Subwindows become regular windows by doing a
12596           dupwin().
12597         + Improved manpage form_fieldtype.3x
12598         > patches by Alexander V. Lukyanov:
12599         + simplify the PutChar() handling of exit_am_mode, because we already
12600           know that auto_right_margin is true.
12601         + add a check in PutChar() for ability to insert to the case of
12602           shifting character to LR corner.
12603         + in terminal initialization by _nc_screen_resume(), make sure that
12604           terminal right margin mode is known.
12605         + move logic that invokes touchline(), or does the equivalent, into
12606           _nc_scroll_window().
12607         + modify scrolling logic use of insert/delete line capability, assuming
12608           that they affect the screen contents only within the current
12609           scrolling region.
12610         + modify rain.c to demonstrate SIGWINCH handler.
12611         + remove logic from getch() that would return an ERR if the application
12612           called getch() when the cursor was at the lower-right corner of the
12613           physical screen, and the terminal does not have insert-character
12614           ability.
12615         + change view.c so that it breaks out of getch() loop if a KEY_RESIZE
12616           is read, and modify logic in getch() so this fix will yield the
12617           desired behavior, i.e., the screen is repainted automatically when
12618           the terminal window is resized.
12619
12620 970906
12621         + add configure option --enable-sigwinch
12622         + modify view.c to test KEY_RESIZE logic, with "-r" option.
12623         + modify testcurs.c to eliminate misleading display wrt cursor type
12624           by testing if the terminal supports cnorm, civis, cvvis.
12625         + several fixes for m68k/NeXT 4.0, to bring cur_term, _nc_curr_line and
12626           _nc_curr_col variables into linked programs:  move these variables,
12627           making new modules lib_cur_term and trace_buf (reported by Francisco
12628           Alberto Tomei Torres <fatomei@sandburg.unm.edu>).
12629         > patches by Alexander V. Lukyanov:
12630         + add pseudo-functionkey KEY_RESIZE which is returned by getch() when
12631           the SIGWINCH handler has been called since the last call to
12632           doupdate().
12633         + modify lib_twait.c to hide EINTR only if HIDE_EINTR is defined.
12634         + add SIGWINCH handler to ncurses library which is used if there is no
12635           application SIGWINCH handler in effect when the screen is
12636           initialized.
12637         + make linked list of all SCREEN structures.
12638         + move curses.h include before definition of SCREEN to use types in
12639           that structure.
12640         + correction to ensure that wgetstr uses only a newline to force a
12641           scroll (970831).
12642
12643 970831
12644         + add experimental configure option --enable-safe-sprintf; the normal
12645           mode now allocates a buffer as large as the screen for the
12646           lib_printw.c functions.
12647         + modify wgetch to refresh screen when reading ungetch'd characters,
12648           since the application may require this - SVr4 does this.
12649         + refine treatment of newline in wgetstr to echo only when this would
12650           force the screen to scroll.
12651
12652 970830
12653         + remove override in wgetstr() that forces keypad(), since SVr4 does
12654           not do this.
12655         + correct y-reference for erasure in wgetstr() when a wrap forces a
12656           scroll.
12657         + correct x-position in waddch() after a wrap forces a scroll.
12658         + echo newline in wgetstr(), making testscanw.c scroll properly when
12659           scanw is done.
12660         + modify vwscanw() to avoid potential buffer overflow.
12661         + rewrote lib_printw.c to eliminate fixed-buffer limits.
12662         > patches by Alexander V. Lukyanov:
12663         + correct an error in handling cooked mode in wgetch(); processing
12664           was in the wrong order.
12665         + simplified logic in wgetch() that handles backspace, etc., by using
12666           wechochar().
12667         + correct wechochar() so that it interprets the output character as
12668           in waddch().
12669         + modify pechochar() to use prefresh() rather than doupdate(), since
12670           the latter does not guarantee immediate refresh of the pad.
12671         + modify pechochar() so that if called with a non-pad WINDOW, will
12672           invoke wechochar() instead.
12673         + modify fifo indices to allow fifo to be longer than 127 bytes.
12674
12675 970823
12676         + add xterm-8bit to terminfo.src
12677         + moved logic for SP->_fifohold inside check_pending() to make it
12678           work properly when we add calls to that function.
12679         + ensure that bool functions return only TRUE or FALSE, and TRUE/FALSE
12680           are assigned to bool values (patch by H.J.Lu).
12681         > patches by Alexander V. Lukyanov:
12682         + several fixes to getch:
12683           1.  Separate cooked and raw keys in fifo
12684           2.  Fix the case of ungetch'ed KEY_MOUSE
12685           3.  wrap the code for hiding EINTR with ifdef HIDE_EINTR
12686           4.  correctly handle input errors (i.e., EINTR) without loss of raw
12687               keys
12688           5.  recognize ESC KEY_LEFT and similar
12689           6.  correctly handle the case of reception of KEY_MOUSE from gpm
12690         + correct off-by-one indexing error in _nc_mouse_parse(), that caused
12691           single mouse events (press/release) to be ignored in favor of
12692           composed events (click).  Improves on a fix from integrating gpm
12693           support in 961229.
12694         + add another call to check_pending, before scrolling, for
12695           line-breakout optimization
12696         + improve hashmap.c by
12697           1.  fixed loop condition in grow_hunks()
12698           2.  not marking lines with offset 0
12699           3.  fixed condition of 'too far' criteria, thus one-line hunks are
12700           ignored and two lines interchanged won't pass.
12701         + rewrote/simplified _nc_scroll_optimize() by separating into two
12702           passes, forward/backward, looking for chunks moving only in the given
12703           direction.
12704         + move logic that emits sgr0 when initializing the screen to
12705           _nc_screen_init(), now invoked from newterm.
12706         + move cursor-movement cleanup from endwin() into _nc_mvcur_wrap()
12707           function and screen cleanup (i.e., color) into _nc_screen_wrap()
12708           function.
12709         + add new functions _nc_screen_init(), _nc_screen_resume() and
12710           _nc_screen_wrap().
12711         + rename _nc_mvcur_scrolln() to _nc_scrolln().
12712         + add a copy of acs_map[] to the SCREEN structure, where it can be
12713           stored/retrieved via set_term().
12714         + move variables _nc_idcok, _nc_idlok, _nc_windows into the SCREEN
12715           structure.
12716
12717 970816
12718         + implement experimental _nc_perform_scroll().
12719         + modify newterm (actually _nc_setupscreen()) to emit an sgr0 when
12720           initializing the screen, as does SVr4 (reported by Alexander V.
12721           Lukyanov).
12722         + added test_progs rule to ncurses/Makefile.
12723         + modify test/configure.in to check if initscr is already in $LIBS
12724           before looking for (n)curses library.
12725         + correct version-number in configure script for OSF1 shared-library
12726           options (patch by Tim Mooney).
12727         + add -DNDEBUG to CPPFLAGS for --enable-assertions (as Juergen
12728           originally patched) since the c++ demo files do not necessarily
12729           include ncurses_cfg.h
12730         + supply default value for --enable-assertions option in configure
12731           script (reported by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>).
12732         > patches by Alexander V. Lukyanov:
12733         + correct/simplify logic of werase(), wclrtoeol() and wclrbot().  See
12734           example firstlast.c
12735         + optimize waddch_literal() and waddch_nosync() by factoring out
12736           common subexpressions.
12737         + correct sense of NDEBUG ifdef for CHECK_POSITION macro.
12738         + corrections to render_char(), to make handling of colored blanks
12739           match SVr4 curses, as well as to correct a bug that xor'd space
12740           against the background character.
12741         + replaced hash function with a faster one (timed it)
12742         + rewrote the hashmap algorithm to be one-pass, this avoids multiple
12743           cost_effective() calls on the same lines.
12744         + modified cost_effective() so it is now slightly more precise.
12745         > patches for glibc integration (H.J.Lu):
12746         + add modules define_key, keyok, name_match, tries
12747         + add makefile rules for some of the unit tests in ncurses (mvcur,
12748           captoinfo, hardscroll, hashmap).
12749         + update Linux configure-script for wide-character definitions.
12750
12751 970809
12752         + modify _tracebits() to show the character size (e.g., CS8).
12753         + modify tparm() to emit '\200' where the generated string would have a
12754           null (reported by From:  Ian Dall <Ian.Dall@dsto.defence.gov.au> for
12755           terminal type ncr7900).
12756         + modify install process so that ldconfig is not invoked if the
12757           package is built with an install-prefix.
12758         + correct test program for chtype size (reported by Tim Mooney).
12759         + add configure option --disable-scroll-hints, using this to ifdef the
12760           logic that computes indices for _nc_scroll_optimize().
12761         + add module ncurses/softscroll.c, to perform single-stage computation
12762           of scroll indices used in _nc_scroll_optimize().  This is faster than
12763           the existing scrolling algorithm, but tends to make too-small hunks.
12764         + eliminate fixed buffer size in _nc_linedump().
12765         + minor fixes to lib_doupdate.c to add tradeoff between clr_eol (el)
12766           and clr_bol (el1), refine logic in ClrUpdate() and ClrBottom() (patch
12767           by Alexander V. Lukyanov).
12768         + add test/testaddch.c, from a pending patch by Alexander V. Lukyanov.
12769         + correct processing of "configure --enable-assertions" option (patch
12770           by Juergen Pfeifer).
12771
12772 970802
12773         + add '-s' (single-step) option too test/hashtest.c, correct an error
12774           in loop limit for '-f' (footer option), toggle scrollok() when
12775           writing footer to avoid wrap at lower-right corner.
12776         + correct behavior of clrtoeol() immediately after wrapping cursor,
12777           which was not clearing the line at the cursor position (reported by
12778           Liviu Daia <daia@stoilow.imar.ro>).
12779         + corrected mapping for ACS_LANTERN, which was 'I' rather than 'i'
12780           (reported by Klaus Weide <kweide@tezcat.com>).
12781         + many corrections to make progs/capconvert work, as well as make it
12782           reasonably portable and integrated with ncurses 4.1 (reported by Dave
12783           Furstenau <df@ravine.binary.net>).
12784
12785 970726
12786         + add flag SP->_fifohold, corresponding logic to modify the behavior of
12787           the line breakout logic so that if the application does not read
12788           input, refreshes will not be stopped, but only slowed.
12789         + generate slk_attr_off(), slk_attr_on(), slk_attr_set(), vid_attr(),
12790           ifdef'd for wide-character support, since ncurses' WA_xxx attribute
12791           masks are identical with the A_xxx masks.
12792         + modify MKlib_gen.sh to generate ifdef'd functions to support optional
12793           configuration of wide-characters.
12794         + modify tset to behave more like SVr4's tset, which does not modify
12795           the settings of intr, quit or erase unless they are given as command
12796           options (reported by Nelson H. F. Beebe <beebe@math.utah.edu>).
12797         + modify tset to look in /etc/ttys or /etc/ttytype if the configuration
12798           does not have getttynam().
12799         + extend baudrate table in tset.c to match baudrate() function.
12800         + add table entries for B230400 and B460800 to baudrate() function.
12801         + improve breakout logic by allowing it before the first line updated,
12802           which is what SVr4 curses does (patch by Alexander V. Lukyanov).
12803         + correct initialization of vcost in relative_move(), for cursor-down
12804           case (patch by Alexander V. Lukyanov).
12805         > nits gleaned from Debian distribution of 1.9.9g-3:
12806         + install symbolic link for intotocap.
12807         + reference libc directly when making shared libraries.
12808         + correct renaming of curs_scr_dmp.3x in man_db.renames.
12809         + guard tgetflag() and other termcap functions against null cur_term
12810           pointer.
12811
12812 970719
12813         + corrected initial state of software echo (error in 970405, reported
12814           by Alexander V. Lukyanov).
12815         + reviewed/added messages to configure script, so that all non-test
12816           options should be accompanied by a message.
12817         + add configure check for long filenames, using this to determine if
12818           it is safe to allow long aliases for terminal descriptions as does
12819           SVr4.
12820         + add configure options for widec (wide character), hashmap (both
12821           experimental).
12822         > patch by Alexander V. Lukyanov:
12823         + hashmap.c - improved by heuristic, so that scroll test works much
12824           better when csr is not available.
12825         + hardscroll.c - patched so that it continues to scroll other chunks
12826           after failure to scroll one.
12827         + lib_doupdate.c - _nc_mvcur_scrolln extended to handle more cases; csr
12828           is avoided as it is relative costly.  Fixed wrong coordinates in one
12829           case and wrong string in TRACE.
12830         > patch by Juergen Pfeifer:
12831         + modify C++ binding to compile on AIX 4.x with the IBM C-SET++
12832           compiler.
12833
12834 970712
12835         + remove alternate character set from kterm terminfo entry; it uses the
12836           shift-out control for a purpose incompatible with curses, i.e., font
12837           switching.
12838         + disentangle 'xterm' terminfo entry from some derived entries that
12839           should be based on xterm-r6 instead.
12840         + add cbt to xterm-xf86-xv32 terminfo entry; I added the emulation for
12841           XFree86 3.1.2F, but overlooked its use in terminfo then - T.Dickey.
12842         + correct logic in lib_mvcur.c that uses back_tab.
12843
12844 970706
12845         + correct change from 970628 to ClrUpdate() in lib_doupdate.c so that
12846           contents of curscr are saved in newscr before clearing the screen.
12847           This is needed to make repainting work with the present logic of
12848           TransformLine().
12849         + use napms() rather than sleep() in tset.c to avoid interrupting I/O.
12850
12851 970705
12852         + add limit checks to _nc_read_file_entry() to guard against overflow
12853           of buffer when reading incompatible terminfo format, e.g, from OSF/1.
12854         + correct some loop-variable errors in xmc support in lib_doupdate.c
12855         + modify ncurses 'b' test to add gaps, specified by user, to allow
12856           investigation of interaction with xmc (magic cookie) code.
12857         + correct typo in 970524 mods to xmas.c, had omitted empty parameter
12858           list from has_colors(), which gcc ignores, but SVr4 does not
12859           (reported by Larry Virden).
12860         + correct rmso capability in wy50-mc description.
12861         + add configure option "--enable-hard-tabs", renamed TABS_OK ifdef to
12862           USE_HARD_TABS.
12863         > patch by Juergen Pfeifer:
12864         + Add bindings for keyok() and define_key() to the Ada95 packages.
12865         + Improve man pages menu_post.3x and menu_format.3x
12866         + Fix the HTML pages in the Ada95/html directory to reflect the above
12867           changes.
12868
12869 970628
12870         + modify change from 970101 to ClrUpdate() in lib_doupdate.c so that
12871           pending changes to both curscr and newscr are flushed properly.
12872           This fixes a case where the first scrolling operation in nvi would
12873           cause the screen to be cleared unnecessarily and repainted before
12874           doing the indexing, i.e., by repeatedly pressing 'j' (reported by
12875           Juergen Pfeifer).
12876         + correct error in trans_string() which added embedded newlines in a
12877           terminfo description to the stored strings.
12878         + remove spurious newlines from sgr in wyse50 (and several other)
12879           terminfo descriptions.
12880         + add configure option for experimental xmc (magic cookie) code,
12881           "--enable-xmc-glitch".  When disabled (the default), attributes that
12882           would store a magic cookie are suppressed in vidputs().  The magic
12883           cookie code is far from workable at this stage; the configuration
12884           option is a stopgap.
12885         + move _nc_initscr() from lib_initscr.c to lib_newterm.c
12886         + correct path for invoking make_keys (a missing "./").
12887
12888 970621
12889         + correct sign-extension problem with "infocmp -e", which corrupted
12890           acsc values computed for linux fallback data.
12891         + correct dependency on ncurses/names.c (a missing "./").
12892         + modify configure script to use '&&' even for cd'ing to existing
12893           directories to work around broken shell interpreters.
12894         + correct a loop-limit in _nc_hash_map() (patch by Alexander V.
12895           Lukyanov).
12896
12897 970615
12898         + restore logic in _nc_scroll_optimize() which marks as touched the
12899           lines in curscr that are shifted.
12900         + add new utility 'make_keys' to compute keys.tries as a table rather
12901           than a series of function calls.
12902         + correct include-dependency for tic.h used by name_match
12903         + removed buffer-allocation for name and description from m_item_new.c,
12904           since this might result in incompatibilities with SVr4.  Also fixed
12905           the corresponding Ada95 binding module (patch by Juergen Pfeifer,
12906           report by Avery Pennarun <apenwarr@foxnet.net>)
12907         + removed the mechanism to timestamp the generated Ada95 sources.  This
12908           resulted always in generating patches for the HTML doc, even when
12909           nothing really changed (patch by Juergen Pfeifer).
12910         + improve man page mitem_new.3x (patch by Juergen Pfeifer).
12911
12912 970614
12913         + remove ech capability from rxvt description because it does not work.
12914         + add missing case logic for infocmp -I option (reported by Lorenzo M.
12915           Catucci <lorenzo@argon.roma2.infn.it>)
12916         + correct old bug in pnoutrefresh() unmasked by fix in 970531; this
12917           caused glitches in the ncurses 'p' test since the area outside the
12918           pad was not compared when setting up indices for _nc_scroll_optimize.
12919         + rewrote tracebits() to workaround misdefinition of TOSTOP on Ultrix
12920           4.4, as well as to eliminate fixed-size buffer (reported by Chris
12921           Tanner <tannerc@aecl.ca>)
12922         + correct prototype for termattrs() as per XPG4 version 2.
12923         + add placeholder prototypes for color_set(), erasewchar(),
12924           term_attrs(), wcolor_set() as per XPG4 version 2.
12925         + correct attribution for progs/progs.priv.h and lib_twait.c
12926         + improve line-breakout logic by checking based on changed lines rather
12927           than total lines (patch by Alexander V. Lukyanov).
12928         + correct loop limits for table-lookup of enumerated value in form
12929           (patch by Juergen Pfeifer).
12930         + improve threshold computation for determining when to call ClrToEOL
12931           (patch by Alexander V. Lukyanov).
12932
12933 970531
12934         + add configure option --disable-database to force the library to
12935           use only the fallback data.
12936         + add configure option --with-fallbacks, to specify list of fallback
12937           terminal descriptions.
12938         + add a symbolic link for ncurses.h during install; too many programs
12939           still assume there's an ncurses.h
12940         + add new terminfo.src entry for xterm-xf86-v33.
12941         + restore terminfo.src entry for emu to using setf/setb, since it is
12942           not, after all, generating ANSI sequences.  Corrected missing comma
12943           that caused setf/setb entries to merge.
12944         + modify mousemask() to use keyok() to enable/disable KEY_MOUSE, so
12945           that applications can disable ncurses' mouse and supply their own
12946           handler.
12947         + add extensions keyok() and define_key().  These are designed to allow
12948           the user's application better control over the use of function keys,
12949           e.g., disabling the ncurses KEY_MOUSE.  (The define_key idea was from
12950           a mailing-list thread started by Kenneth Albanowski
12951           <kjahds@kjahds.com> Nov'1995).
12952         + restore original behavior in ncurses 'g' test, i.e., explicitly
12953           set the keypad mode rather than use the default, since it confuses
12954           people.
12955         + rewrote the newdemo banner so it's readable (reported by Hugh
12956           Daniel).
12957         + tidy up exit from hashtest (reported by Hugh Daniel).
12958         + restore check for ^Q in ncurses 'g' test broken in 970510 (reported
12959           by Hugh Daniel)
12960         + correct tput program, checking return-value of setupterm (patch by
12961           Florian La Roche).
12962         + correct logic in pnoutrefresh() and pechochar() functions (reported
12963           by Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>).  The computation
12964           of 'wide' date to eric's #283 (1.9.9), and the pechochar bug to the
12965           original implementation (1.9.6).
12966         + correct typo in vt102-w terminfo.src entry (patch by Robert Wuest
12967           <rwuest@sire.vt.com>)
12968         + move calls of _nc_background() out of various loops, as its return
12969           value will be the same for the whole window being operated on (patch
12970           by J T Conklin).
12971         + add macros getcur[xy] getbeg[xy] getpar[xy], which are defined in
12972           SVr4 headers (patch by J T Conklin <jtc@NetBSD.ORG>)
12973         + modify glibc addon-configure scripts (patch by H.J.Lu).
12974         + correct a bug in hashmap.c: the size used for clearing the hashmap
12975           table was incorrect, causing stack corruption for large values of
12976           LINES, e.g., >MAXLINES/2 (patch by Alexander V. Lukyanov).
12977         + eric's terminfo 9.13.23 & 9.13.24 changes: replaced minitel-2 entry,
12978           added MGR, ansi-nt (note: the changes described for 9.13.24 have not
12979           been applied).
12980         > several changes by Juergen Pfeifer:
12981         + correct a missing error-return in form_driver.c when wrapping of a
12982           field is not possible.
12983         + correct logic in form_driver.c for configurations that do not have
12984           memccpy() (reported by Sidik Isani <isani@cfht.hawaii.edu>)
12985         + change several c++ binding functions to inline.
12986         + modify c++ menu binding to inherit from panels, for proper
12987           initialization.
12988         + correct freeing of menu items in c++ binding.
12989         + modify c++ binding to reflect removal of const from user data pointer
12990           in forms/menus libraries.
12991
12992 970524
12993         + add description of xterm-16color.
12994         + modify name of shared-library on *BSD to end with $(REL_VERSION)
12995           rather than $(ABI_VERSION) to match actual convention on FreeBSD
12996           (cf: 960713).
12997         + add OpenBSD to shared-library case, same as NetBSD and FreeBSD
12998           (reported by Hugh Daniel <hugh@rat.toad.com>).
12999         + corrected include-dependency in menu/Makefile so that "make install"
13000           works properly w/o first doing "make".
13001         + add fallback definition for isascii, used in infocmp.
13002         + modify xmas to use color, and to exit right away when a key is
13003           pressed.
13004         + modify gdc so that the scrolled digits function as described (there
13005           was no time delay between the stages, and the digits overwrote the
13006           bounding box without tidying up).
13007         + modify lib_color.c to use setaf/setab only for the ANSI color codes
13008           0 through 7.  Using 16 colors requires setf/setb.
13009         + modify ncurses 'c' test to work with 16 colors, as well as the normal
13010           8 colors.
13011         + remove const qualifier from user data pointer in forms and menus
13012           libraries (patch by Juergen Pfeifer).
13013         + rewrote 'waddchnstr()' to avoid using the _nc_waddch_nosync()
13014           function, thereby not interpreting tabs, etc., as per spec (patch by
13015           Alexander V. Lukyanov).
13016
13017 970517
13018         + suppress check for pre-existing ncurses header if the --prefix
13019           option is specified.
13020         + add configure options "--with-system-type" and
13021           "--with-system-release" to assist in checking the generated
13022           makefiles.
13023         + add configure option "--enable-rpath" to allow installers to specify
13024           that programs linked against shared libraries will have their library
13025           path embedded, allowing installs into nonstandard locations.
13026         + add flags to OSF1 shared-library options to specify version and
13027           symbol file (patch by Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>)
13028         + add missing definition for ABI_VERSION to c++/Makefile.in (reported
13029           by Satoshi Adachi <adachi@wisdom.aa.ap.titech.ac.jp>).
13030         + modify link flags to accommodate HP-UX linker which embeds absolute
13031           pathnames in executables linked against shared libraries (reported by
13032           Jason Evans <jasone@mrc.uidaho.edu>, solved by Alan Shutko
13033           <ats@hubert.wustl.edu>).
13034         + drop unnecessary check for attribute-change in onscreen_mvcur() since
13035           mvcur() is the only caller within the library, and that check in turn
13036           is exercised only from lib_doupdate.c (patch by Alexander V.
13037           Lukyanov).
13038         + add 'blank' parameter to _nc_scroll_window() so _nc_mvcur_scrolln()
13039           can use the background of stdscr as a parameter to that function
13040           (patch by Alexander V. Lukyanov).
13041         + moved _nc_mvcur_scrolln() from lib_mvcur.c to lib_doupdate.c, to use
13042           the latter's internal functions, as well as to eliminate unnecessary
13043           cursor save/restore operations (patch by Alexander V. Lukyanov).
13044         + omit parameter of ClrUpdate(), since it is called only for newscr,
13045           further optimized/reduced by using ClearScreen() and TransformLine()
13046           to get rid of duplicate code (patch by Alexander V. Lukyanov).
13047         + modify scrolling algorithm in _nc_scroll_optimize() to reject hunks
13048           that are smaller than the distance to be moved (patch by Alexander V.
13049           Lukyanov).
13050         + correct a place where the panel library was not ifdef'd in ncurses.c
13051           (Juergen Pfeifer)
13052         + documentation fixes (Juergen Pfeifer)
13053
13054 970515  4.1 release for upload to prep.ai.mit.edu
13055         + re-tag changes since 970505 as 4.1 release.
13056
13057 970510
13058         + modify ncurses 'g' test to allow mouse input
13059         + modify default xterm description to include mouse.
13060         + modify configure script to add -Wwrite-strings if gcc warnings are
13061           enabled while configuring --enable-const (and fixed related
13062           warnings).
13063         + add toggle, status display for keypad mode to ncurses 'g' test to
13064           verify that keypad and scrollok are not inherited from parent window
13065           during a call to newwin.
13066         + correction to MKexpanded.sh to make it work when configure --srcdir
13067           is used (reported by H.J.Lu).
13068         + revise test for bool-type, ensuring that it checks if builtin.h is
13069           available before including it, adding test for sizeof(bool) equal
13070           to sizeof(short), and warning user if the size cannot be determined
13071           (reported by Alexander V. Lukyanov).
13072         + add files to support configuration of ncurses as an add-on library
13073           for GNU libc (patch by H.J.Lu <hjl@lucon.org>)
13074
13075 970506
13076         + correct buffer overrun in lib_traceatr.c
13077         + modify change to lib_vidattr.c to avoid redundant orig_pair.
13078         + turn on 'echo()' in hanoi.c, since it is initially off.
13079         + rename local 'errno' variable in etip.h to avoid conflict with global
13080           (H.J.Lu).
13081         + modify configure script to cache LD, AR, AR_OPTS (patch by H.J.Lu
13082           <hjl@lucon.org>)
13083
13084 970505  4.1 pre-release
13085         + regenerate the misc directory html dumps without the link list, which
13086           is not useful.
13087         + correct dependency in form directory makefile which caused
13088           unnecessary recompiles.
13089         + correct substitution for ABI_VERSION in test-makefile
13090         + modify install rules for shared-library targets to remove the target
13091           before installing, since some install programs do not properly handle
13092           overwrite of symbolic links.
13093         + change order of top-level targets so that 'include' immediate
13094           precedes the 'ncurses' directory, reducing the time between new
13095           headers and new libraries (requested by Larry Virden).
13096         + modify lib_vidattr.c so that colors are turned off only before
13097           modifying other attributes, turned on after others.  This makes the
13098           hanoi.c program display correctly on FreeBSD console.
13099         + modify debug code in panel library to print user-data addresses
13100           rather than the strings which they (may) point to.
13101         + add check to ensure that C++ binding and demo are not built with g++
13102           versions below 2.7, since the binding uses templates.
13103         + modify c++ binding and demo to build and run with SGI's c++ compiler.
13104           (It also compiles with the Sun SparcWorks compiler, but the demo does
13105           not link, due to a vtbl problem).
13106         + corrections to demo.cc, to fix out-of-scope variables (Juergen
13107           Pfeifer).
13108
13109 970503
13110         + correct memory leak in _nc_trace_buf().
13111         + add configure test for regexpr.h, for Unixware 1.x.
13112         + correct missing "./" prefixing names of generated files in ncurses
13113           directory.
13114         + use single-quotes in configure scripts assignments for MK_SHARED_LIB
13115           to workaround shell bug on FreeBSD 2.1.5
13116         + remove tabs from intermediate #define's for GCC_PRINTF, GCC_SCANF
13117           that caused incorrect result in ncurses_cfg.h
13118         + correct initialization in lib_trace.c, which omitted version info.
13119         + remove ech, el1 attributes from cons25w description; they appear to
13120           malfunction in FreeBSD 2.1.5
13121         + correct color attributes in terminfo.src and lib_color.c to match
13122           SVr4 behavior by interchanging codes 1,4, 3,6 in the setf/setb
13123           capabilities.
13124         + use curs_set() rather than checks via tigetstr() for test programs
13125           that hide the cursor: firework, rain, worm.
13126         + ensure that if the terminal lacks change_scroll_region, parm_index
13127           and parm_rindex are used only to scroll the whole screen (patch by
13128           Peter Wemm).
13129         + correct curs_set() logic, which did not return ERR if the requested
13130           attributes did not exist, nor did it assume an unknown initial state
13131           for the cursor (patch by Alexander V. Lukyanov).
13132         + combine IDcTransformLine and NoIDcTransformLine to new TransformLine
13133           function in lib_doupdate.c (patch by Alexander V. Lukyanov).
13134         + correct hashmap.c, which did not update index information (patch by
13135           Alexander V. Lukyanov).
13136         + fixes for C++ binding and demo (see c++/NEWS) (Juergen Pfeifer).
13137         + correct index in lib_instr.c (Juergen Pfeifer).
13138         + correct typo in 970426 patch from Tom's cleanup of lib_overlay.c
13139           (patch by Juergen Pfeifer).
13140
13141 970426
13142         + corrected cost computation in PutRange(), which was using
13143           milliseconds compared to characters by adding two new members to the
13144           SCREEN struct, _hpa_ch_cost and _cup_ch_cost.
13145         + drop ncurses/lib_unctrl.c, add ncurses/MKunctrl.awk to generate a
13146           const array of strings (suggested by Alexander V. Lukyanov).  The
13147           original suggestion in 970118 used a perl script.
13148         + rewrote ncurses 'b' test to better exercise magic-cookie (xmc), as
13149           well as noting the attributes that are not supported by a terminal.
13150         + trace the computation of cost values in lib_mvcur.c
13151         + modify _nc_visbuf() to use octal rather than hex, corrected sign
13152           extension bug in that function that caused buffer overflow.
13153         + modify trace in lib_acs.c to use _nc_visbuf().
13154         + suppress trace within _traceattr2().
13155         + correct logic of _tracechtype2(), which did not account for repeats
13156           or redefinition within an acsc string.
13157         + modify debug-library version baudrate() to use environment variable
13158           $BAUDRATE to override speed computation.  This is needed for
13159           regression testing.
13160         + correct problems shown by "weblint -pedantic".
13161         + update mailing-list information (now ncurses@bsdi.com).
13162
13163 970419
13164         + Improve form_field_validation.3x manpage to better describe the
13165           precision parameter for TYPE_NUMERIC and TYPE_INTEGER.  Provide more
13166           precise information how the range checking can be avoided.  (patch by
13167           Juergen Pfeifer, reported by Bryan Henderson)
13168         + change type of min/max value of form types TYPE_INTEGER to long to
13169           match SVr4 documentation.
13170         + set the form window to stdscr in set_form_win() so that form_win()
13171           won't return null (patch by Juergen Pfeifer, reported by Bryan
13172           Henderson <bryanh@giraffe.netgate.net>).
13173
13174 970412
13175         + corrected ifdef'ing of inline (cf: 970321) for TRACE vs C++.
13176         + corrected toggle_attr_off() macro (patch by Andries Brouwer).
13177         + modify treatment of empty token in $MANPATH to /usr/man (reported by
13178           <Andries.Brouwer@cwi.nl>)
13179         + modify traces that record functions-called so that chtype and attr_t
13180           values are expressed symbolically, to simplify reuse of generated
13181           test-scripts on SVr4 regression testing.
13182         + add new trace functions _traceattr2() and _tracechtype2()
13183
13184 970405
13185         + add configure option --enable-const, to support the use of 'const'
13186           where XSI should have, but did not, specify.  This defines
13187           NCURSES_CONST, which is an empty token otherwise, for strict
13188           compatibility.
13189         + make processing of configure options more verbose by echoing the
13190           --enable/--with values.
13191         + add configure option --enable-big-core
13192         + set initial state of software echo off as per XSI.
13193         + check for C++ builtin.h header
13194         + correct computation of absolute-path for $INSTALL that dropped "-c"
13195           parameter from the expression.
13196         + rename config.h to ncurses_cfg.h to avoid naming-conflict when
13197           ncurses is integrated into larger systems (adapted from diffs by
13198           H.J.Lu for libc).
13199         + correct inequality in lib_doupdate.c that caused a single-char to not
13200           be updated when the char on the right-margin was not blank, idcok()
13201           was true (patch by Alexander V Lukyanov (in 970124), reported
13202           by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu> in 970329).
13203         + modify 'clean' rule in include/Makefile so that files created by
13204           configure script are removed in 'distclean' rule instead.
13205
13206 970328
13207         + correct array limit in tparam_internal(), add case to interpret "%x"
13208           (patch by Andreas Schwab)
13209         + rewrote number-parsing in ncurses.c 'd' test; it did not reset the
13210           value properly when non-numeric characters were given (reported by
13211           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
13212
13213 970321
13214         + move definition of __INTERNAL_CAPS_VISIBLE before include for
13215           progs.priv.h (patch by David MacKenzie).
13216         + add configuration summary, reordered check for default include
13217           directory to better accommodate a case where installer is configuring
13218           a second copy of ncurses (reported by Klaus Weide
13219           <kweide@tezcat.com>)
13220         + moved the #define for 'inline' as an empty token from the
13221           $(CFLAGS_DEBUG) symbol into config.h, to avoid redefinition warning
13222           (reported by Ward Horner).
13223         + modify test for bool builtin type to use 'unsigned' rather than
13224           'unknown' when cross-compiling (reported by Ward Horner).
13225
13226 970315
13227         + add header dependencies so that "make install.libs" will succeed
13228           even if "make all" is not done first.
13229         + moved some macros from lib_doupdate.c to curses.priv.h to use in
13230           expanded functions with ATAC.
13231         + correct implementation of lib_instr.c; both XSI and SVr4 agree that
13232           the winnstr functions can return more characters than will fit on one
13233           line.
13234
13235 970308
13236         + modify script that generates lib_gen.c to support traces of called &
13237           return.
13238         + add new configure option "--disable-macros", for testing calls within
13239           lib_gen.c
13240         + corrected logic that screens level-checking of called/return traces.
13241
13242 970301
13243         + use new configure macro NC_SUBST to replace AC_PATH_PROG, better
13244           addressing request by Ward Horner.
13245         + check for cross-compiling before trying to invoke the autoconf
13246           AC_FUNC_SETVBUF_REVERSED macro (reported by Ward Horner)
13247         + correct/simplify loop in _nc_visbuf(), 970201 changes omitted
13248           a pointer-increment.
13249         + eliminate obsolete symbol SHARED_ABI from dist.mk (noted by
13250           Florian La Roche).
13251
13252 970215
13253         + add configure option --enable-expanded, together with code that
13254           implements an expanded form of certain complex macros, for testing
13255           with ATAC.
13256         + disable CHECK_POSITION unless --with-assertions is configured
13257           (Alexander V Lukyanov pointed out that this is redundant).
13258         + use keyname() to show traced chtype values where applicable rather
13259           than _tracechar(), which truncates the value to 8-bits.
13260         + minor fixes to TRACE_ICALLS, added T_CREATE, TRACE_CCALLS macros.
13261         + modify makefiles in progs and test directories to avoid using C
13262           preprocessor options on link commands (reported by Ward Horner)
13263         + correct ifdef/include-order for nc_alloc.h vs lib_freeall.c (reported
13264           by Ward Horner)
13265         + modify ifdef's to use configure-defined symbols consistently
13266           (reported by Ward Horner)
13267         + add/use new makefile symbols AR, AR_OPTS and LD to assist in non-UNIX
13268           ports (reported by Ward Horner <whorner@tsi-telsys.com>)
13269         + rename struct try to struct tries, to avoid name conflict with C++
13270           (reported by Gary Johnson).
13271         + modify worm.c to hide cursor while running.
13272         + add -Wcast-qual to gcc warnings, fix accordingly.
13273         + use PutChar rather than PutAttrChar in ClrToEOL to properly handle
13274           wrapping (Alexander V Lukyanov).
13275         + correct spurious echoing of input in hanoi.c from eric's #291 & #292
13276           patches (reported by Vernon C. Hoxie <vern@zebra.alphacdc.com>).
13277         + extend IRIX configuration to IRIX64
13278         + supply missing install.libs rule needed after restructuring
13279           test/Makefile.in
13280
13281 970208
13282         + modify "make mostlyclean" to leave automatically-generated source
13283           in the ncurses directory, for use in cross-compiles.
13284         + autogenerated object-dependencies for test directory
13285         + add configure option --with-rcs-ids
13286         + modify configuration scripts to generate major/minor/patch versions
13287           (suggested by Alexander V Lukyanov).
13288         + supply missing va_end's in lib_scanw.c
13289         + use stream I/O for trace-output, to eliminate fixed-size buffer
13290         + add TRACE_ICALLS definition/support to lib_trace.c
13291         + modify Ada95 binding to work with GNAT 3.09 (Juergen Pfeifer).
13292
13293 970201
13294         + add/modify traces for called/return values to simplify extraction
13295           for test scripts.
13296         + changed _nc_visbuf to quote its result, and to dynamically allocate
13297           the returned buffer.
13298         + invoke ldconfig after installing shared library
13299         + modify install so that overwrite applies to shared library -lcurses
13300           in preference to static library (reported by Zeyd M Ben-Halim 960928).
13301         + correct missing ';' in 961221 mod to overwrite optional use of $(LN_S)
13302           symbol.
13303         + fixes to allow "make install" to work without first doing a "make
13304           all" (suggested by Larry Virden).
13305
13306 970125
13307         + correct order of #ifdef for TABS_OK.
13308         + instrumented toe.c to test memory-leaks.
13309         + correct memory-deallocation in toe.c (patch by Jesse Thilo).
13310         + include <sys/types.h> in configuration test for regex.h (patch by
13311           Andreas Schwab)
13312         + make infocmp recognize -I option, for SVr4 compatibility (reported by
13313           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
13314
13315 970118
13316         + add extension 'use_default_colors()', modified test applications that
13317           use default background (firework, gdc, hanoi, knight, worm) to
13318           demonstrate.
13319         + correct some limit checks in lib_doupdate.c exposed while running
13320           worm.
13321         + use typeCalloc macro for readability.
13322         + add/use definition for CONST to accommodate testing with Solaris
13323           (SVr4) curses, which doesn't use 'const' in its prototypes.
13324         + modify ifdef's in test/hashtest.c and test/view.c to compile with
13325           Solaris curses.
13326         + modify _tracedump() to pad colors & attrs lines to match change
13327           in 970101 showing first/last changes.
13328         + corrected location of terminating null on dynamically allocated forms
13329           fields (patch by Per Foreby).
13330
13331 970111
13332         + added headers to make view.c compile on SCO with the resizeterm()
13333           code (i.e., struct winsize) - though this compiles, I don't have a
13334           suitable test configuration since SIGWINCH doesn't pass my network to
13335           that machine - T.Dickey.
13336         + update test/configure.in to supply some default substitutions.
13337         + modify configure script to add -lncurses after -lgpm to fix problem
13338           linking against static libraries.
13339         + add a missing noraw() to test/ncurses.c (places noted by Jeremy
13340           Buhler)
13341         + add a missing wclear() to test/testcurs.c (patch by Jeremy Buhler
13342           <jbuhler@cs.washington.edu>)
13343         + modify headers to accommodate compilers that don't allow duplicate
13344           "#define" lines for NCURSES_VERSION (reported by Larry W. Virden
13345           <lvirden@cas.org>)
13346         + fix formatting glitch in curs_getch.3x (patch by Jesse Thilo).
13347         + modify lib_doupdate to make el, el1 and ed optimization use the
13348           can_clear_with macro, and change EmitRange to allow leaving cursor at
13349           the middle of interval, rather than always at the end (patch by
13350           Alexander V Lukyanov).  This was originally 960929, resync 970106.
13351
13352 970104
13353         + workaround defect in autoconf 2.12 (which terminates configuration
13354           if no C++ compiler is found) by adding an option --without-cxx.
13355         + modify several man-pages to use tbl, where .nf/.fi was used (reported
13356           by Jesse Thilo).
13357         + correct font-codes in some man-pages (patch by Jesse Thilo
13358           <Jesse.Thilo@pobox.com>)
13359         + use configure script's knowledge of existence of g++ library for the
13360           c++ Makefile (reported by Paul Jackson).
13361         + correct misleading description of --datadir configuration option
13362           (reported by Paul Jackson <pj@sam.engr.sgi.com>)
13363
13364 970101
13365         + several corrections to _nc_mvcur_scrolln(), prompted by a bug report
13366           from Peter Wemm:
13367         > the logic for non_dest_scroll_region was interchanged between the
13368           forward & reverse scrolling cases.
13369         > multiple returns from the function allowed certain conditions to do
13370           part of an operation before discovering that it couldn't be
13371           completed, returning an error without restoring the cursor.
13372         > some returns were ERR, where the function had completed the
13373           operation, because the insert/delete line logic was improperly
13374           tested (this was probably the case Peter saw).
13375         > contrary to comments, some scrolling cases were tested after the
13376           insert/delete line method.
13377         + modify _tracedump() to show first/last changes.
13378         + modify param of ClrUpdate() in lib_doupdate.c to 'newscr', fixes
13379           refresh problem (reported by Peter Wemm) that caused nvi to not show
13380           result of ":r !ls" until a ^L was typed.
13381
13382 961229  (internal alpha)
13383         + correct some of the writable-strings warnings (reported by Gary
13384           Johnson <gjohnson@season.com>).  Note that most of the remaining ones
13385           are part of the XSI specification, and can't be "fixed".
13386         + improve include-dependencies in form, menu, panel directories.
13387         + correct logic of delay_output(), which would return early if
13388           there is data on stdin.
13389         + modify interface & logic of _nc_timed_wait() to support 2 file
13390           descriptors, needed for GPM.
13391         + integrate patch by Andrew Kuchling <amk@magnet.com> for GPM (mouse)
13392           support, correcting logic in wgetch() and _nc_mouse_parse() which
13393           prevented patch from working properly -TD
13394         + improve performance of panel algorithm (Juergen Pfeifer 961203).
13395         + strip RCS id's from generated .html files in Ada95 subtree.
13396         + resync with generated .html files (Juergen Pfeifer 961223).
13397         + terminfo.src 10.1.0 (ESR).
13398
13399 961224  4.0 release
13400         + release as 4.0 to accommodate Linux ld.so.1.8.5
13401         + correct syntax/spelling, regenerated .doc files from .html using
13402           lynx 2.5
13403         + refined forms/menus makefiles (Juergen Pfeifer 961223).
13404
13405 961221  - snapshot
13406         + remove logic in read_entry.c that attempts to refine errno by using
13407           'access()' for the directory (from patch by Florian La Roche).
13408         + correct configure test/substitution that inhibits generating
13409           include-path to /usr/include if gcc is used (reported by Florian La
13410           Roche).
13411         + modify setupterm() to allocate new TERMINAL for each call, just as
13412           solaris' curses does (Alexander V Lukyanov 960829).
13413         + corrected memory leaks in read_entry.c
13414         + add configure options --with-dbmalloc, --with-dmalloc, and
13415           --disable-leaks, tested by instrumenting infocmp, ncurses programs.
13416         + move #include's for stdlib.h and string.h to *.priv.h to accommodate
13417           use of dbmalloc.
13418         + modify use of $(LN_S) to follow recommendation in autoconf 2.12,
13419           i.e., set current directory before linking.
13420         + split-out panel.priv.h, improve dependencies for forms, menus
13421           (Juergen Pfeifer 961204).
13422         + modify _nc_freewin() to reset globals curscr/newscr/stdscr when
13423           freeing the corresponding WINDOW (found using Purify).
13424         + modify delwin() to return ERR if the window to be deleted has
13425           subwindows, needed as a side-effect of resizeterm() (found using
13426           Purify).  Tested and found that SVr4 curses behaves this way.
13427         + implement logic for _nc_freeall(), bringing stub up to date.
13428
13429 961215
13430         + modify wbkgd() so that it doesn't set nulls in the rendered text,
13431           even if its argument doesn't specify a character (fixes test case by
13432           Juergen Pfeifer for bug-report).
13433         + set window-attributes in wbkgd(), to simplify comparison against
13434           Solaris curses, which does this.
13435
13436 961214  - snapshot
13437         + replace most constants in ncurses 'o' test by expressions, making it
13438           work with wider range of screen sizes.
13439         + add options to ncurses.c to specify 'e' test softkey format, and the
13440           number of header/footer lines to rip-off.
13441         + add ^R (repaint after resize), ^L (refresh) commands to ncurses 'p'
13442           test.
13443         + add shell-out (!) command to ncurses 'p' test to allow test of
13444           resize between endwin/refresh.
13445         + correct line-wrap case in mvcur() by emitting carriage return,
13446           overlooked in 960928, but needed due to SVr4 compatibility changes to
13447           terminal modes in 960907.
13448         + correct logic in wresize that causes new lines to be allocated,
13449           broken for the special case of increasing rows only in 960907's fix
13450           for subwindows.
13451         + modify configure script to generate $(LDFLAGS) with -L and -l options
13452           in preference to explicit library filenames.  (NOTE: this may
13453           require further amending, since I vaguely recall a dynamic loader
13454           that did not work properly without the full names, but it should be
13455           handled as an exception to the rule, since some linkers do bulk
13456           inclusion of libraries when given the full name - T.Dickey).
13457         + modify configure script to allow user-supplied $CFLAGS to set the
13458           debug-option in all libraries (requested by lots of people) -TD
13459         + use return consistently from main(), rather than exit (reported by
13460           Florian La Roche).
13461         + add --enable-getcap-cache option to configure, normally disabled
13462           (requested by Florian La Roche).
13463         + make configure test for gettimeofday() and possibly -lbsd more
13464           efficient (requested by Florian La Roche <florian@knorke.saar.de>)
13465         + minor adjustments to Ada95 binding (patches by Juergen Pfeifer)
13466         + correct attributes after emitting orig_pair in lib_vidattr.c (patch
13467           by Alexander V Lukyanov).
13468
13469 961208
13470         + corrected README wrt Ada95 (Juergen Pfeifer)
13471
13472 961207  - snapshot
13473         + integrate resizeterm() into doupdate(), so that if screen size
13474           changes between endwin/refresh, ncurses will resize windows to fit
13475           (this needs additional testing with pads and softkeys).
13476         + add, for memory-leak testing, _nc_freeall() entrypoint to free all
13477           data used in ncurses library.
13478         + initialize _nc_idcok, _nc_idlok statically to resolve discrepancy
13479           between initscr() and newwin() initialization (reported by
13480           Alexander V Lukyanov).
13481         + test built VERSION=4.0, SHARED_ABI=4 with Linux ld.so.1.8.5
13482           (set beta versions to those values -- NOTE that subsequent pre-4.0
13483           beta may not be interchangeable).
13484         + modify configure script to work with autoconf 2.12
13485
13486 961130  1.9.9g release
13487         + add copyright notices to configuration scripts (written by Thomas
13488           Dickey).
13489
13490 961127
13491         > patch, mostly for panel (Juergen Pfeifer):
13492         + cosmetic improvement for a few routines in the ncurses core library
13493           to avoid warning messages.
13494         + the panel overlap detection was broken
13495         + the panel_window() function was not fool-proof.
13496         + Some inlining...
13497         + Cosmetic changes (also to avoid warning messages when compiling with
13498           -DTRACE).
13499
13500 961126
13501         > patch by Juergen Pfeifer:
13502         + eliminates warning messages for the compile of libform.
13503         + inserts Per Foreby's new field type TYPE_IPV4 into libform.
13504         + Updates man page and the Ada95 binding to reflect this.
13505         + Improves inlining in libmenu and libform.
13506
13507 961120
13508         + improve the use of the "const" qualifier in the
13509           panel library (Juergen Pfeifer)
13510         + change set_panel_userptr() and panel_userptr() to use void*
13511           (Juergen Pfeifer)
13512
13513 961119
13514         + change ABI to 3.4
13515         + package with 961119 version of Ada95 binding (fixes for gnat-3.07).
13516           (Juergen Pfeifer)
13517         + correct initialization of the stdscr pseudo panel in panel library
13518           (Juergen Pfeifer)
13519         + use MODULE_ID (rcs keywords) in forms and menus libraries (Juergen
13520           Pfeifer).
13521         > patch #324 (ESR):
13522         + typo in curs_termcap man page (reported by Hendrik Reichel
13523           <106065.2344@compuserve.com>)
13524         + change default xterm entry to xterm-r6.
13525         + add entry for color_xterm
13526
13527 961116  - snapshot
13528         + lint found several functions that had only #define implementations
13529           (e.g., attr_off), modified curses.h.in to generate them as per XSI
13530           Curses requirement that every macro be available as a function.
13531         + add check in infocmp.c to guard against string compare of
13532           CANCELLED_STRING values.
13533         + modify firework.c, rain.c to hide cursor while running.
13534         + correct missing va_end in lib_tparm.c
13535         + modify hanoi.c to work on non-color terminals, and to use timing
13536           delays when in autoplay mode.
13537         + correct 'echochar()' to refresh immediately (reported by Adrian
13538           Garside <94ajg2@eng.cam.ac.uk>)
13539         > patch #322 (ESR):
13540         + reorganize terminfo.src entries for xterm.
13541
13542 961109  - snapshot
13543         + corrected error in line-breakout logic (lib_doupdate.c)
13544         + modified newdemo to use wgetch(win) rather than getch() to eliminate
13545           a spurious clear-screen.
13546         + corrected ifdef's for 'poll()' configuration.
13547         + added modules to ncurses, form, menu for Ada95 binding (Juergen
13548           Pfeifer).
13549         + modify set_field_buffer() to allow assignment of string longer than
13550           the initial buffer length, and to return the complete string rather
13551           than only the initial size (Juergen Pfeifer and Per Foreby
13552           <perf@efd.lth.se>).
13553
13554 961102  - snapshot
13555         + configure for 'poll()' in preference to 'select()', since older
13556           systems are more likely to have a broken 'select()'.
13557         + modified render_char() to avoid OR'ing colors.
13558         + minor fixes to testcurs.c, newdemo.c test programs: ifdef'd out the
13559           resize test, use wbkgd and corrected box() parameters.
13560         + make flushinp() test work in ncurses.c by using napms() instead of
13561           sleep().
13562         + undo ESR's changes to xterm-x11r6 (it no longer matched the X11R6.1
13563           distribution, as stated)
13564         + terminfo 9.13.18 resync (ESR)
13565         + check for getenv("HOME") returning null (ESR).
13566         + change buffer used to decode xterm-mouse commands to unsigned to
13567           handle displays wider than 128 chars (Juergen Pfeifer).
13568         + correct typo curs_outopts.3x (Juergen Pfeifer).
13569         + correct limit-checking in wenclose() (Juergen Pfeifer).
13570         + correction to Peter Wemm's newwin change (Thomas Fehr
13571           <fehr@suse.de>).
13572         + corrections to logic that combines colors and attributes; they must
13573           not be OR'd (Juergen Pfeifer, extending from report/patch by Rick
13574           Marshall).
13575
13576 961026  - snapshot
13577         + reset flags in 'getwin()' that might cause refresh to attempt to
13578           manipulate the non-existent parent of a window that is read from a
13579           file (lib_screen.c).
13580         + restructure _nc_timed_wait() to log more information, and to try to
13581           recover from badly-behaved 'select()' calls (still testing this).
13582         + move define for GOOD_SELECT into configure script.
13583         + corrected extra '\' character inserted before ',' in comp_scan.c
13584         + corrected expansion of %-format characters in dump_entry.c; some were
13585           rendered as octal constants.
13586         + modify dump_entry.c to make terminfo output more readable and like
13587           SVr4, by using "\s" for spaces (leading/trailing only), "\," for
13588           comma, "\^" and "\:" as well.
13589         + corrected some memory leaks in ncurses.c, and a minor logic error
13590           in the top-level command-parser.
13591         + correction for label format 4 (PC style with info line), a
13592           slk_clear(), slk_restore() sequence didn't redraw the info line
13593           (Juergen Pfeifer).
13594         + modified the slk window (if simulated) to inherit the background and
13595           default character attributes from stdscr (Juergen Pfeifer).
13596         + corrected limit-check in set_top_row (Juergen Pfeifer).
13597
13598 961019  - snapshot
13599         + correct loop-limit in wnoutrefresh(), bug exposed during pipe-testing
13600           had '.lastchar' entry one beyond '._maxx'.
13601         + modify ncurses test-program to work with data piped to it.
13602         + corrected pathname computation in run_tic.sh, removing extra "../"
13603           (reported by Tim Mooney).
13604         + modified configure script to use previous install's location for
13605           curses.h
13606         + added NetBSD and FreeBSD to platforms that use --prefix=/usr as
13607           a default.
13608
13609 961013
13610         + revised xterm terminfo descriptions to reflect the several versions
13611           that are available.
13612         + corrected a pointer reference in dump_entry.c that didn't test if
13613           the pointer was -1.
13614
13615 961005  - snapshot
13616         + correct _nc_mvcur_scrolln for terminals w/o scrolling region.
13617         + add -x option to hashtest to control whether it allows writes to the
13618           lower-right corner.
13619         + ifdef'd (NCURSES_TEST) the logic for _nc_optimize_enable to make it
13620           simpler to construct tests (for double-check of _nc_hash_map tests).
13621         + correct ifdef's for c++ in curses.h
13622         + change default xterm type to xterm-x11r6.
13623         + correct quoting in configure that made man-pages installed with
13624           $datadir instead of actual terminfo path.
13625         + correct whitespace in include/Caps, which caused kf11, clr_eol and
13626           clr_end to be omitted from terminfo.5
13627         + fix memory leaks in delscreen() (adapted from Alexander V Lukyanov).
13628         + improve appearance of marker in multi-selection menu (Juergen
13629           Pfeifer)
13630         + fix behavior for forms with all fields inactive (Juergen Pfeifer)
13631         + document 'field_index()' (Juergen Pfeifer)
13632         > patch #321 (ESR):
13633         + add some more XENIX keycap translations to include/Caps.
13634         + modify newwin to set initial state of each line to 'touched'
13635           (from patch by Peter Wemm <peter@spinner.dialix.com>)
13636         + in SET_TTY, replace TCSANOW with TCSADRAIN (Alexander V Lukyanov).
13637
13638 960928  - snapshot
13639         + ifdef'd out _nc_hash_map (still slower)
13640         + add graphic characters to vt52 description.
13641         + use PutAttrChar in ClrToEOL to ensure proper background, position.
13642         + simplify/correct logic in 'mvcur()' that does wrapping; it was
13643           updating the position w/o actually moving the cursor, which broke
13644           relative moves.
13645         + ensure that 'doupdate()' sets the .oldindex values back to a sane
13646           state; this was causing a spurious refresh in ncurses 'r'.
13647         + add logic to configure (from vile) to guard against builders who
13648           don't remove config.cache & config.status when doing new builds -TD
13649         + corrected logic for 'repeat_char' in EmitRange (cf: eric #317), which
13650           did not follow the 2-parameter scheme specified in XSI.
13651         + corrected logic of wrefresh, wnoutrefresh broken in #319, making
13652           clearok work properly (report by Michael Elkins).
13653         + corrected problem with endwin introduced by #314 (removing the
13654           scrolling-region reset) that broke ncurses.c tests.
13655         + corrected order of args in AC_CHECK_LIB (from report by Ami Fischman
13656           <fischman@math.ucla.edu>).
13657         + corrected formatting of terminfo.5 tables (Juergen Ehling)
13658         > patch 320 (ESR):
13659         + change ABI to 3.3
13660         + emit a carriage-return in 'endwin()' to workaround a kernel bug in
13661           BSDI.  (requested by Mike Karels <karels@redrock.bsdi.com>)
13662         + reverse the default o configure --enable-termcap (consensus).
13663         > patch 319 (ESR):
13664         + modified logic for clearok and related functions (from report by
13665           Michael Elkins) - untested
13666         > patch 318 (ESR):
13667         + correction to #317.
13668         > patch 317 (ESR):
13669         + re-add _nc_hash_map
13670         + modify EmitRange to maintain position as per original design
13671           (patch by A. Lukyanov).
13672         + modify test/ncurses.c and tputs, etc., to allow trace counting
13673           output characters.
13674         + add hashtest.c program to time the hashmap optimization.
13675         > patch 316 (ESR):
13676         + add logic to deal with magic-cookie (how was this tested?)
13677           (lib_doupdate.c).
13678         + add ncurses.c driver for magic-cookie, some fixes to ncurses.c
13679         > patch 315 (ESR):
13680         + merge changes to lib_doupdate.c to use ech and rep - untested
13681           (patch by Alexander V Lukyanov).
13682         + modified handling of interrupted system calls - untested
13683           (lib_getch.c, lib_twait.c).
13684         + new function _nc_mvcur_resume()
13685         + fix return value for 'overlay()', 'overwrite()'
13686
13687 960914  - snapshot
13688         + implement subwindow-logic in wresize, minor fixes to ncurses 'g'
13689           test.
13690         + corrected bracketing of fallback.c (reported/suggested fix by Juergen
13691           Ehling <eh@eclipse.aball.de>).
13692         + update xterm-color to reflect XFree86 3.1.3G release.
13693         + correct broken dtterm description from #314 patch (e.g., spurious
13694           newline.  The 'pairs' change might work, but no one's tested it
13695           either ;-)
13696         + clarify the documentation for the builtin form fieldtypes (Juergen
13697           Pfeifer)
13698         > patch 314 (ESR):
13699         + reset scroll region on startup rather than at wrapup time
13700           (enhancement suggested by Alexander V Lukyanov).
13701         + make storage of palette tables and their size counts per-screen for
13702           multi-terminal applications (suggested by Alexander V Lukyanov).
13703         + Improved error reporting for infotocap translation errors.
13704         + Update terminfo.src to 9.13.14.
13705
13706 960907  - snapshot
13707         + rewrote wgetstr to make it erase control chars and also fix bogus use
13708           of _nc_outstr which caused the display to not wrap properly (display
13709           problem reported by John M. Flinchbaugh <glynis@netrax.net>)
13710         + modify ncurses 'f' test to accommodate terminal responses to C1 codes
13711           (and split up this screen to accommodate non-ANSI terminals).
13712         + test enter_insert_mode and exit_insert_mode in has_ic().
13713         + removed bogus logic in mvcur that assumes nl/nonl set output modes
13714           (XSI says they are input modes; SVr4 implements this).
13715         + added macros SET_TTY, GET_TTY to term.h
13716         + correct getstr() logic that altered terminal modes w/o restoring.
13717         + disable ICRNL, etc., during initialization to match SVr4, removing
13718           the corresponding logic from raw, cbreak, etc.
13719         + disable ONLCR during initialization, to match SVr4 (this is needed
13720           for cursor optimization when the cursor-down is a newline).
13721         + replaced ESR's imitation of wresize with my original (his didn't
13722           work).
13723
13724 960831  - snapshot
13725         + memory leaks (Alexander V. Lukyanov).
13726         + modified pnoutrefresh() to be more tolerant of too-large screen
13727           size (reported by Michael Elkins).
13728         + correct handling of terminfo files with no strings (Philippe De
13729           Muyter)
13730         + correct "tic -s" to take into account -I, -C options.
13731         + modify ncurses 'f' test to not print codes 80 through 9F, since they
13732           are considered control codes by ANSI terminals.
13733
13734 960824  - snapshot
13735         + correct speed variable-type in 'tgetent()' (reported by Peter Wemm)
13736         + make "--enable-getcap" configuration-option work (reported by
13737           Peter Wemm <peter@spinner.DIALix.COM>)
13738
13739 960820
13740         + correct err in 960817 that changed return-value of tigetflag()
13741           (reported by Alexander V. Lukyanov).
13742         + modify infocmp to use library default search-path for terminfo
13743           directory (Alexander V. Lukyanov).
13744
13745 960817  - snapshot
13746         + corrected an err in mvcur that broke resizing-behavior.
13747         + correct fall-thru behavior of _nc_read_entry(), which was not finding
13748           descriptions that existed in directories past the first one searched
13749           (reported by Alexander V. Lukyanov)
13750         + corrected typo in dtterm description.
13751         > patch 313 (ESR):
13752         + add dtterm description
13753         + clarify ncurses 'i' test (drop mvwscanw subtest)
13754
13755 960810  - snapshot
13756         + correct nl()/nonl() to work as per SVr4 & XSI.
13757         + minor fixes to ncurses.c (use 'noraw()', mvscanw return-code)
13758         + refine configure-test for "-g" option (Tim Mooney).
13759         + correct interaction between O_BLANK and NEW_LINE request in form
13760           library (Juergen Pfeifer)
13761
13762 960804
13763         + revised fix to tparm; previous fix reversed parameter order.
13764         > patch 312 (ESR):
13765           correct terminfo.src corrupted by #310
13766         > patch 311 (ESR):
13767         + fix idlok() and idcok() and the default of the idlok switch (report
13768           by Ville Sulko).
13769
13770 960803  - snapshot
13771         + corrected tparm to handle capability strings without explicit pop
13772           (reported by William P Setzer)
13773         + add fallback def for GCC_NORETURN, GCC_UNUSED for termcap users
13774           (reported by Tim Mooney).
13775         > patch 310 (ESR):
13776         + documentation and prototyping errors for has_color, immedok and idcok
13777           (reported by William P Setzer <wsetzer@pams.ncsu.edu>)
13778         + updated qnx terminfo entry (patch by Michael Hunter)
13779
13780 960730
13781         + eliminate quoted includes in ncurses subdirectory, ensure config.h
13782           is included first.
13783         + newterm initializes terminal settings the same as initscr (reported
13784           by Tim Mooney).
13785
13786 960727  - snapshot
13787         + call cbreak() in initscr(), as per XSI & SVr4.
13788         + turn off hardware echo in initscr() as per XSI & SVr4
13789         > patch 309 (ESR):
13790         + terminfo changes (9.3.9), from BRL
13791         + add more checks to terminfo parser.
13792         + add more symbols to infocmp.
13793
13794 960720  - snapshot
13795         + save previous-attribute in lib_vidattr.c if SP is null (reported by
13796           Juergen Fluk <louis@dachau.marco.de>)
13797         + corrected calls on _nc_render so that background character is set
13798           as per XSI.
13799         + corrected wbkgdset macro (XSI allows background character to be
13800           null), and tests that use it.
13801         + more corrections to terminfo (xterm & rxvt)
13802         + undid change to mcprint prototype (cannot use size_t in curses.h
13803           because not all systems declare it in the headers that we can safely
13804           include therein).
13805         + move the ifdefs for errno into curses.priv.h
13806         > patch 308 (ESR):
13807         + terminfo changes (9.3.8)
13808         + modified logic of error-reporting in terminfo parser
13809         + fix option-processing bug in toe.
13810
13811 960713  - snapshot
13812         + always check for <sys/bsdtypes.h> since ISC needs it to declare
13813           fd_set (Juergen Pfeifer)
13814         + install shared-libraries on NetBSD/FreeBSD with ABI-version (reported
13815           by Juergen Pfeifer, Mike Long)
13816         + add LOCAL_LDFLAGS2 symbol (Juergen Pfeifer)
13817         + corrected prototype for delay_output() -- bump ABI to 3.2
13818         + patch 307 (ESR):
13819         + enable more translations of nonstandard caps, and document them.
13820         + misc/terminfo.src update to 9.13.8
13821         + patch 306 (ESR):
13822         + moved logic that filters out rmul and rmso from setupterm to newterm
13823           where it is less likely to interfere with termcap applications.
13824         + cosmetic fixes to test/ncurses.c
13825         + modify open() call in ncurses/read_entry.c to use O_RDONLY symbol
13826           rather than constant (report by mib).
13827         + misc/terminfo.src sgr0 and acsc changes (report by Philippe De
13828           Muyter).
13829         + modify ncurses/comp_parse.c so that entries containing a "+" can
13830           have missing rmcup vs smcup.
13831
13832 960707
13833         + rollback ESR's #305 change to terminfo.src (it breaks existing
13834           applications, e.g., 'less 290').
13835         + correct path of edit_man.sh, and fix typo that made all man-pages
13836           preformatted.
13837         + restore man/menu_requestname.3x omitted in Zeyd's resync (oops).
13838         + auto-configure the GCC_PRINTFLIKE/GCC_SCANFLIKE macros (reported by
13839           Philippe De Muyter).
13840
13841 960706  - snapshot
13842         + make lib_vidattr.c more readable using macros.
13843         + filter out rmul, rmso that conflict with sgr0 when reading terminal
13844           descriptions.
13845         + work around autoconf bug, force $INSTALL to absolute path
13846           (reported by Zeyd).
13847         + modify man-page install for BSDI to install preformatted .0 files
13848           (reported by David MacKenzie).
13849         + add/use gcc __attribute__ for printf and scanf in curses.h
13850         + added SGR attributes test-case to ncurses
13851         + revised ncurses 't' logic to show trace-disable effect in the menu.
13852         + use getopt in ncurses program to process -s and -t options.
13853         + make ncurses 'p' legend toggle with '?'
13854         + disable scrollok during the ncurses 'p' test; if it is enabled the
13855           stdscr will scroll when putting the box-corners in the lower-right
13856           of the screen.
13857         > patch 305 (ESR):
13858         + added sanity-checking of various paired string attributes.
13859         + misc/terminfo.src update to 9.13.7 (report by A. Lukyanov).
13860         + modify man/Makefile.in to make terminfo.5 during normal build.
13861         > patch 304 (ESR):
13862         + corrected allocation-length for $HOME/.terminfo path.
13863
13864 960629  - snapshot
13865         + check return code of _nc_mvcur_scrolln() in _nc_scroll_optimize() for
13866           terminals with no scrolling-support (reported by Nikolay Shadrin
13867           <queen@qh.mirea.ac.ru>)
13868         + added ^S scrollok-toggle to ncurses 'g' test.
13869         + added ^T trace-toggle to ncurses tests.
13870         + modified ncurses test program to use ^Q or ESC consistently for
13871           terminating tests (rather than ^D), and to use control keys rather
13872           than function keys in 'g' test.
13873         + corrected misplaced wclrtoeol calls in addch to accommodate wrapping
13874           (reported by Philippe De Muyter).
13875         + modify lib_doupdate.c to use effective costs to tradeoff between
13876           delete-character/insert-character vs normal updating (reported by
13877           David MacKenzie).
13878         + compute effective costs for screen update operations (e.g., clr_eos,
13879           delete_character).
13880         + corrected error in knight.c exposed by wrap fixes in 960622; the
13881           msgwin needed scrollok set.
13882         + corrected last change to IDcTransformLine logic to avoid conflict
13883           between PutRange and InsStr
13884         + modified run_tic.sh to not use /usr/tmp (reported by David
13885           MacKenzie), and further revised it and aclocal.m4 to use $TMPDIR if
13886           set.
13887         + corrected off-by-one in RoomFor call in read_entry.c
13888
13889 960622  - snapshot
13890         + modified logic that wraps cursor in addch to follow the XSI spec,
13891           (implemented in SVr4) which states that the cursor position is
13892           updated when wrapping.  Renamed _NEED_WRAP to _WRAPPED to reflect the
13893           actual semantics.
13894         + added -s option to tic, to provide better diagnostics in run_tic.sh
13895         + improved error-recovery for tabset install.
13896         + change ABI to 3.1 (dropped tparam, corrected getbkgd(), added
13897           _yoffset to WINDOW).
13898         + modified initialization of SP->_ofp so that init_acs() is called with
13899           the "right" file pointer (reported by Rick Marshall <rjm@nlc.net.au>
13900         + documentation fixes (Juergen Pfeifer).
13901         + corrected, using new SCREEN and WINDOW members, the behavior of
13902           ncurses if one uses ripoffline() to remove a line from the top of the
13903           screen (Juergen Pfeifer).
13904         + modified autoconf scripts to prepare for Ada95 (GNAT) binding to
13905           ncurses (Juergen Pfeifer).
13906         + incorrect buffer-size in _nc_read_entry, reported by ESR.
13907
13908 960617
13909         + corrected two logic errors in read_entry.c, write_entry.c (called by
13910           tic, the write/read of terminfo entries used inconsistent rules for
13911           locating the entries; the $TERMINFO_DIRS code would find only the
13912           first entry in a list).
13913         + refined pathname computation in run_tic.sh and shlib.
13914         + corrected initialization of $IP in misc/run_tic.sh
13915
13916 960615  - snapshot
13917         + ifdef'd out _nc_hash_map() call because it does not improve speed.
13918         + display version of gcc if configure script identifies it.
13919         + modify configure script to use /usr as Linux's default prefix.
13920         + modify run_tic.sh to use shlib script, fixes some problems installing
13921           with a shared-library configuration.
13922         + adjusted configure script so that it doesn't run tests with the
13923           warnings turned on, which makes config.log hard to read.
13924         + added 'lint' rule to top-level Makefile.
13925         + added configure option '--with-install-prefix' for use by system
13926           builders to install into staging locations (requested by
13927           Charles Levert <charles@comm.polymtl.ca>).
13928         + corrected autoconfigure for Debian man program; it's not installed
13929           as "man_db".
13930         + set noecho in 'worm'; it was ifdef'd for debug only
13931         + updated test/configure.in for timing-display in ncurses 'p' test
13932         + corrected misspelled 'getbkgd()'.
13933         + corrected wbkgdset to work like observed syvr4 (sets A_CHARTEXT part
13934           to blank if no character given, copies attributes to window's
13935           attributes).
13936         + modified lib_doupdate.c to use lower-level SP's current_attr state
13937           instead of curscr's state, since it is redundant.
13938         + correction to IDcTransformLine logic which controls where InsStr is
13939           invoked (refined by Alexander V Lukyanov).
13940         > patch 303 (ESR):
13941         + conditionally include Chris Torek's hash function _nc_hash_map().
13942         + better fix for nvi refresh-bug (Rick Marshall)
13943         + fix for bug in handling of interrupted keystroke waits,
13944           (Werner Fleck).
13945         + misc/ncurses-intro.html syntax fix (Kajiyama Tamito).
13946
13947 960601  - snapshot
13948         + auto-configure man-page compression-format and renames for Debian.
13949         + corrected several typos in curses.h.in (i.e., the mvXXXX macros).
13950         + re-order curses.priv.h for lint.
13951         + added rules for lintlib, lint
13952         + corrected ifdef for BROKEN_LINKER in MKnames.awk.in
13953         + corrected missing INSTALL_DATA in misc/Makefile.in
13954         + flush output when changing cursor-visibility (Rick Marshall)
13955         + fix a minor bug in the _nc_ripoff() routine and improve error
13956           checking when creating the label window (Juergen Pfeifer).
13957         + enhancement to the control over the new PC-style soft key format.
13958           allow caller now to select whether or not one wants to have
13959           the index-line; see curs_slk.3x for documentation (Juergen Pfeifer).
13960         + typos, don't use inline with "-g" (Philippe De Muyter)
13961         + fixes for menus & wattr-, slk-functions (Juergen Pfeifer)
13962
13963 960526  - snapshot
13964         + removed --with-ticdir option altogether, maintain compatibility with
13965           existing applications via symbolic link in run_tic.sh
13966         + patch for termio.h, signal (Philippe De Muyter)
13967         + auto-configure gcc warning options rather than infer from version.
13968         + auto-configure __attribute__ for different gcc versions.
13969         + corrected special use of clearok() in hardscroll.c by resetting flag
13970           in wrefresh().
13971         + include stdlib.h before defs for EXIT_SUCCESS, for OSF/1.
13972         + include sys/types.h in case stdlib.h does not declare size_t.
13973         + fixes for makefile (Tim Mooney)
13974         + fixes for menus & forms (Juergen Pfeifer)
13975         > patch 302 (ESR):
13976         + improve hash function (suggested by Alexander V Lukyanov).
13977         + 9.13.4 update for terminfo.src
13978
13979 960518  - snapshot
13980         + revised ncurses.c panner test, let pad abut all 4 sides of screen.
13981         + refined case in lib_doupdate.c for ClrToEOL().
13982         + corrected prior change for PutRange (Alexander V Lukyanov
13983           <lav@yars.free.net>).
13984         + autoconf mods (Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>).
13985         + locale fix for forms (Philippe De Muyter <phdemuyt@ulb.ac.be>)
13986         + renamed "--with-datadir" option to "--with-ticdir" to avoid
13987           confusion, and made this check for the /usr/lib/terminfo pre-existing
13988           directory.
13989         > patches 299-301 (ESR):
13990         + html fixes (Phillippe de Muyter).
13991         + fix typo in ncurses-intro.html (report by Fabrizio Polacco).
13992         + added hashmap.c
13993         + mods to tracing, especially for ACS chars.
13994         + corrected off-by-one in IDCtransform.
13995         + corrected intermittent mouse bug by using return-value from read().
13996         + mods to parse_entry.c, for smarter defaults.
13997
13998 960512
13999         + use getopt in 'tic'; added -L option and modified -e option to allow
14000           list from a file.
14001
14002 960511
14003         + don't use fixed buffer-size in tparm().
14004         + modified tic to create terminfo directory if it doesn't exist.
14005         + added -T options to tic and infocmp (for testing/analysis)
14006         + refined the length criteria for termcap and terminfo
14007         + optimize lib_doupdate with memcpy, PutRange
14008         > patches 297, 298 (ESR):
14009         + implement TERMINFO_DIRS, and -o option of tic
14010         + added TRACE_IEVENT
14011         + fix REQ_TOGGLE_ITEM in menu/menu_driver.c; it could select but not
14012           deselect.
14013         + added lib_print.c (request by Rick Marshall).
14014         + added has_key() (request by Juergen Pfeifer).
14015         + do not issue clrtoeol or clrtobot if the relevant portion of the line
14016           is already blank (analysis by Keith Bostic).
14017         + add parentheses for parameters of COLOR_PAIR and PAIR_NUMBER macros
14018           (analysis by Jurgen Eidt).
14019         + update screen's notion of cursor position in endwin() (analysis by
14020           Alexander Lukyanov).
14021         + added 't' to ncurses.c test.
14022         + moved delay_output() to lib_tputs.c
14023         + removed tparam() (was added in 1.9.9, but conflicts with emacs and
14024           is not part of X/Open Curses).
14025         + removed boolean version of 'getm'.
14026         + misc cursor & optimization fixes.
14027
14028 960504  - snapshot
14029         + modified ncurses 'p' test to allow full-screen range for panner size.
14030         + fixes for locale (Philippe De Muyter <phdm@labauto1.ulb.ac.be>)
14031         + don't use fixed buffer-size in fmt_entry().
14032         + added usage-message to 'infocmp'.
14033         + modified install.includes rules to prepend subdirectory-name to
14034           "#include" if needed.
14035
14036 960430
14037         + protect wrefresh, wnoutrefresh from invocation with pad argument.
14038         + corrected default CCFLAGS in test/Makefile.
14039
14040 960428  - snapshot
14041         + implemented logic to support terminals with background color erase
14042           (e.g., rxvt and the newer color xterm).
14043         + improved screen update logic (off-by-one logic error; use clr_eos if
14044           possible)
14045
14046 960426  - snapshot
14047         + change ncurses 'a' test to run in raw mode.
14048         + make TIOCGWINSZ configure test less stringent, in case user
14049           configures via terminal that cannot get screen size.
14050         > patches 295, 296 (ESR):
14051         + split lib_kernel.c, lib_setup.c and names.c in order to reduce
14052           overhead for programs that use only termcap features.
14053         + new "-e" and "-h" options of tic (request by Tony Nugent).
14054         + fix bug in mandatory-delay logic in lib_tputs.c (report by Sven
14055           Verdoolaege).
14056         + fix for "infocmp -e" to emit correct initializers (reported by Manual
14057           J Novoa III).
14058         + restore working-directory in read_termcap.c (report by Kayvan
14059           Sylvan).
14060         + use "-h" option on Solaris when generating shared libraries on
14061           Solaris 2.5 to record the library name in the file, for assisting
14062           the loader (patch by Scott Kramer).
14063         + undo patch #294 changes to form and menu libraries (request by
14064           Juergen Pfeifer).
14065
14066 960418  - snapshot
14067         + use autoconf 2.9
14068         + fix for AIX 3.2.5 (must define _POSIX_SOURCE to get termios struct
14069           definitions via <termios.h>, modified macros in lib_raw.c to avoid
14070           K&R-style substitution)
14071         > patches 293, 294 (ESR):
14072         + rewrite wsyncup(), wsyncdown(), as well as small fixes to form and
14073           menu libraries to fix echo-breakage introduced by 1.8.9, 1.9.9e
14074           changes (patches by Juergen Pfeifer).
14075         + fix compile under QNX 4.2 by defining ONLCR in lib_raw.c when
14076           __QNX__ is defined (patch by Michael Hunter).
14077         + modify setupterm() to match documentation for its return value, fix
14078           newterm to work with this change (report by Emmet Lazich).
14079         + add checks in getch() for error, return ERR as appropriate (report by
14080           Emmet Lazich).
14081         + mods to wgetch() in cooked mode (report by Pete Seebach).
14082         + corrected askuser() logic in tset (patch by Remco Treffkorn).
14083         + correct interaction of endwin() with mouse processing (report by
14084           Michael Elkins).
14085         + added trace support for TTY flags
14086         + update terminfo.src to 9.13.1
14087         + FreeBSD console entries (patch by Andrew Chernov).
14088
14089 960406
14090         + fixes for NeXT, ISC and HPUX auto-configure
14091         + autogenerate development header-dependencies (config.h, *.priv.h)
14092         + corrected single-column formatting of "use=" (e.g., in tic)
14093         + modify tic to read full terminfo-names
14094         + corrected divide-by-zero that caused hang (or worse) when redirecting
14095           output
14096         + modify tic to generate directories only as-needed (and corrected
14097           instance of use of data from function that had already returned).
14098
14099 ### ncurses-1.9.8a -> 1.9.9e
14100
14101 * fixed broken wsyncup()/wysncdown(), as a result wnoutrefresh() now has
14102   copy-changed-lines behavior.
14103 * added and documented wresize() function.
14104 * more fixes to LOWER-RIGHT corner handling.
14105 * changed the line-breakout optimization code to allow some lines to be
14106   emitted before the first check.
14107 * added option for tic to use symbolic instead of hard links (for AFS)
14108 * fix to restore auto-wrap mode.
14109 * trace level can be controlled by environment variable.
14110 * better handling of NULs in terminal descriptions.
14111 * improved compatibility with observed SVR4 behavior.
14112 * the refresh behavior of over-lapping windows is now more efficient and
14113   behaves like SVR4.
14114 * use autoconf 2.7, which results in a working setup for SCO 5.0.
14115 * support for ESCDELAY.
14116 * small fixes for menu/form code.
14117 * the test directory has its own configure.
14118 * fixes to pads when optimizing scrolling.
14119 * fixed several off-by-one bugs.
14120 * fixes for termcap->terminfo translation; less restrictions more correct
14121   behavior.
14122
14123 ### ncurses-1.9.7 -> 1.9.8a
14124
14125 * teach infocmp -i to recognize ECMA highlight sequences
14126 * infocmp now dumps all SVr4 termcaps (not just the SVr4 ones) on -C
14127 * support infocmp -RBSD.
14128 * satisfy XSI Curses requirement that every macro be available as a function.
14129 * This represents the last big change to the public interface of ncurses. The
14130   ABI_VERSION has now been set at 3.0 and should stay there barring any great
14131   catastrophies or acts of God.
14132 * The C++ has been cleaned up in reaction to the changes to satisfy XSI's
14133   requirements.
14134 * libncurses now gets linked to libcurses to help seamless emulation
14135   (replacement) of a vendor's curses. --disable-overwrite turns this behavior
14136   off.
14137
14138 ### ncurses-1.9.6 -> 1.9.7
14139
14140 * corrected return values of setupterm()
14141 * Fixed some bugs in tput (it does padding now)
14142 * fixed a bug in tic that made it do the wrong thing on entries with more than
14143   one `use' capability.
14144 * corrected the screen-size calculation at startup time to alter the
14145   numeric capabilities as per SVr4, not just LINES and COLS.
14146 * toe(1) introduced; does what infocmp -T used to.
14147 * tic(1) can now translate AIX box1 and font[0123] capabilities.
14148 * tic uses much less core, the dotic.sh kluge can go away now.
14149 * fix read_entry() and write_entry() to pass through cancelled capabilities OK.
14150 * Add $HOME/.terminfo as source/target directory for terminfo entries.
14151 * termcap compilation now automatically dumps an entry to $HOME/.terminfo.
14152 * added -h option to toe(1).
14153 * added -R option to tic(1) and infocmp(1).
14154 * added fallback-entry-list feature.
14155 * added -i option to infocmp(1).
14156 * do a better job at detecting if we're on SCO.
14157
14158 ### ncurses-1.9.5 -> 1.9.6
14159
14160 * handling of TERMCAP environment variables now works correctly.
14161 * various changes to shorten termcap translations to less that 1024 chars.
14162 * tset(1) added
14163 * mouse support for xterm.
14164 * most data tables are now const and accordingly live in shareable text space.
14165 * Obey the XPG4/SVr4 practice that echo() is initially off.
14166 * tic is much better at translating XENIX and AIX termcap entries now.
14167 * tic can interpret ko capabilities now.
14168 * integrated Juergen Pfeifer's forms library.
14169 * taught write_entry() how not to write more than it needs to; this change
14170   reduces the size of the terminfo tree by a full 26%!
14171 * infocmp -T option added.
14172 * better warnings about historical tic quirks from tic.
14173
14174 ### ncurses 1.9.4 -> 1.9.5
14175
14176 * menus library is now included with documentation.
14177 * lib_mvcur has been carefully profiled and tuned.
14178 * Fixed a ^Z-handling bug that was tanking lynx(1).
14179 * HJ Lu's patches for ELF shared libraries under Linux
14180 * terminfo.src 9.8.2
14181 * tweaks for compiling in separate directories.
14182 * Thomas Dickey's patches to support NeXT's brain-dead linker
14183 * Eric Raymond's patches to fix problems with long termcap entries.
14184 * more support for shared libraries under SunOS and IRIX.
14185
14186 ### ncurses 1.9.3 -> 1.9.4
14187
14188 * fixed an undefined-order-of-evaluation bug in lib_acs.c
14189 * systematically gave non-API public functions and data an _nc_ prefix.
14190 * integrated Juergen Pfeifer's menu code into the distribution.
14191 * totally rewrote the knight test game's interface
14192
14193 ### ncurses 1.9.2c -> 1.9.3
14194
14195 * fixed the TERMCAP_FILE Support.
14196 * fixed off-by-one errors in scrolling code
14197 * added tracemunch to the test tools
14198 * took steps to cut the running time of make install.data
14199
14200 ### ncurses 1.9.2c -> 1.9.2d
14201
14202 * revised 'configure' script to produce libraries for normal, debug,
14203   profile and shared object models.
14204
14205 ### ncurses 1.9.1 -> 1.9.2
14206
14207 * use 'autoconf' to implement 'configure' script.
14208 * panels support added
14209 * tic now checks for excessively long termcap entries when doing translation
14210 * first cut at eliminating namespace pollution.
14211
14212 ### ncurses 1.8.9 -> 1.9
14213
14214 * cleanup gcc warnings for the following: use size_t where 'int' is not
14215   appropriate, fixed some shadowed variables, change attr_t to compatible with
14216   chtype, use attr_t in some places where it was confused with 'int'.
14217 * use chtype/attr_t casts as appropriate to ensure portability of masking
14218   operations.
14219 * added-back waddchnstr() to lib_addstr.c (it had been deleted).
14220 * supplied missing prototypes in curses.h
14221 * include <termcap.h> in lib_termcap.c to ensure that the prototypes
14222   are consistent (they weren't).
14223 * corrected prototype of tputs in <termcap.h>
14224 * rewrote varargs parsing in lib_tparm.c (to avoid referencing memory
14225   that may be out of bounds on the stack) -- Purify found this.
14226 * ensure that TRACE is defined in lib_trace.c (to solve prototype
14227   warnings from gcc).
14228 * corrected scrolling-region size in 'mvcur_wrap()'
14229 * more spelling fixes
14230 * use 'calloc()' to allocate WINDOW struct in lib_newwin.c (Purify).
14231 * set default value for SP->_ofp in lib_set_term.c (otherwise SunOS dumps
14232   core in init_acs()).
14233 * include <errno.h> in write_entry.c (most "braindead" includes declare errno
14234   in that file).
14235
14236 ### ncurses 1.8.8 -> 1.8.9
14237
14238 * compile (mostly) clean with gcc 2.5.8 -Wall -Wstrict-prototypes
14239   -Wmissing-prototypes -Wconversion and using __attribute__ to flush out
14240   non-portable use of "%x" for pointers, or for chtype data (which is declared
14241   as a long).
14242 * modified doupdate to ensure that typahead was turned on before attempting
14243   select-call (otherwise, some implementations hang).
14244 * added trace mask TRACE_FIFO, use this in lib_getch.c to allow finer
14245   resolution of traces.
14246 * improved bounds checking on several critical functions.
14247 * the data directory has been replaced by the new master terminfo file.
14248 * -F file-comparison option added to infocmp.
14249 * compatibility with XSI Curses is now documented in the man bages.
14250 * wsyncup/wsyncdown functions are reliable now; subwindow code in general
14251   is much less flaky.
14252 * capabilities ~msgr, tilde_glitch, insert_padding, generic_type, no_pad_char,
14253   memory_above, memory_below, and hard_copy are now used properly.
14254 * cursor-movement optimization has been completely rewritten.
14255 * vertical-movement optimization now uses hardware scrolling, il, dl.
14256
14257 ### ncurses 1.8.7 -> 1.8.8
14258 * untic no longer exists, infocmp replaces it.
14259 * tic can understand termcap now, especially if it is called captoinfo.
14260 * The Linux Standard Console terminfo entry is called linux insead of console.
14261   It also uses the kernel's new method of changing charsets.
14262 * initscr() will EXIT upon error (as the docs say) This will mostly happen if
14263   you try to run on an undefined terminal.
14264 * I can get things running on AIX but tic can't compile terminfo. I have to
14265   compile entries on another machine. Volunteers to hunt this bug are welcome.
14266 * wbkgd() and wbkgdset() can be used to set a windows background to color.
14267   wclear()/werase() DO NOT use the current attribute to clear the screen.
14268   This is the way SVR4 curses works. PDCurses 2.1 is broken in this respect,
14269   though PDCurses 2.2 has been fixed.
14270 * cleaned up the test/ directory.
14271 * test/worm will segfault after quite a while.
14272 * many spelling corrections courtesy of Thomas E. Dickey
14273
14274 ### ncurses 1.8.6 -> 1.8.7
14275 * cleaned up programs in test/ directory.
14276 * fixed wbkgdset() macro.
14277 * modified getstr() to stop it from advancing cursor in noecho mode.
14278 * modified linux terminfo entry to work with the latest kernel to get
14279   the correct alternate character set.
14280 * also added a linux-mono entry for those running on monochrome screens.
14281 * changed initscr() so that it behaves like the man page says it does.
14282   this fixes the problem with programs in test/ crashing with SIGSEV if
14283   a terminal is undefined.
14284 * modified addch() to avoid using any term.h #define's
14285 * removed duplicate tgoto() in lib_tparm.c
14286 * modified dump_entry.c so that infocmp deals correctly with ',' in acsc
14287 * modified delwin() to correctly handle deleting subwindows.
14288 * fixed Makefile.dist to stop installing an empty curses.h
14289 * fixed a couple of out-of-date notes in man pages.
14290
14291 ### ncurses 1.8.5 -> 1.8.6
14292 * Implemented wbkgd(), bkgd(), bkgdset(), and wbkgdset().
14293 * The handling of attributes has been improved and now does not turn off color
14294   if other attributes are turned off.
14295 * scrolling code is improved. Scrolling in subwindows is still broken.
14296 * Fixes to several bugs that manifest them on platforms other than Linux.
14297 * The default to meta now depends on the status of the terminal when ncurses
14298   is started.
14299 * The interface to the tracing facility has changed.  Instead of the pair of
14300   functions traceon() and traceoff(), there is just one function trace() which
14301   takes a trace mask argument.  The trace masks, defined in curses.h, are
14302   as follows:
14303
14304         #define TRACE_DISABLE   0x00    /* turn off tracing */
14305         #define TRACE_ORDINARY  0x01    /* ordinary trace mode */
14306         #define TRACE_CHARPUT   0x02    /* also trace all character outputs */
14307         #define TRACE_MAXIMUM   0x0f    /* maximum trace level */
14308
14309   More trace masks may be added, or these may be changed, in future releases.
14310 * The pad code has been improved and the pad test code in test/ncurses.c has
14311   been improved.
14312 * The prototype ansi entry has been changed to work with a wider variety
14313   of emulators.
14314 * Fix to the prototype ansi entry that enables it to work with PC emulators
14315   that treat trailing ";m" in a highlight sequence as ";0m"; this doesn't
14316   break operation with any emulators.
14317 * There are now working infocmp, captoinfo, tput, and tclear utilities.
14318 * tic can now compile entries in termcap syntax.
14319 * Core-dump bug in pnoutrefresh fixed.
14320 * We now recognize and compile all the nonstandard capabilities in Ross
14321   Ridge's mytinfo package (rendering it obsolete).
14322 * General cleanup and documentation improvements.
14323 * Fixes and additions to the installation-documentation files.
14324 * Take cursor to normal mode on endwin.
14325
14326 ### ncurses 1.8.4 -> 1.8.5
14327 * serious bugs in updating screen which caused erratic non-display,
14328   fixed.
14329 * fixed initialization for getch() related variable which cause
14330   unpredictable results.
14331 * fixed another doupdate bug which only appeared if you have
14332   parm_char.
14333 * implemented redrawln() and redrawwin().
14334 * implemented winsnstr() and related functions.
14335 * cleaned up insertln() and deleteln() and implemented (w)insdeln().
14336 * changed Makefile.dist so that installation of man pages will
14337   take note of the terminfo directory.
14338 * fixed Configure (removed the mysterious 'X').
14339 * Eric S. Raymond fixed the script.* files so that they work with
14340   stock awk.
14341
14342 #### ncurses 1.8.3 -> 1.8.4 #### ####
14343 * fixed bug in refreshing the screen after return from shell_mode.
14344   There are still problems but they don't manifest themselves on
14345   my machine (Linux 0.99.14f).
14346 * added wgetnstr() and modified things accordingly.
14347 * fixed the script.src script.test to work with awk not just gawk.
14348 * Configure can now take an argument of the target system.
14349 * added test/ncurses.c which replaces several other programs and
14350   performs more testing.
14351 [Thanks to Eric S Raymond for the last 4]
14352 * more fixes to lib_overlay.c and added test/over.c to illustrate
14353   how it works.
14354 * fixed ungetch() to take int instead of ch.
14355 * fixes to cure wgetch() if flushinp() is called.
14356
14357 One note I forgot to mention in 1.8.3 is that tracing is off by
14358 default starting in the version. If you want tracing output, put
14359 traceon(); in your code and link with -ldcurses.
14360
14361 #### ncurses 1.8.2 -> ncurses 1.8.3 #### ####
14362 MAJOR CHANGES:
14363 1) The order of capabilities has been changed in order to achieve
14364 binary compatibility with SVR4 terminfo database. This has the
14365 unfortunate effect of breaking application currently linked with
14366 ncurses. To ensure correct behavior, recompile all such programs.
14367 Most programs using color or newer capabilities will break, others
14368 will probably continue to work ok.
14369
14370 2) Pavel Curtis has renounced his copyright to the public domain.
14371 This means that his original sources (posted to comp.sources.unix,
14372 volume 1) are now in the public domain.  The current sources are
14373 NOT in the public domain, they are copyrighted by me.  I'm
14374 entertaining ideas on what the new terms ncurses is released under.
14375
14376 3) Eric S. Raymond has supplied a complete set of man pages for
14377 ncurses in ?roff format. They will eventually replace most of the
14378 current docs. Both sets are included in this release.
14379
14380 Other changes and notes from 1.8.2 include:
14381 * SIGSEGV during scrolling no longer occurs.
14382 * Other problems with scrolling and use of idl have been corrected.
14383 * lib_getch.c has been re-written and should perform flawlessly.
14384   please use test/getch.c and any other programs to test this.
14385 * ripoffline() is implemented (Thanks to Eric) and slk_ functions
14386   changed accordingly.
14387 * I've added support for terminals that scroll if you write in the
14388   bottom-right corner.
14389 * fixed more bugs in pads code. If anybody has a program that uses
14390   pads I'd love a copy.
14391 * correct handling for terminal with back_color_erase capability
14392   (such as Linux console, and most PC terminals)
14393 * ^Z handling apparently didn't work (I should never trust code
14394   sent me to me without extensive testing). It now seems to be
14395   fixed. Let me know if you have problems.
14396 * I've added support for Apollo and NeXT, but it may still be
14397   incomplete, especially when dealing with the lack of POSIX
14398   features.
14399 * scrolling should be more efficient on terminals with idl
14400   capabilities. Please see src/lib_scroll.c for more notes.
14401 * The line drawing routines were offset by 1 at both ends. This
14402   is now fixed.
14403 * added a few missing prototypes and macros (e.g. setterm())
14404 * fixed code in src/lib_overlay.c which used to crash.
14405 * added a few more programs in test/ The ones from the PDCurses
14406   package are useful, especially if you have SVR4 proper. I'm
14407   interested in the results you get on such a systems (Eric? ;-).
14408   They already exposed certain bugs in ncurses.
14409 * See src/README for porting notes.
14410 * The C++ code should really replace ncurses.h instead of working
14411   around it. It should avoid name-space clashes with nterm.h (use
14412   rows instead of lines, etc.)
14413 * The C++ should compile ok. I've added explicit rules to the
14414   Makefile because no C++ defaults are documented on the suns.
14415 * The docs say that echo() and nocbreak() are mutually exclusive.
14416   At the moment ncurses will switch to cbreak() if the case above
14417   occurs. Should it continue to do so? How about echo() and noraw()?
14418 * PDCurses seem to assume that wclear() will use current attribute
14419   when clearing the screen. According to Eric this is not the case
14420   with SVR4.
14421 * I have discovered, to my chagrin, SunOS 4.x (and probably other systems)
14422   * doesn't have vsscanf and God knows what else!  I've will do a vsscanf().
14423 * I've also found out that the src/script.* rely on gawk and will not
14424   work with stock awk or even with nawk. Any changes are welcome.
14425 * Linux is more tolerant of NULL dereferences than most systems. This
14426   fact was exposed by hanoi.
14427 * ncurses still seems inefficient in drawing the screen on a serial
14428   link between Linux and suns. The padding may be the culprit.
14429 * There seems to be one lingering problem with doupdate() after shelling
14430   out. Despite the fact the it is sending out the correct information
14431   to the terminal, nothing takes effect until you press ^L or another
14432   refresh takes place. And yes, output does get flushed.
14433
14434 #### ncurses 1.8.1 -> ncurses 1.8.2 #### Nov 28, 1993 ####
14435
14436 * added support for SVR4 and BSDI's BSD/386.
14437 * major update and fix to scrolling routine.
14438 * MORE fixes to stuff in lib_getch.c.
14439 * cleaned-up configuration options and can now generate
14440         Config.* files through an awk script.
14441 * changed setupterm() so it can be called more than once,
14442         add added set_curterm(), del_curterm().
14443 * a few minor cleanups.
14444 * added more prototypes in curses.h
14445
14446 #### ncurses 1.8 -> ncurses 1.8.1 #### Nov 4, 1993 ####
14447
14448 * added support for NeXTStep 3.0
14449 * added termcap emulation (not well tested).
14450 * more complete C++ interface to ncurses.
14451 * fixed overlay(), overwrite(), and added copywin().
14452 * a couple of bug fixes.
14453 * a few code cleanups.
14454
14455 #### ncurses 0.7.2/0.7.3 -> ncurses 1.8 #### Aug 31, 1993 ####
14456
14457 * The annoying message "can't open file." was due to missing
14458   terminfo entry for the used terminal. It has now been
14459   replaced by a hopefully more helpful message.
14460 * Problems with running on serial lines are now fixed.
14461 * Added configuration files for SunOS, Linux, HP/UX, Ultrix,
14462   386bsd/BSDI (if you have others send'em to me)
14463 * Cleaner Makefile.
14464 * The documentation in manual.doc is now more uptodate.
14465 * update optimization and support for hp terminals, and 386bsd
14466   console driver(s).
14467 * mvcur optimization for terminals without cursor addressing
14468   (doesn't work on Linux)
14469 * if cursor moved since last update, getch() will refresh the
14470   screen before working.
14471 * getch() & alarm() can now live together. in 0.7.3 a signal
14472   interrupted getch() (bug or feature?) now the getch is
14473   restarted.
14474 * scanw() et all were sick, now fixed.
14475 * support for 8-bit input (use meta()).
14476 * added default screen size to all terminfos.
14477 * added c++ Ncursesw class.
14478 * several minor bug fixes.
14479
14480 #### ncurses 0.7.2 -> ncurses 0.7.3 #### May 27, 1993 ####
14481
14482 * Config file to cope with different platforms (386BSD, BSDI, Ultrix, SunOS)
14483 * more fixes to lib_getch.c
14484 * changes related to Config
14485
14486 #### ncurses 0.7 -> ncurses 0.7.2 #### May 22, 1993 ####
14487
14488 * docs updated slightly (color usage is now documented).
14489 * yet another fix for getch(), this one fixes problems with ESC being swallowed
14490   if another character is typed before the 1 second timeout.
14491 * Hopefully, addstr() and addch() are 8-bit clean.
14492 * fixed lib_tparm.c to use stdarg.h (should run on suns now)
14493 * order of capabilities changed to reflect that specified in SYSV
14494   this will allow for binary-compatibility with existing terminfo dbs.
14495 * added halfdelay()
14496 * fixed problems with asc_init()
14497 * added A_PROTECT and A_INVIS
14498 * cleaned up vidputs()
14499 * general cleanup of the code
14500 * more attention to portability to other systems
14501 * added terminfos for hp70092 (won't work until changes to lib_update.c are
14502   made) and 386BSD pcvt drivers.
14503
14504 Thanks to Hellmuth Michaelis for his help.
14505 optimization code is slated for the next major release, stay tuned!
14506
14507 #### ncurses 0.6/0.61 -> ncurses 0.7 #### April 1, 1993
14508 Please note that the next release will be called 1.8. If you want to know about
14509 the rationale drop me a line.
14510
14511 Included are several test programs in test/.
14512 I've split up the panels library, reversi, tetris, sokoban. They are now
14513 available separately from netcom.com:pub/zmbenhal/
14514
14515 * color and ACS support is now fully compatible with SYSV at the terminfo
14516   level.
14517 * Capabilities now includes as many SYSV caps I could find.
14518 * tigetflag,tigetnum,tigetstr functions added.
14519 * boolnames, boolfnames, boolcodes numnames, numfnames, numcodes,
14520   strnames, strfnames, strcodes arrays are now added.
14521 * keyname() is added.
14522 * All function keys can be defined in terminfo entries.
14523 * fixed lin_tparm.c to behave properly.
14524 * terminfo entries for vt* and xterm are included (improvements are welcome)
14525 * more automation in handling caps and keys.
14526 * included fixes from 0.6.1
14527 * added a few more missing functions.
14528 * fixed a couple of minor bugs.
14529 * updated docs JUST a little (still miles behind in documenting the newer
14530         features).
14531
14532 #### ncurses 0.6 -> ncurses 0.61 ####
14533
14534 1) Included the missing data/console.
14535
14536 2) allow attributes when drawing boxes.
14537
14538 3) corrected usage of win->_delay value.
14539
14540 4) fixed a bug in lib_getch.c. if it didn't recognize a sequence it would
14541         simply return the last character in the sequence. The correct
14542         behavior is to return the entire sequence one character at a time.
14543
14544 #### ncurses0.5 -> ncurses0.6 #### March 1, 1993 ####
14545 * removed _numchngd from struct _win_st and made appropriate changes.
14546 * rewritten kgetch() to remove problems with interaction between alarm and
14547   read(). It caused SIGSEGV every now and then.
14548 * fixed a bug that miscounted the numbers of columns when updating.
14549   (in lib_doupdate.c(ClrUpdate() -- iterate to columns not columns-1)
14550 * fixed a bug that cause the lower-right corner to be incorrect.
14551   (in lib_doupdate.c(putChar() -- check against columns not columns-1)
14552 * made resize() and cleanup() static to lib_newterm.c
14553 * added notimeout().
14554 * added timeout() define in curses.h
14555 * added more function prototypes and fixed napms.
14556 * added use_env().
14557 * moved screen size detection to lib_setup.c.
14558 * fixed newterm() to confirm to prototype.
14559 * removed SIGWINCH support as SYSV does not define its semantics.
14560 * cleaned-up lib_touch.c
14561 * added waddnstr() and relatives.
14562 * added slk_* support.
14563 * fixed a bug in wdeleteln().
14564 * added PANEL library.
14565 * modified Makefile for smoother installation.
14566 * terminfo.h is really term.h
14567
14568 #### ncurses 0.4 -> ncurses 0.5 #### Feb 14, 1993 ####
14569 * changed _win_st structure to allow support for missing functionality.
14570 * Addition of terminfo support for all KEY_*.
14571 * Support for nodelay(), timeout(), notimeout().
14572 * fixed a bug with the keypad char reading that did not return ESC until
14573   another key is pressed.
14574 * nl mapping no longer occur on output (as should be)
14575   fixed bug '\n' no causing a LF.
14576 * fixed bug that reset terminal colors regardless of whether we use color
14577   or not.
14578 * Better support for ACS (not quite complete).
14579 * fixed bug in wvline().
14580 * added curs_set().
14581 * changed from signal() to sigaction().
14582 * re-included the contents of important.patch into source.
14583
14584 #### ncurses 0.3 -> ncurses 0.4 #### Feb 3, 1993 ####
14585 * Addition of more KEY_* definitions.
14586 * Addition of function prototypes.
14587 * Addition of several missing functions.
14588 * No more crashes if screen size is undefined (use SIGWINCH handler).
14589 * added a handler to cleanup after SIGSEGV (hopefully never needed).
14590 * changed SRCDIR from /etc/term to /usr/lib/terminfo.
14591 * renamed compile/dump to tic/untic.
14592 * New scrolling code.
14593 * fixed bug that reversed the sense of nl() and nonl().
14594
14595 #### ncurses 0.2 -> ncurses 0.3 #### Jan 20, 1993 ####
14596 * more support for color and graphics see test/ for examples.
14597 * fixed various files to allow correct update after shelling out.
14598 * more fixes for updates.
14599 * no more core dumps if you don't have a terminfo entry.
14600 * support for LINES and COLUMNS environment variables.
14601 * support for SIGWINCH signal.
14602 * added a handler for SIGINT for clean exits.
14603
14604 #### ncurses 0.1 -> ncurses 0.2 #### Aug 14, 1992 ####
14605 * support for color.
14606 * support for PC graphic characters.
14607 * lib_trace.c updated to use stdarg.h and vprintf routines.
14608 * added gdc.c (Great Digital Clock) as an example of using color.
14609
14610 #### ncurses -> ncurses 0.1 #### Jul 31, 1992 ####
14611 * replacing sgtty stuff by termios stuff.
14612 * ANSIfication of some functions.
14613 * Disabling cost analysis 'cause it's incorrect.
14614 * A quick hack for a terminfo entry.
14615
14616 -- vile:txtmode: