]> ncurses.scripts.mit.edu Git - ncurses.git/blob - NEWS
ncurses 6.0 - patch 20160326
[ncurses.git] / NEWS
1 -------------------------------------------------------------------------------
2 -- Copyright (c) 1998-2015,2016 Free Software Foundation, Inc.               --
3 --                                                                           --
4 -- Permission is hereby granted, free of charge, to any person obtaining a   --
5 -- copy of this software and associated documentation files (the             --
6 -- "Software"), to deal in the Software without restriction, including       --
7 -- without limitation the rights to use, copy, modify, merge, publish,       --
8 -- distribute, distribute with modifications, sublicense, and/or sell copies --
9 -- of the Software, and to permit persons to whom the Software is furnished  --
10 -- to do so, subject to the following conditions:                            --
11 --                                                                           --
12 -- The above copyright notice and this permission notice shall be included   --
13 -- in all copies or substantial portions of the Software.                    --
14 --                                                                           --
15 -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS   --
16 -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF                --
17 -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN --
18 -- NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,       --
19 -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR     --
20 -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE --
21 -- USE OR OTHER DEALINGS IN THE SOFTWARE.                                    --
22 --                                                                           --
23 -- Except as contained in this notice, the name(s) of the above copyright    --
24 -- holders shall not be used in advertising or otherwise to promote the      --
25 -- sale, use or other dealings in this Software without prior written        --
26 -- authorization.                                                            --
27 -------------------------------------------------------------------------------
28 -- $Id: NEWS,v 1.2586 2016/03/27 00:19:02 tom Exp $
29 -------------------------------------------------------------------------------
30
31 This is a log of changes that ncurses has gone through since Zeyd started
32 working with Pavel Curtis' original work, pcurses, in 1992.
33
34 Changes through 1.9.9e are recorded by Zeyd M Ben-Halim.
35 Changes since 1.9.9e are recorded by Thomas E Dickey.
36
37 Contributors include those who have provided patches (even small ones), as well
38 as those who provide useful information (bug reports, analyses).  Changes with
39 no cited author are the work of Thomas E Dickey (TD).
40
41 A few contributors are given in this file by their initials.
42 They each account for one percent or more of the changes since 1.9.9e.
43 See the AUTHORS file for the corresponding full names.
44
45 Changes through 1.9.9e did not credit all contributions;
46 it is not possible to add this information.
47
48 20160326
49         + regenerate HTML manpages.
50         + improve test/demo_menus.c, allowing mouse-click on the menu-headers
51           to switch the active menu.  This requires a new extension option
52           O_MOUSE_MENU to tell the menu driver to put mouse events which do not
53           apply to the active menu back into the queue so that the application
54           can handle the event.
55
56 20160319
57         + improve description of tgoto parameters (report by Steffen Nurpmeso).
58         + amend workaround for Solaris line-drawing to restore a special case
59           that maps Unicode line-drawing characters into the acsc string for
60           non-Unicode locales (Debian #816888).
61
62 20160312
63         + modified test/filter.c to illustrate an alternative to getnstr, that
64           polls for input while updating a clock on the right margin as well
65           as responding to window size-changes.
66
67 20160305
68         + omit a redefinition of "inline" when traces are enabled, since this
69           does not work with gcc 5.3.x MinGW cross-compiling (cf: 20150912).
70
71 20160220
72         + modify test/configure script to check for pthread dependency of
73           ncursest or ncursestw library when building ncurses examples, e.g.,
74           in case weak symbols are used.
75         + modify configure macro for shared-library rules to use -Wl,-rpath
76           rather than -rpath to work around a bug in scons (FreeBSD #178732,
77           cf: 20061021).
78         + double-width multibyte characters were not counted properly in
79           winsnstr and wins_nwstr (report/example by Eric Pruitt).
80         + update config.guess, config.sub from
81                 http://git.savannah.gnu.org/cgit/config.git
82
83 20160213
84         + amend fix for _nc_ripoffline from 20091031 to make test/ditto.c work
85           in threaded configuration.
86         + move _nc_tracebits, _tracedump and _tracemouse to curses.priv.h,
87           since they are not part of the suggested ABI6.
88
89 20160206
90         + define WIN32_LEAN_AND_MEAN for MinGW port, making builds faster.
91         + modify test/ditto.c to allow $XTERM_PROG environment variable to
92           override "xterm" as the name of the program to run in the threaded
93           configuration.
94
95 20160130
96         + improve formatting of man/curs_refresh.3x and man/tset.1 manpages
97         + regenerate HTML manpages using newer man2html to eliminate some
98           unwanted blank lines.
99
100 20160123
101         + ifdef'd header-file definition of mouse_trafo() with NCURSES_NOMACROS
102           (report by Corey Minyard).
103         + fix some strict compiler-warnings in traces.
104
105 20160116
106         + tidy up comments about hardcoded 256color palette (report by
107           Leonardo Brondani Schenkel) -TD
108         + add putty-noapp entry, and amend putty entry to use application mode
109           for better consistency with xterm (report by Leonardo Brondani
110           Schenkel) -TD
111         + modify _nc_viscbuf2() and _tracecchar_t2() to trace wide-characters
112           as a whole rather than their multibyte equivalents.
113         + minor fix in wadd_wchnstr() to ensure that each cell has nonzero
114           width.
115         + move PUTC_INIT calls next to wcrtomb calls, to avoid carry-over of
116           error status when processing Unicode values which are not mapped.
117
118 20160102
119         + modify ncurses c/C color test-screens to take advantage of wide
120           screens, reducing the number of lines used for 88- and 256-colors.
121         + minor refinement to check versus ncv to ignore two parameters of
122           SGR 38 and 48 when those come from color-capabilities.
123
124 20151226
125         + add check in tic for use of bold, etc., video attributes in the
126           color capabilities, accounting whether the feature is listed in ncv.
127         + add check in tic for conflict between ritm, rmso, rmul versus sgr0.
128
129 20151219
130         + add a paragraph to curs_getch.3x discussing key naming (discussion
131           with James Crippen).
132         + amend workaround for Solaris vs line-drawing to take the configure
133           check into account.
134         + add a configure check for wcwidth() versus the ncurses line-drawing
135           characters, to use in special-casing systems such as Solaris.
136
137 20151212
138         + improve CF_XOPEN_CURSES macro used in test/configure, to define as
139           needed NCURSES_WIDECHAR for platforms where _XOPEN_SOURCE_EXTENDED
140           does not work.  Also modified the test program to ensure that if
141           building with ncurses, that the cchar_t type is checked, since that
142           normally is since 20111030 ifdef'd depending on this test.
143         + improve 20121222 workaround for broken acs, letting Solaris "work"
144           in spite of its misconfigured wcwidth which marks all of the line
145           drawing characters as double-width.
146
147 20151205
148         + update form_cursor.3x, form_post.3x, menu_attributes.3x to list
149           function names in NAME section (patch by Jason McIntyre).
150         + minor fixes to manpage NAME/SYNOPSIS sections to consistently use
151           rule that either all functions which are prototyped in SYNOPSIS are
152           listed in the NAME section, or the manual-page name is the sole item
153           listed in the NAME section.  The latter is used to reduce clutter,
154           e.g., for the top-level library manual pages as well as for certain
155           feature-pages such as SP-funcs and threading (prompted by patches by
156           Jason McIntyre).
157
158 20151128
159         + add option to preserve leading whitespace in form fields (patch by
160           Leon Winter).
161         + add missing assignment in lib_getch.c to make notimeout() work
162           (Debian #805618).
163         + add 't' toggle for notimeout() function in test/ncurses.c a/A screens
164         + add viewdata terminal description (Alexandre Montaron).
165         + fix a case in tic/infocmp for formatting capabilities where a
166           backslash at the end of a string was mishandled.
167         + fix some typos in curs_inopts.3x (Benno Schulenberg).
168
169 20151121
170         + fix some inconsistencies in the pccon* entries -TD
171         + add bold to pccon+sgr+acs and pccon-base (Tati Chevron).
172         + add keys f12-f124 to pccon+keys (Tati Chevron).
173         + add test/test_sgr.c program to exercise all combinations of sgr.
174
175 20151107
176         + modify tset's assignment to TERM in its output to reflect the name by
177           which the terminal description is found, rather than the primary
178           name.  That was an unnecessary part from the initial conversion of
179           tset from termcap to terminfo.  The termcap program in 4.3BSD did
180           this to avoid using the short 2-character name (report by Rich
181           Burridge).
182         + minor fix to configure script to ensure that rules for resulting.map
183           are only generated when needed (cf: 20151101).
184         + modify configure script to handle the case where tic-library is
185           renamed, but the --with-debug option is used by itself without
186           normal or shared libraries (prompted by comment in Debian #803482).
187
188 20151101
189         + amend change for pkg-config which allows build of pc-files when no
190           valid pkg-config library directory was configured to suppress the
191           actual install if it is not overridden to a valid directory at
192           install time (cf: 20150822).
193         + modify editing script which generates resulting.map to work with the
194           clang configuration on recent FreeBSD, which gives an error on an
195           empty "local" section.
196         + fix a spurious "(Part)" message in test/ncurses.c b/B tests due
197           to incorrect attribute-masking.
198
199 20151024
200         + modify MKexpanded.c to update the expansion of a temporary filename
201           to "expanded.c", for use in trace statements.
202         + modify layout of b/B tests in test/ncurses.c to allow for additional
203           annotation on the right margin; some terminals with partial support
204           did not display well.
205         + fix typo in curs_attr.3x (patch by Sven Joachim).
206         + fix typo in INSTALL (patch by Tomas Cech).
207         + improve configure check for setting WILDCARD_SYMS variable; on ppc64
208           the variable is in the Data section rather than Text (patch by Michel
209           Normand, Novell #946048).
210         + using configure option "--without-fallbacks" incorrectly caused
211           FALLBACK_LIST to be set to "no" (patch by Tomas Cech).
212         + updated minitel entries to fix kel problem with emacs, and add
213           minitel1b-nb (Alexandre Montaron).
214         + reviewed/updated nsterm entry Terminal.app in OSX -TD
215         + replace some dead URLs in comments with equivalents from the
216           Internet Archive -TD
217         + update config.guess, config.sub from
218                 http://git.savannah.gnu.org/cgit/config.git
219
220 20151017
221         + modify ncurses/Makefile.in to sort keys.list in POSIX locale
222           (Debian #801864, patch by Esa Peuha).
223         + remove an early-return from _nc_do_color, which can interfere with
224           data needed by bkgd when ncurses is configured with extended colors
225           (patch by Denis Tikhomirov).
226         > fixes for OS/2 (patches by KO Myung-Hun)
227         + use button instead of kbuf[0] in EMX-specific part of lib_mouse.c
228         + support building with libtool on OS/2
229         + use stdc++ on OS/2 kLIBC
230         + clear cf_XOPEN_SOURCE on OS/2
231
232 20151010
233         + add configure check for openpty to test/configure script, for ditto.
234         + minor fixes to test/view.c in investigating Debian #790847.
235         + update autoconf patch to 2.52.20150926, incorporates a fix for Cdk.
236         + add workaround for breakage of POSIX makefiles by recent binutils
237           change.
238         + improve check for working poll() by using posix_openpt() as a
239           fallback in case there is no valid terminal on the standard input
240           (prompted by discussion on bug-ncurses mailing list, Debian #676461).
241
242 20150926
243         + change makefile rule for removing resulting.map to distclean rather
244           than clean.
245         + add /lib/terminfo to terminfo-dirs in ".deb" test-package.
246         + add note on portability of resizeterm and wresize to manual pages.
247
248 20150919
249         + clarify in resizeterm.3x how KEY_RESIZE is pushed onto the input
250           stream.
251         + clarify in curs_getch.3x that the keypad mode affects ability to
252           read KEY_MOUSE codes, but does not affect KEY_RESIZE.
253         + add overlooked build-fix needed with Cygwin for separate Ada95
254           configure script, cf: 20150606 (report by Nicolas Boulenguez)
255
256 20150912
257         + fixes for configure/build using clang on OSX (prompted by report by
258           William Gallafent).
259           + do not redefine "inline" in ncurses_cfg.h; this was originally to
260             solve a problem with gcc/g++, but is aggravated by clang's misuse
261             of symbols to pretend it is gcc.
262           + add braces to configure script to prevent unwanted add of
263             "-lstdc++" to the CXXLIBS symbol.
264           + improve/update test-program used for checking existence of stdc++
265             library.
266           + if $CXXLIBS is set, the linkage test uses that in addition to $LIBS
267
268 20150905
269         + add note in curs_addch.3x about line-drawing when it depends upon
270           UTF-8.
271         + add tic -q option for consistency with infocmp, use it to suppress
272           all comments from the "tic -I" output.
273         + modify infocmp -q option to suppress the "Reconstructed from"
274           header.
275         + add infocmp/tic -Q option, which allows one to dump the compiled
276           form of the terminal entry, in hexadecimal or base64.
277
278 20150822
279         + sort options in usage message for infocmp, to make it simpler to
280           see unused letters.
281         + update usage message for tic, adding "-0" option.
282         + documented differences in ESCDELAY versus AIX's implementation.
283         + fix some compiler warnings from ports.
284         + modify --with-pkg-config-libdir option to make it possible to install
285           ".pc" files even if pkg-config is not found (adapted from patch by
286           Joshua Root).
287
288 20150815
289         + disallow "no" as a possible value for "--with-shlib-version" option,
290           overlooked in cleanup-changes for 20000708 (report by Tommy Alex).
291         + update release notes in INSTALL.
292         + regenerate llib-* files to help with review for release notes.
293
294 20150810
295         + workaround for Debian #65617, which was fixed in mawk's upstream
296           releases in 2009 (report by Sven Joachim).  See
297                 http://invisible-island.net/mawk/CHANGES.html#t20090727
298
299 20150808 6.0 release for upload to ftp.gnu.org
300
301 20150808
302         + build-fix for Ada95 on older platforms without stdint.h
303         + build-fix for Solaris, whose /bin/sh and /usr/bin/sed are non-POSIX.
304         + update release announcement, summarizing more than 800 changes across
305           more than 200 snapshots.
306         + minor fixes to manpages, etc., to simplify linking from announcement
307           page.
308
309 20150725
310         + updated llib-* files.
311         + build-fixes for ncurses library "test_progs" rule.
312         + use alternate workaround for gcc 5.x feature (adapted from patch by
313           Mikhail Peselnik).
314         + add status line to tmux via xterm+sl (patch by Nicholas Marriott).
315         + fixes for st 0.5 from testing with tack -TD
316         + review/improve several manual pages to break up wall-of-text:
317           curs_add_wch.3x, curs_attr.3x, curs_bkgd.3x, curs_bkgrnd.3x,
318           curs_getcchar.3x, curs_getch.3x, curs_kernel.3x, curs_mouse.3x,
319           curs_outopts.3x, curs_overlay.3x, curs_pad.3x, curs_termattrs.3x
320           curs_trace.3x, and curs_window.3x
321
322 20150719
323         + correct an old logic error for %A and %O in tparm (report by "zreed").
324         + improve documentation for signal handlers by adding section in the
325           curs_initscr.3x page.
326         + modify logic in make_keys.c to not assume anything about the size
327           of strnames and strfnames variables, since those may be functions
328           in the thread- or broken-linker configurations (problem found by
329           Coverity).
330         + modify test/configure script to check for pthreads configuration,
331           e.g., ncursestw library.
332
333 20150711
334         + modify scripts to build/use test-packages for the pthreads
335           configuration of ncurses6.
336         + add references to ttytype and termcap symbols in demo_terminfo.c and
337           demo_termcap.c to ensure that when building ncursest.map, etc., that
338           the corresponding names such as _nc_ttytype are added to the list of
339           versioned symbols (report by Werner Fink)
340         + fix regression from 20150704 (report/patch by Werner Fink).
341
342 20150704
343         + fix a few problems reported by Coverity.
344         + fix comparison against "/usr/include" in misc/gen-pkgconfig.in
345           (report by Daiki Ueno, Debian #790548, cf:  20141213).
346
347 20150627
348         + modify configure script to remove deprecated ABI 5 symbols when
349           building ABI 6.
350         + add symbols _nc_Default_Field, _nc_Default_Form, _nc_has_mouse to
351           map-files, but marked as deprecated so that they can easily be
352           suppressed from ABI 6 builds (Debian #788610).
353         + comment-out "screen.xterm" entry, and inherit screen.xterm-256color
354           from xterm-new (report by Richard Birkett) -TD
355         + modify read_entry.c to set the error-return to -1 if no terminal
356           databases were found, as documented for setupterm.
357         + add test_setupterm.c to demonstrate normal/error returns from the
358           setupterm and restartterm functions.
359         + amend cleanup change from 20110813 which removed redundant definition
360           of ret_error, etc., from tinfo_driver.c, to account for the fact that
361           it should return a bool rather than int (report/analysis by Johannes
362           Schindelin).
363
364 20150613
365         + fix overflow warning for OSX with lib_baudrate.c (cf: 20010630).
366         + modify script used to generate map/sym files to mark 5.9.20150530 as
367           the last "5.9" version, and regenerated the files.  That makes the
368           files not use ".current" for the post-5.9 symbols.  This also
369           corrects the label for _nc_sigprocmask used in when weak symbols are
370           configured for the ncursest/ncursestw libraries (prompted by
371           discussion with Sven Joachim).
372         + fix typo in NEWS (report by Sven Joachim).
373
374 20150606 pre-release
375         + make ABI 6 the default by updates to dist.mk and VERSION, with the
376           intention that the existing ABI 5 should build as before using the
377           "--with-abi-version=5" option.
378         + regenerate ada- and man-html documentation.
379         + minor fixes to color- and util-manpages.
380         + fix a regression in Ada95/gen/Makefile.in, to handle special case of
381           Cygwin, which uses the broken-linker feature.
382         + amend fix for CF_NCURSES_CONFIG used in test/configure to assume that
383           ncurses package scripts work when present for cross-compiling, as the
384           lessor of two evils (cf: 20150530).
385         + add check in configure script to disallow conflicting options
386           "--with-termlib" and "--enable-term-driver".
387         + move defaults for "--disable-lp64" and "--with-versioned-syms" into
388           CF_ABI_DEFAULTS macro.
389
390 20150530
391         + change private type for Event_Mask in Ada95 binding to work when
392           mmask_t is set to 32-bits.
393         + remove spurious "%;" from st entry (report by Daniel Pitts) -TD
394         + add vte-2014, update vte to use that -TD
395         + modify tic and infocmp to "move" a diagnostic for tparm strings that
396           have a syntax error to tic's "-c" option (report by Daniel Pitts).
397         + fix two problems with configure script macros (Debian #786436,
398           cf: 20150425, cf: 20100529).
399
400 20150523
401         + add 'P' menu item to test/ncurses.c, to show pad in color.
402         + improve discussion in curs_color.3x about color rendering (prompted
403           by comment on Stack Overflow forum):
404         + remove screen-bce.mlterm, since mlterm does not do "bce" -TD
405         + add several screen.XXX entries to support the respective variations
406           for 256 colors -TD
407         + add putty+fnkeys* building-block entries -TD
408         + add smkx/rmkx to capabilities analyzed with infocmp "-i" option.
409
410 20150516
411         + amend change to ".pc" files to only use the extra loader flags which
412           may have rpath options (report by Sven Joachim, cf: 20150502).
413         + change versioning for dpkg's in test-packages for Ada95 and
414           ncurses-examples for consistency with Debian, to work with package
415           updates.
416         + regenerate html manpages.
417         + clarify handling of carriage return in waddch manual page; it was
418           discussed only in the portability section (prompted by comment on
419           Stack Overflow forum):
420
421 20150509
422         + add test-packages for cross-compiling ncurses-examples using the
423           MinGW test-packages.  These are only the Debian packages; RPM later.
424         + cleanup format of debian/copyright files
425         + add pc-files to the MinGW cross-compiling test-packages.
426         + correct a couple of places in gen-pkgconfig.in to handle renaming of
427           the tinfo library.
428
429 20150502
430         + modify the configure script to allow different default values
431           for ABI 5 versus ABI 6.
432         + add wgetch-events to test-packages.
433         + add a note on how to build ncurses-examples to test/README.
434         + fix a memory leak in delscreen (report by Daniel Kahn Gillmor,
435           Debian #783486) -TD
436         + remove unnecessary ';' from E3 capabilities -TD
437         + add tmux entry, derived from screen (patch by Nicholas Marriott).
438         + split-out recent change to nsterm-bce as nsterm-build326, and add
439           nsterm-build342 to reflect changes with successive releases of OSX
440           (discussion with Leonardo B Schenkel)
441         + add xon, ich1, il1 to ibm3161 (patch by Stephen Powell, Debian
442           #783806)
443         + add sample "magic" file, to document ext-putwin.
444         + modify gen-pkgconfig.in to add explicit -ltinfo, etc., to the
445           generated ".pc" file when ld option "--as-needed" is used, or when
446           ncurses and tinfo are installed without using rpath (prompted by
447           discussion with Sylvain Bertrand).
448         + modify test-package for ncurses6 to omit rpath feature when installed
449           in /usr.
450         + add OSX's "*.dSYM" to clean-rules in makefiles.
451         + make extra-suffix work for OSX configuration, e.g., for shared
452           libraries.
453         + modify Ada95/configure script to work with pkg-config
454         + move test-package for ncurses6 to /usr, since filename-conflicts have
455           been eliminated.
456         + corrected build rules for Ada95/gen/generate; it does not depend on
457           the ncurses library aside from headers.
458         + reviewed man pages, fixed a few other spelling errors.
459         + fix a typo in curs_util.3x (Sven Joachim).
460         + use extra-suffix in some overlooked shared library dependencies
461           found by 20150425 changes for test-packages.
462         + update config.guess, config.sub from
463                 http://git.savannah.gnu.org/cgit/config.git
464
465 20150425
466         + expanded description of tgetstr's area pointer in manual page
467           (report by Todd M Lewis).
468         + in-progress changes to modify test-packages to use ncursesw6 rather
469           than ncursesw, with updated configure scripts.
470         + modify CF_NCURSES_CONFIG in Ada95- and test-configure scripts to
471           check for ".pc" files via pkg-config, but add a linkage check since
472           frequently pkg-config configurations are broken.
473         + modify misc/gen-pkgconfig.in to include EXTRA_LDFLAGS, e.g., for the
474           rpath option.
475         + add 'dim' capability to screen entry (report by Leonardo B Schenkel)
476         + add several key definitions to nsterm-bce to match preconfigured
477           keys, e.g., with OSX 10.9 and 10.10 (report by Leonardo B Schenkel)
478         + fix repeated "extra-suffix" in ncurses-config.in (cf: 20150418).
479         + improve term_variables manual page, adding section on the terminfo
480           long-name symbols which are defined in the term.h header.
481         + fix bug in lib_tracebits.c introduced in const-fixes (cf: 20150404).
482
483 20150418
484         + avoid a blank line in output from tabs program by ending it with
485           a carriage return as done in FreeBSD (patch by James Clarke).
486         + build-fix for the "--enable-ext-putwin" feature when not using
487           wide characters (report by Werner Fink).
488         + modify autoconf macros to use scripting improvement from xterm.
489         + add -brtl option to compiler options on AIX 5-7, needed to link
490           with the shared libraries.
491         + add --with-extra-suffix option to help with installing nonconflicting
492           ncurses6 packages, e.g., avoiding header- and library-conflicts.
493           NOTE: as a side-effect, this renames
494                   adacurses-config to adacurses5-config and
495                   adacursesw-config to adacursesw5-config
496         + modify debian/rules test package to suffix programs with "6".
497         + clarify in curs_inopts.3x that window-specific settings do not
498           inherit into new windows.
499
500 20150404
501         + improve description of start_color() in the manual.
502         + modify several files in ncurses- and progs-directories to allow
503           const data used in internal tables to be put by the linker into the
504           readonly text segment.
505
506 20150329
507         + correct cut/paste error for "--enable-ext-putwin" that made it the
508           same as "--enable-ext-colors" (report by Roumen Petrov)
509
510 20150328
511         + add "-f" option to test/savescreen.c to help with testing/debugging
512           the extended putwin/getwin.
513         + add logic for writing/reading combining characters in the extended
514           putwin/getwin.
515         + add "--enable-ext-putwin" configure option to turn on the extended
516           putwin/getwin.
517
518 20150321
519         + in-progress changes to provide an extended version of putwin and
520           getwin which will be capable of reading screen-dumps between the
521           wide/normal ncurses configurations.  These are text files, except
522           for a magic code at the beginning:
523           0       string          \210\210        Screen-dump (ncurses)
524
525 20150307
526         + document limitations of getwin in manual page (prompted by discussion
527           with John S Urban).
528         + extend test/savescreen.c to demonstrate that color pair values
529           and graphic characters can be restored using getwin.
530
531 20150228
532         + modify win_driver.c to eliminate the constructor, to make it more
533           usable in an application which may/may not need the console window
534           (report by Grady Martin).
535
536 20150221
537         + capture define's related to -D_XOPEN_SOURCE from the configure check
538           and add those to the *-config and *.pc files, to simplify use for
539           the wide-character libraries.
540         + modify ncurses.spec to accommodate Fedora21's location of pkg-config
541           directory.
542         + correct sense of "--disable-lib-suffixes" configure option (report
543           by Nicolas Boos, cf: 20140426).
544
545 20150214
546         + regenerate html manpages using improved man2html from work on xterm.
547         + regenerated ".map" and ".sym" files using improved script, accounting
548           for the "--enable-weak-symbols" configure option (report by Werner
549           Fink).
550
551 20150131
552         + regenerated ".map" and ".sym" files using improved script, showing
553           the combinations of configure options used at each stage.
554
555 20150124
556         + add configure check to determine if "local: _*;" can be used in the
557           ".map" files to selectively omit symbols beginning with "_".  On at
558           least recent FreeBSD, the wildcard applies to all "_" symbols.
559         + remove obsolete/conflicting rule for ncurses.map from
560           ncurses/Makefile.in (cf:  20130706).
561
562 20150117
563         + improve description in INSTALL of the --with-versioned-syms option.
564         + add combination of --with-hashed-db and --with-ticlib to
565           configurations for ".map" files (report by Werner Fink).
566
567 20150110
568         + add a step to generating ".map" files, to declare any remaining
569           symbols beginning with "_" as local, at the last version node.
570         + improve configure checks for pkg-config, addressing a variant found
571           with FreeBSD ports.
572         + modify win_driver.c to provide characters for special keys, like
573           ansi.sys, when keypad mode is off, rather than returning nothing at
574           all (discussion with Eli Zaretskii).
575         + add "broken_linker" and "hashed-db" configure options to combinations
576           use for generating the ".map" and ".sym" files.
577         + avoid using "ld" directly when creating shared library, to simplify
578           cross-compiles.  Also drop "-Bsharable" option from shared-library
579           rules for FreeBSD and DragonFly (FreeBSD #196592).
580         + fix a memory leak in form library Free_RegularExpression_Type()
581           (report by Pavel Balaev).
582
583 20150103
584         + modify_nc_flush() to retry if interrupted (patch by Stian Skjelstad).
585         + change map files to make _nc_freeall a global, since it may be used
586           via the Ada95 binding when checking for memory leaks.
587         + improve sed script used in 20141220 to account for wide-, threaded-
588           variations in ABI 6.
589
590 20141227
591         + regenerate ".map" files, using step overlooked in 20141213 to use
592           the same patch-dates across each file to match ncurses.map (report by
593           Sven Joachim).
594
595 20141221
596         + fix an incorrect variable assignment in 20141220 changes (report by
597           Sven Joachim).
598
599 20141220
600         + updated Ada95/configure with macro changes from 20141213
601         + tie configure options --with-abi-version and --with-versioned-syms
602           together, so that ABI 6 libraries have distinct symbol versions from
603           the ABI 5 libraries.
604         + replace obsolete/nonworking link to man2html with current one,
605           regenerate html-manpages.
606
607 20141213
608         + modify misc/gen-pkgconfig.in to add -I option for include-directory
609           when using both --prefix and --disable-overwrite (report by Misty
610           De Meo).
611         + add configure option --with-pc-suffix to allow minor renaming of
612           ".pc" files and the corresponding library.  Use this in the test
613           package for ncurses6.
614         + modify configure script so that if pkg-config is not installed, it
615           is still possible to install ".pc" files (report by Misty De Meo).
616         + updated ".sym" files, removing symbols which are marked as "local"
617           in the corresponding ".map" files.
618         + updated ".map" files to reflect move of comp_captab and comp_hash
619           from tic-library to tinfo-library in 20090711 (report by Sven
620           Joachim).
621
622 20141206
623         + updated ".map" files so that each symbol that may be shared across
624           the different library configurations has the same label.  Some
625           review is needed to ensure these are really compatible.
626         + modify MKlib_gen.sh to work around change in development version of
627           gcc introduced here:
628                   https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html
629                   https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html
630           (reports by Marcus Shawcroft, Maohui Lei).
631         + improved configure macro CF_SUBDIR_PATH, from lynx changes.
632
633 20141129
634         + improved ".map" files by generating them with a script that builds
635           ncurses with several related configurations and merges the results.
636           A further refinement is planned, to make the tic- and tinfo-library
637           symbols use the same versions across each of the four configurations
638           which are represented (reports by Sven Joachim, Werner Fink).
639
640 20141115
641         + improve description of limits for color values and color pairs in
642           curs_color.3x (prompted by patch by Tim van der Molen).
643         + add VERSION file, using first field in that to record the ABI version
644           used for configure --with-libtool --disable-libtool-version
645         + add configure options for applying the ".map" and ".sym" files to
646           the ncurses, form, menu and panel libraries.
647         + add ".map" and ".sym" files to show exported symbols, e.g., for
648           symbol-versioning.
649
650 20141101
651         + improve strict compiler-warnings by adding a cast in TRACE_RETURN
652           and making a new TRACE_RETURN1 macro for cases where the cast does
653           not apply.
654
655 20141025
656         + in-progress changes to integrate the win32 console driver with the
657           msys2 configuration.
658
659 20141018
660         + reviewed terminology 0.6.1, add function key definitions.  None of
661           the vt100-compatibility issues were improved -TD
662         + improve infocmp conversion of extended capabilities to termcap by
663           correcting the limit check against parametrized[], as well as filling
664           in a check if the string happens to have parameters, e.g., "xm"
665           in recent changes.
666         + add check for zero/negative dimensions for resizeterm and resize_term
667           (report by Mike Gran).
668
669 20141011
670         + add experimental support for xterm's 1005 mouse mode, to use in a
671           demonstration of its limitations.
672         + add experimental support for "%u" format to terminfo.
673         + modify test/ncurses.c to also show position reports in 'a' test.
674         + minor formatting fixes to _nc_trace_mmask_t, make this function
675           exported to help with debugging mouse changes.
676         + improve behavior of wheel-mice for xterm protocol, noting that there
677           are only button-presses for buttons "4" and "5", so there is no need
678           to wait to combine events into double-clicks (report/analysis by
679           Greg Field).
680         + provide examples xterm-1005 and xterm-1006 terminfo entries -TD
681         + implement decoder for xterm SGR 1006 mouse mode.
682
683 20140927
684         + implement curs_set in win_driver.c
685         + implement flash in win_driver.c
686         + fix an infinite loop in win_driver.c if the command-window loses
687           focus.
688         + improve the non-buffered mode, i.e., NCURSES_CONSOLE2, of
689           win_driver.c by temporarily changing the buffer-size to match the
690           window-size to eliminate the scrollback.  Also enforce a minimum
691           screen-size of 24x80 in the non-buffered mode.
692         + modify generated misc/Makefile to suppress install.data from the
693           dependencies if the --disable-db-install option is used, compensating
694           for the top-level makefile changes used to add ncurses*-config in the
695           20140920 changes (report by Steven Honeyman).
696
697 20140920
698         + add ncurses*-config to bin-directory of sample package-scripts.
699         + add check to ensure that getopt is available; this is a problem in
700           some older cross-compiler environments.
701         + expanded on the description of --disable-overwrite in INSTALL
702           (prompted by reports by Joakim Tjernlund, Thomas Klausner).
703           See Gentoo #522586 and NetBSD #49200 for examples.
704           which relates to the clarified guidelines.
705         + remove special logic from CF_INCLUDE_DIRS which adds the directory
706           for the --includedir from the build (report by Joakim Tjernlund).
707         + add case for Unixware to CF_XOPEN_SOURCE, from lynx changes.
708         + update config.sub from
709                 http://git.savannah.gnu.org/cgit/config.git
710
711 20140913
712         + add a configure check to ignore some of the plethora of non-working
713           C++ cross-compilers.
714         + build-fixes for Ada95 with gnat 4.9
715
716 20140906
717         + build-fix and other improvements for port of ncurses-examples to
718           NetBSD.
719         + minor compiler-warning fixes.
720
721 20140831
722         + modify test/demo_termcap.c and test/demo_terminfo.c to make their
723           options more directly comparable, and add "-i" option to specify
724           a terminal description filename to parse for names to lookup.
725
726 20140823
727         + fix special case where double-width character overwrites a single-
728           width character in the first column (report by Egmont Koblinger,
729           cf: 20050813).
730
731 20140816
732         + fix colors in ncurses 'b' test which did not work after changing
733           it to put the test-strings in subwindows (cf: 20140705).
734         + merge redundant SEE-ALSO sections in form and menu manpages.
735
736 20140809
737         + modify declarations for user-data pointers in C++ binding to use
738           reinterpret_cast to facilitate converting typed pointers to void*
739           in user's application (patch by Adam Jiang).
740         + regenerated html manpages.
741         + add note regarding cause and effect for TERM in ncurses manpage,
742           having noted clueless verbiage in Terminal.app's "help" file
743           which reverses cause/effect.
744         + remove special fallback definition for NCURSES_ATTR_T, since macros
745           have resolved type-mismatches using casts (cf: 970412).
746         + fixes for win_driver.c:
747           + handle repainting on endwin/refresh combination.
748           + implement beep().
749           + minor cleanup.
750
751 20140802
752         + minor portability fixes for MinGW:
753           + ensure WINVER is defined in makefiles rather than using headers
754           + add check for gnatprep "-T" option
755           + work around bug introduced by gcc 4.8.1 in MinGW which breaks
756             "trace" feature:
757             http://stackoverflow.com/questions/20877689/gcc-4-8-1-minggw-d-option-does-not-work-as-usual
758         + fix most compiler warnings for Cygwin ncurses-examples.
759         + restore "redundant" -I options in test/Makefile.in, since they are
760           typically needed when building the derived ncurses-examples package
761           (cf: 20140726).
762
763 20140726
764         + eliminate some redundant -I options used for building libraries, and
765           ensure that ${srcdir} is added to the include-options (prompted by
766           discussion with Paul Gilmartin).
767         + modify configure script to work with Minix3.2
768         + add form library extension O_DYNAMIC_JUSTIFY option which can be
769           used to override the different treatment of justification for static
770           versus dynamic fields (adapted from patch by Leon Winter).
771         + add a null pointer check in test/edit_field.c (report/analysis by
772           Leon Winter, cf: 20130608).
773
774 20140719
775         + make workarounds for compiling test-programs with NetBSD curses.
776         + improve configure macro CF_ADD_LIBS, to eliminate repeated -l/-L
777           options, from xterm changes.
778
779 20140712
780         + correct Charable() macro check for A_ALTCHARSET in wide-characters.
781         + build-fix for position-debug code in tty_update.c, to work with or
782           without sp-funcs.
783
784 20140705
785         + add w/W toggle to ncurses.c 'B' test, to demonstrate permutation of
786           video-attributes and colors with double-width character strings.
787
788 20140629
789         + correct check in win_driver.c for saving screen contents, e.g., when
790           NCURSES_CONSOLE2 is set (cf: 20140503).
791         + reorganize b/B menu items in ncurses.c, putting the test-strings into
792           subwindows.  This is needed for a planned change to use Unicode
793           fullwidth characters in the test-screens.
794         + correct update to form status for _NEWTOP, broken by fixes for
795           compiler warnings (patch by Leon Winter, cf: 20120616).
796
797 20140621
798         + change shared-library suffix for AIX 5 and 6 to ".so", avoiding
799           conflict with the static library (report by Ben Lentz).
800         + document RPATH_LIST in INSTALLATION file, as part of workarounds for
801           upgrading an ncurses library using the "--with-shared" option.
802         + modify test/ncurses.c c/C tests to cycle through subsets of the
803           total number of colors, to better illustrate 8/16/88/256-colors by
804           providing directly comparable screens.
805         + add test/dots_curses.c, for comparison with the low-level examples.
806
807 20140614
808         + fix dereference before null check found by Coverity in tic.c
809           (cf: 20140524).
810         + fix sign-extension bug in read_entry.c which prevented "toe" from
811           reading empty "screen+italics" entry.
812         + modify sgr for screen.xterm-new to support dim capability -TD
813         + add dim capability to nsterm+7 -TD
814         + cancel dim capability for iterm -TD
815         + add dim, invis capabilities to vte-2012 -TD
816         + add sitm/ritm to konsole-base and mlterm3 -TD
817
818 20140609
819         > fix regression in screen terminfo entries (reports by Christian
820           Ebert, Gabriele Balducci) -TD
821         + revert the change to screen; see notes for why this did not work -TD
822         + cancel sitm/ritm for entries which extend "screen", to work around
823           screen's hardcoded behavior for SGR 3 -TD
824
825 20140607
826         + separate masking for sgr in vidputs from sitm/ritm, which do not
827           overlap with sgr functionality.
828         + remove unneeded -i option from adacurses-config; put -a in the -I
829           option for consistency (patch by Pascal Pignard).
830         + update xterm-new terminfo entry to xterm patch #305 -TD
831         + change format of test-scripts for Debian Ada95 and ncurses-examples
832           packages to quilted to work around Debian #700177 (cf: 20130907).
833         + build fix for form_driver_w.c as part of ncurses-examples package for
834           older ncurses than 20131207.
835         + add Hello World example to adacurses-config manpage.
836         + remove unused --enable-pc-files option from Ada95/configure.
837         + add --disable-gnat-projects option for testing.
838         + revert changes to Ada95 project-files configuration (cf: 20140524).
839         + corrected usage message in adacurses-config.
840
841 20140524
842         + fix typo in ncurses manpage for the NCURSES_NO_MAGIC_COOKIE
843           environment variable.
844         + improve discussion of input-echoing in curs_getch.3x
845         + clarify discussion in curs_addch.3x of wrapping.
846         + modify parametrized.h to make fln non-padded.
847         + correct several entries which had termcap-style padding used in
848           terminfo: adm21, aj510, alto-h19, att605-pc, x820 -TD
849         + correct syntax for padding in some entries: dg211, h19 -TD
850         + correct ti924-8 which had confused padding versus octal escapes -TD
851         + correct padding in sbi entry -TD
852         + fix an old bug in the termcap emulation; "%i" was ignored in tparm()
853           because the parameters to be incremented were already on the internal
854           stack (report by Corinna Vinschen).
855         + modify tic's "-c" option to take into account the "-C" option to
856           activate additional checks which compare the results from running
857           tparm() on the terminfo expressions versus the translated termcap
858           expressions.
859         + modify tic to allow it to read from FIFOs (report by Matthieu Fronton,
860           cf: 20120324).
861         > patches by Nicolas Boulenguez:
862         + explicit dereferences to suppress some style warnings.
863         + when c_varargs_to_ada.c includes its header, use double quotes
864           instead of <>.
865         + samples/ncurses2-util.adb:  removed unused with clause.  The warning
866           was removed by an obsolete pragma.
867         + replaced Unreferenced pragmas with Warnings (Off).  The latter,
868           available with older GNATs, needs no configure test.  This also
869           replaces 3 untested Unreferenced pragmas.
870         + simplified To_C usage in trace handling.  Using two parameters allows
871           some basic formatting, and avoids a warning about security with some
872           compiler flags.
873         + for generated Ada sources, replace many snippets with one pure
874           package.
875         + removed C_Chtype and its conversions.
876         + removed C_AttrType and its conversions.
877         + removed conversions between int, Item_Option_Set, Menu_Option_Set.
878         + removed int, Field_Option_Set, Item_Option_Set conversions.
879         + removed C_TraceType, Attribute_Option_Set conversions.
880         + replaced C.int with direct use of Eti_Error, now enumerated.  As it
881           was used in a case statement, values were tested by the Ada compiler
882           to be consecutive anyway.
883         + src/Makefile.in: remove duplicate stanza
884         + only consider using a project for shared libraries.
885         + style. Silent gnat-4.9 warning about misplaced "then".
886         + generate shared library project to honor ADAFLAGS, LDFLAGS.
887
888 20140510
889         + cleanup recently introduced compiler warnings for MingW port.
890         + workaround for ${MAKEFLAGS} configure check versus GNU make 4.0,
891           which introduces more than one gratuitous incompatibility.
892
893 20140503
894         + add vt520ansi terminfo entry (patch by Mike Gran)
895         + further improve MinGW support for the scenario where there is an
896           ANSI-escapes handler such as ansicon running in the console window
897           (patch by Juergen Pfeifer).
898
899 20140426
900         + add --disable-lib-suffixes option (adapted from patch by Juergen
901           Pfeifer).
902         + merge some changes from Juergen Pfeifer's work with MSYS2, to
903           simplify later merging:
904           + use NC_ISATTY() macro for isatty() in library
905           + add _nc_mingw_isatty() and related functions to windows-driver
906           + rename terminal driver entrypoints to simplify grep's
907         + remove a check in the sp-funcs flavor of newterm() which allowed only
908           the first call to newterm() to succeed (report by Thomas Beierlein,
909           cf: 20090927).
910
911 20140419
912         + update config.guess, config.sub from
913                 http://git.savannah.gnu.org/cgit/config.git
914
915 20140412
916         + modify configure script:
917           + drop the -no-gcc option from Intel compiler, from lynx changes.
918           + extend the --with-hashed-db configure option to simplify building
919             with different versions of Berkeley database using FreeBSD ports.
920         + improve initialization for MinGW port (Juergen Pfeifer):
921           + enforce Windows-style path-separator if cross-compiling,
922           + add a driver-name method to each of the drivers,
923           + allow the Windows driver name to match "unknown", ignoring case,
924           + lengthen the built-in name for the Windows console driver to
925             "#win32console", and
926           + move the comparison of driver-names allowing abbreviation, e.g.,
927             to "#win32con" into the Windows console driver.
928
929 20140329
930         + add check in tic for mismatch between ccc and initp/initc
931         + cancel ccc in putty-256color and konsole-256color for consistency
932           with the cancelled initc capability (patch by Sven Zuhlsdorf).
933         + add xterm+256setaf building block for various terminals which only
934           get the 256-color feature half-implemented -TD
935         + updated "st" entry (leaving the 0.1.1 version as "simpleterm") to
936           0.4.1 -TD
937
938 20140323
939         + fix typo in "mlterm" entry (report by Gabriele Balducci) -TD
940
941 20140322
942         + use types from <stdint.h> in sample build-scripts for chtype, etc.
943         + modify configure script and curses.h.in to allow the types specified
944           using --with-chtype and related options to be defined in <stdint.h>
945         + add terminology entry -TD
946         + add mlterm3 entry, use that as "mlterm" -TD
947         + inherit mlterm-256color from mlterm -TD
948
949 20140315
950         + modify _nc_New_TopRow_and_CurrentItem() to ensure that the menu's
951           top-row is adjusted as needed to ensure that the current item is
952           on the screen (patch by Johann Klammer).
953         + add wgetdelay() to retrieve _delay member of WINDOW if it happens to
954           be opaque, e.g., in the pthread configuration (prompted by patch by
955           Soren Brinkmann).
956
957 20140308
958         + modify ifdef in read_entry.c to handle the case where
959           NCURSES_USE_DATABASE is not defined (patch by Xin Li).
960         + add cast in form_driver_w() to fix ARM build (patch by Xin Li).
961         + add logic to win_driver.c to save/restore screen contents when not
962           allocating a console-buffer (cf: 20140215).
963
964 20140301
965         + clarify error-returns from newwin (report by Ruslan Nabioullin).
966
967 20140222
968         + fix some compiler warnings in win_driver.c
969         + updated notes for wsvt25 based on tack and vttest -TD
970         + add teken entry to show actual properties of FreeBSD's "xterm"
971           console -TD
972
973 20140215
974         + in-progress changes to win_driver.c to implement output without
975           allocating a console-buffer.  This uses a pre-existing environment
976           variable NCGDB used by Juergen Pfeifer for debugging (prompted by
977           discussion with Erwin Waterlander regarding Console2, which hangs
978           when reading in an allocated console-buffer).
979         + add -t option to gdc.c, and modify to accept "S" to step through the
980           scrolling-stages.
981         + regenerate NCURSES-Programming-HOWTO.html to fix some of the broken
982           html emitted by docbook.
983
984 20140209
985         + modify CF_XOPEN_SOURCE macro to omit followup check to determine if
986           _XOPEN_SOURCE can/should be defined.  g++ 4.7.2 built on Solaris 10
987           has some header breakage due to its own predefinition of this symbol
988           (report by Jean-Pierre Flori, Sage #15796).
989
990 20140201
991         + add/use symbol NCURSES_PAIRS_T like NCURSES_COLOR_T, to illustrate
992           which "short" types are for color pairs and which are color values.
993         + fix build for s390x, by correcting field bit offsets in generated
994           representation clauses when int=32 long=64 and endian=big, or at
995           least on s390x (patch by Nicolas Boulenguez).
996         + minor cleanup change to test/form_driver_w.c (patch by Gaute Hope).
997
998 20140125
999         + remove unnecessary ifdef's in Ada95/gen/gen.c, which reportedly do
1000           not work as is with gcc 4.8 due to fixes using chtype cast made for
1001           new compiler warnings by gcc 4.8 in 20130824 (Debian #735753, patch
1002           by Nicolas Boulenguez).
1003
1004 20140118
1005         + apply includesubdir variable which was introduced in 20130805 to
1006           gen-pkgconfig.in (Debian #735782).
1007
1008 20131221
1009         + further improved man2html, used this to fix broken links in html
1010           manpages.  See
1011           ftp://invisible-island.net/ncurses/patches/man2html
1012
1013 20131214
1014         + modify configure-script/ifdef's to allow OLD_TTY feature to be
1015           suppressed if the type of ospeed is configured using the option
1016           --with-ospeed to not be a short.  By default, it is a short for
1017           termcap-compatibility (adapted from suggestion by Christian
1018           Weisgerber).
1019         + correct a typo in _nc_baudrate() (patch by Christian Weisgerber,
1020           cf: 20061230).
1021         + fix a few -Wlogical-op warnings.
1022         + updated llib-l* files.
1023
1024 20131207
1025         + add form_driver_w() entrypoint to wide-character forms library, as
1026           well as test program form_driver_w (adapted from patch by Gaute
1027           Hope).
1028
1029 20131123
1030         + minor fix for CF_GCC_WARNINGS to special-case options which are not
1031           recognized by clang.
1032
1033 20131116
1034         + add special case to configure script to move _XOPEN_SOURCE_EXTENDED
1035           definition from CPPFLAGS to CFLAGS if it happens to be needed for
1036           Solaris, because g++ errors with that definition (report by
1037           Jean-Pierre Flori, Sage #15268).
1038         + correct logic in infocmp's -i option which was intended to ignore
1039           strings which correspond to function-keys as candidates for piecing
1040           together initialization- or reset-strings.  The problem dates to
1041           1.9.7a, but was overlooked until changes in -Wlogical-op warnings for
1042           gcc 4.8 (report by David Binderman).
1043         + updated CF_GCC_WARNINGS to documented options for gcc 4.9.0, moving
1044           checks for -Wextra and -Wdeclaration-after-statement into the macro,
1045           and adding checks for -Wignored-qualifiers, -Wlogical-op and
1046           -Wvarargs
1047         + updated CF_CURSES_UNCTRL_H and CF_SHARED_OPTS macros from ongoing
1048           work on cdk.
1049         + update config.sub from
1050                 http://git.savannah.gnu.org/cgit/config.git
1051
1052 20131110
1053         + minor cleanup of terminfo.tail
1054
1055 20131102
1056         + use TS extension to describe xterm's title-escapes -TD
1057         + modify terminator and nsterm-s to use xterm+sl-twm building block -TD
1058         + update hurd.ti, add xenl to reflect 2011-03-06 change in
1059           http://git.savannah.gnu.org/cgit/hurd/hurd.git/log/console/display.c
1060           (Debian #727119).
1061         + simplify pfkey expression in ansi.sys -TD
1062
1063 20131027
1064         + correct/simplify ifdef's for cur_term versus broken-linker and
1065           reentrant options (report by Jean-Pierre Flori, cf: 20090530).
1066         + modify release/version combinations in test build-scripts to make
1067           them more consistent with other packages.
1068
1069 20131019
1070         + add nc_mingw.h to installed headers for MinGW port; needed for
1071           compiling ncurses-examples.
1072         + add rpm-script for testing cross-compile of ncurses-examples.
1073
1074 20131014
1075         + fix new typo in CF_ADA_INCLUDE_DIRS macro (report by Roumen Petrov).
1076
1077 20131012
1078         + fix a few compiler warnings in progs and test.
1079         + minor fix to package/debian-mingw/rules, do not strip dll's.
1080         + minor fixes to configure script for empty $prefix, e.g., when doing
1081           cross-compiles to MinGW.
1082         + add script for building test-packages of binaries cross-compiled to
1083           MinGW using NSIS.
1084
1085 20131005
1086         + minor fixes for ncurses-example package and makefile.
1087         + add scripts for test-builds of cross-compiler packages for ncurses6
1088           to MinGW.
1089
1090 20130928
1091         + some build-fixes for ncurses-examples with NetBSD-6.0 curses, though
1092           it lacks some common functions such as use_env() which is not yet
1093           addressed.
1094         + build-fix and some compiler warning fixes for ncurses-examples with
1095           OpenBSD 5.3
1096         + fix a possible null-pointer reference in a trace message from newterm.
1097         + quiet a few warnings from NetBSD 6.0 namespace pollution by
1098           nonstandard popcount() function in standard strings.h header.
1099         + ignore g++ 4.2.1 warnings for "-Weffc++" in c++/cursesmain.cc
1100         + fix a few overlooked places for --enable-string-hacks option.
1101
1102 20130921
1103         + fix typo in curs_attr.3x (patch by Sven Joachim, cf: 20130831).
1104         + build-fix for --with-shared option for DragonFly and FreeBSD (report
1105           by Rong-En Fan, cf: 20130727).
1106
1107 20130907
1108         + build-fixes for MSYS for two test-programs (patches by Ray Donnelly,
1109           Alexey Pavlov).
1110         + revert change to two of the dpkg format files, to work with dpkg
1111           before/after Debian #700177.
1112         + fix gcc -Wconversion warning in wattr_get() macro.
1113         + add msys and msysdll to known host/configuration types (patch by
1114           Alexey Pavlov).
1115         + modify CF_RPATH_HACK configure macro to not rely upon "-u" option
1116           of sort, improving portability.
1117         + minor improvements for test-programs from reviewing Solaris port.
1118         + update config.guess, config.sub from
1119                 http://git.savannah.gnu.org/cgit/config.git
1120
1121 20130831
1122         + modify test/ncurses.c b/B tests to display lines only for the
1123           attributes which a given terminal supports, to make room for an
1124           italics test.
1125         + completed ncv table in terminfo.tail; it did not list the wide
1126           character codes listed in X/Open Curses issue 7.
1127         + add A_ITALIC extension (prompted by discussion with Egmont Koblinger).
1128
1129 20130824
1130         + fix some gcc 4.8 -Wconversion warnings.
1131         + change format of dpkg test-scripts to quilted to work around bug
1132           introduced by Debian #700177.
1133         + discard cached keyname() values if meta() is changed after a value
1134           was cached using (report by Kurban Mallachiev).
1135
1136 20130816
1137         + add checks in tic to warn about terminals which lack cursor
1138           addressing, capabilities or having those, are marked as hard_copy or
1139           generic_type.
1140         + use --without-progs in mingw-ncurses rpm.
1141         + split out _nc_init_termtype() from alloc_entry.c to use in MinGW
1142           port when tic and other programs are not needed.
1143
1144 20130805
1145         + minor fixes to the --disable-overwrite logic, to ensure that the
1146           configured $(includedir) is not cancelled by the mingwxx-filesystem
1147           rpm macros.
1148         + add --disable-db-install configure option, to simplify building
1149           cross-compile support packages.
1150         + add mingw-ncurses.spec file, for testing cross-compiles.
1151
1152 20130727
1153         + improve configure macros from ongoing work on cdk, dialog, xterm:
1154           + CF_ADD_LIB_AFTER - fix a problem with -Wl options
1155           + CF_RPATH_HACK - add missing result-message
1156           + CF_SHARED_OPTS - modify to use $rel_builddir in cygwin and mingw
1157             dll symbols (which can be overridden) rather than explicit "../".
1158           + CF_SHARED_OPTS - modify NetBSD and DragonFly symbols to use ${CC}
1159             rather than ${LD} to improve rpath support.
1160           + CF_SHARED_OPTS - add a symbol to denote the temporary files that
1161             are created by the macro, to simplify clean-rules.
1162           + CF_X_ATHENA - trim extra libraries to work with -Wl,--as-needed
1163         + fix a regression in hashed-database support for NetBSD, which uses
1164           the key-size differently from other implementations (cf: 20121229).
1165
1166 20130720
1167         + further improvements for setupterm manpage, clarifying the
1168           initialization of cur_term.
1169
1170 20130713
1171         + improve manpages for initscr and setupterm.
1172         + minor compiler-warning fixes
1173
1174 20130706
1175         + add fallback defs for <inttypes.h> and <stdint.h> (cf: 20120225).
1176         + add check for size of wchar_t, use that to suppress a chunk of
1177           wcwidth.h in MinGW port.
1178         + quiet linker warnings for MinGW cross-compile with dll's using the
1179           --enable-auto-import flag.
1180         + add ncurses.map rule to ncurses/Makefile to help diagnose symbol
1181           table issues.
1182
1183 20130622
1184         + modify the clear program to take into account the E3 extended
1185           capability to clear the terminal's scrollback buffer (patch by
1186           Miroslav Lichvar, Redhat #815790).
1187         + clarify in resizeterm manpage that LINES and COLS are updated.
1188         + updated ansi example in terminfo.tail, correct misordered example
1189           of sgr.
1190         + fix other doclifter warnings for manpages
1191         + remove unnecessary ".ta" in terminfo.tail, add missing ".fi"
1192           (patch by Eric Raymond).
1193
1194 20130615
1195         + minor changes to some configure macros to make them more reusable.
1196         + fixes for tabs program (prompted by report by Nick Andrik).
1197           + corrected logic in command-line parsing of -a and -c predefined
1198             tab-lists options.
1199           + allow "-0" and "-8" options to be combined with others, e.g.,"-0d".
1200           + make warning messages more consistent with the other utilities by
1201             not printing the full pathname of the program.
1202           + add -V option for consistency with other utilities.
1203         + fix off-by-one in columns for tabs program when processing an option
1204           such as "-5" (patch by Nick Andrik).
1205
1206 20130608
1207         + add to test/demo_forms.c examples of using the menu-hooks as well
1208           as showing how the menu item user-data can be used to pass a callback
1209           function pointer.
1210         + add test/dots_termcap.c
1211         + remove setupterm call from test/demo_termcap.c
1212         + build-fix if --disable-ext-funcs configure option is used.
1213         + modified test/edit_field.c and test/demo_forms.c to move the lengths
1214           into a user-data structure, keeping the original string for later
1215           expansion to free-format input/out demo.
1216         + modified test/demo_forms.c to load data from file.
1217         + added note to clarify Terminal.app's non-emulation of the various
1218           terminal types listed in the preferences dialog -TD
1219         + fix regression in error-reporting in lib_setup.c (Debian #711134,
1220           cf: 20121117).
1221         + build-fix for a case where --enable-broken_linker and
1222           --enable-reentrant options are combined (report by George R Goffe).
1223
1224 20130525
1225         + modify mvcur() to distinguish between internal use by the ncurses
1226           library, and external callers, preventing it from reading the content
1227           of the screen which is only nonblank when curses calls have updated
1228           it.  This makes test/dots_mvcur.c avoid painting colored cells in
1229           the left margin of the display.
1230         + minor fix to test/dots_mvcur.c
1231         + move configured symbols USE_DATABASE and USE_TERMCAP to term.h as
1232           NCURSES_USE_DATABASE and NCURSES_USE_TERMCAP to allow consistent
1233           use of these symbols in term_entry.h
1234
1235 20130518
1236         + corrected ifdefs in test/testcurs.c to allow comparison of mouse
1237           interface versus pdcurses (cf: 20130316).
1238         + add pow() to configure-check for math library, needed since
1239           20121208 for test/hanoi (Debian #708056).
1240         + regenerated html manpages.
1241         + update doctype used for html documentation.
1242
1243 20130511
1244         + move nsterm-related entries out of "obsolete" section to more
1245           plausible "ansi consoles" -TD
1246         + additional cleanup of table-of-contents by reordering -TD
1247         + revise fix for check for 8-bit value in _nc_insert_ch(); prior fix
1248           prevented inserts when video attributes were attached to the data
1249           (cf: 20121215) (Redhat #959534).
1250
1251 20130504
1252         + fixes for issues found by Coverity:
1253           + correct FNKEY() macro in progs/dump_entry.c, allowing kf11-kf63 to
1254             display when infocmp's -R option is used for HP or AIX subsets.
1255           + fix dead-code issue with test/movewindow.c
1256           + improve limited-checking in _nc_read_termtype().
1257
1258 20130427
1259         + fix clang 3.2 warning in progs/dump_entry.c
1260         + drop AC_TYPE_SIGNAL check; ncurses relies on c89 and later.
1261
1262 20130413
1263         + add MinGW to cases where ncurses installs by default into /usr
1264           (prompted by discussion with Daniel Silva Ferreira).
1265         + add -D option to infocmp's usage-message (patch by Miroslav Lichvar).
1266         + add a missing 'int' type for main function in configure check for
1267           type of bool variable, to work with clang 3.2 (report by Dmitri
1268           Gribenko).
1269         + improve configure check for static_cast, to work with clang 3.2
1270           (report by Dmitri Gribenko).
1271         + re-order rule for demo.o and macros defining header dependencies in
1272           c++/Makefile.in to accommodate gmake (report by Dmitri Gribenko).
1273
1274 20130406
1275         + improve parameter checking in copywin().
1276         + modify configure script to work around OS X's "libtool" program, to
1277           choose glibtool instead.  At the same time, chance the autoconf macro
1278           to look for a "tool" rather than a "prog", to help with potential use
1279           in cross-compiling.
1280         + separate the rpath usage for c++ library from demo program
1281           (Redhat #911540)
1282         + update/correct header-dependencies in c++ makefile (report by Werner
1283           Fink).
1284         + add --with-cxx-shared to dpkg-script, as done for rpm-script.
1285
1286 20130324
1287         + build-fix for libtool configuration (reports by Daniel Silva Ferreira
1288           and Roumen Petrov).
1289
1290 20130323
1291         + build-fix for OS X, to handle changes for --with-cxx-shared feature
1292           (report by Christian Ebert).
1293         + change initialization for vt220, similar entries for consistency
1294           with cursor-key strings (NetBSD #47674) -TD
1295         + further improvements to linux-16color (Benjamin Sittler)
1296
1297 20130316
1298         + additional fix for tic.c, to allocate missing buffer space.
1299         + eliminate configure-script warnings for gen-pkgconfig.in
1300         + correct typo in sgr string for sun-color,
1301           add bold for consistency with sgr,
1302           change smso for consistency with sgr -TD
1303         + correct typo in sgr string for terminator -TD
1304         + add blink to the attributes masked by ncv in linux-16color (report
1305           by Benjamin Sittler)
1306         + improve warning message from post-load checking for missing "%?"
1307           operator by tic/infocmp by showing the entry name and capability.
1308         + minor formatting improvement to tic/infocmp -f option to ensure
1309           line split after "%;".
1310         + amend scripting for --with-cxx-shared option to handle the debug
1311           library "libncurses++_g.a" (report by Sven Joachim).
1312
1313 20130309
1314         + amend change to toe.c for reading from /dev/zero, to ensure that
1315           there is a buffer for the temporary filename (cf: 20120324).
1316         + regenerated html manpages.
1317         + fix typo in terminfo.head (report by Sven Joachim, cf: 20130302).
1318         + updated some autoconf macros:
1319           + CF_ACVERSION_CHECK, from byacc 1.9 20130304
1320           + CF_INTEL_COMPILER, CF_XOPEN_SOURCE from luit 2.0-20130217
1321         + add configure option --with-cxx-shared to permit building
1322           libncurses++ as a shared library when using g++, e.g., the same
1323           limitations as libtool but better integrated with the usual build
1324           configuration (Redhat #911540).
1325         + modify MKkey_defs.sh to filter out build-path which was unnecessarily
1326           shown in curses.h (Debian #689131).
1327
1328 20130302
1329         + add section to terminfo manpage discussing user-defined capabilities.
1330         + update manpage description of NCURSES_NO_SETBUF, explaining why it
1331           is obsolete.
1332         + add a check in waddch_nosync() to ensure that tab characters are
1333           treated as control characters; some broken locales claim they are
1334           printable.
1335         + add some traces to the Windows console driver.
1336         + initialize a temporary array in _nc_mbtowc, needed for some cases
1337           of raw input in MinGW port.
1338
1339 20130218
1340         + correct ifdef on change to lib_twait.c (report by  Werner Fink).
1341         + update config.guess, config.sub
1342
1343 20130216
1344         + modify test/testcurs.c to work with mouse for ncurses as it does for
1345           pdcurses.
1346         + modify test/knight.c to work with mouse for pdcurses as it does for
1347           ncurses.
1348         + modify internal recursion in wgetch() which handles cooked mode to
1349           check if the call to wgetnstr() returned an error.  This can happen
1350           when both nocbreak() and nodelay() are set, for instance (report by
1351           Nils Christopher Brause) (cf: 960418).
1352         + fixes for issues found by Coverity:
1353           + add a check for valid position in ClearToEOS()
1354           + fix in lib_twait.c when --enable-wgetch-events is used, pointer
1355             use after free.
1356           + improve a limit-check in make_hash.c
1357           + fix a memory leak in hashed_db.c
1358
1359 20130209
1360         + modify test/configure script to make it simpler to override names
1361           of curses-related libraries, to help with linking with pdcurses in
1362           MinGW environment.
1363         + if the --with-terminfo-dirs configure option is not used, there is
1364           no corresponding compiled-in value for that.  Fill in "no default
1365           value" for that part of the manpage substitution.
1366
1367 20130202
1368         + correct initialization in knight.c which let it occasionally make
1369           an incorrect move (cf: 20001028).
1370         + improve documentation of the terminfo/termcap search path.
1371
1372 20130126
1373         + further fixes to mvcur to pass callback function (cf: 20130112),
1374           needed to make test/dots_mvcur work.
1375         + reduce calls to SetConsoleActiveScreenBuffer in win_driver.c, to
1376           help reduce flicker.
1377         + modify configure script to omit "+b" from linker options for very
1378           old HP-UX systems (report by Dennis Grevenstein)
1379         + add HP-UX workaround for missing EILSEQ on old HP-UX systems (patch
1380           by Dennis Grevenstein).
1381         + restore memmove/strdup support for antique systems (request by
1382           Dennis Grevenstein).
1383         + change %l behavior in tparm to push the string length onto the stack
1384           rather than saving the formatted length into the output buffer
1385           (report by Roy Marples, cf: 980620).
1386
1387 20130119
1388         + fixes for issues found by Coverity:
1389           + fix memory leak in safe_sprintf.c
1390           + add check for return-value in tty_update.c
1391           + correct initialization for -s option in test/view.c
1392           + add check for numeric overflow in lib_instr.c
1393           + improve error-checking in copywin
1394         + add advice in infocmp manpage for termcap users (Debian #698469).
1395         + add "-y" option to test/demo_termcap and test/demo_terminfo to
1396           demonstrate behavior with/without extended capabilities.
1397         + updated termcap manpage to document legacy termcap behavior for
1398           matching capability names.
1399         + modify name-comparison for tgetstr, etc., to accommodate legacy
1400           applications as well as to improve compatbility with BSD 4.2
1401           termcap implementations (Debian #698299) (cf: 980725).
1402
1403 20130112
1404         + correct prototype in manpage for vid_puts.
1405         + drop ncurses/tty/tty_display.h, ncurses/tty/tty_input.h, since they
1406           are unused in the current driver model.
1407         + modify mvcur to use stdout except when called within the ncurses
1408           library.
1409         + modify vidattr and vid_attr to use stdout as documented in manpage.
1410         + amend changes made to buffering in 20120825 so that the low-level
1411           putp() call uses stdout rather than ncurses' internal buffering.
1412           The putp_sp() call does the same, for consistency (Redhat #892674).
1413
1414 20130105
1415         + add "-s" option to test/view.c to allow it to start in single-step
1416           mode, reducing size of trace files when it is used for debugging
1417           MinGW changes.
1418         + revert part of 20121222 change to tinfo_driver.c
1419         + add experimental logic in win_driver.c to improve optimization of
1420           screen updates.  This does not yet work with double-width characters,
1421           so it is ifdef'd out for the moment (prompted by report by Erwin
1422           Waterlander regarding screen flicker).
1423
1424 20121229
1425         + fix coverity warnings regarding copying into fixed-size buffers.
1426         + add throw-declarations in the c++ binding per Coverity warning.
1427         + minor changes to new-items for consistent reference to bug-report
1428           numbers.
1429
1430 20121222
1431         + add *.dSYM directories to clean-rule in ncurses directory makefile,
1432           for Mac OS builds.
1433         + add a configure check for gcc option -no-cpp-precomp, which is not
1434           available in all Mac OS X configurations (report by Andras Salamon,
1435           cf: 20011208).
1436         + improve 20021221 workaround for broken acs, handling a case where
1437           that ACS_xxx character is not in the acsc string but there is a known
1438           wide-character which can be used.
1439
1440 20121215
1441         + fix several warnings from clang 3.1 --analyze, includes correcting
1442           a null-pointer check in _nc_mvcur_resume.
1443         + correct display of double-width characters with MinGW port (report
1444           by Erwin Waterlander).
1445         + replace MinGW's wcrtomb(), fixing a problem with _nc_viscbuf
1446         > fixes based on Coverity report:
1447         + correct coloring in test/bs.c
1448         + correct check for 8-bit value in _nc_insert_ch().
1449         + remove dead code in progs/tset.c, test/linedata.h
1450         + add null-pointer checks in lib_tracemse.c, panel.priv.h, and some
1451           test-programs.
1452
1453 20121208
1454         + modify test/knight.c to show the number of choices possible for
1455           each position in automove option, e.g., to allow user to follow
1456           Warnsdorff's rule to solve the puzzle.
1457         + modify test/hanoi.c to show the minimum number of moves possible for
1458           the given number of tiles (prompted by patch by Lucas Gioia).
1459         > fixes based on Coverity report:
1460         + remove a few redundant checks.
1461         + correct logic in test/bs.c, when randomly placing a specific type of
1462           ship.
1463         + check return value from remove/unlink in tic.
1464         + check return value from sscanf in test/ncurses.c
1465         + fix a null dereference in c++/cursesw.cc
1466         + fix two instances of uninitialized variables when configuring for the
1467           terminal driver.
1468         + correct scope of variable used in SetSafeOutcWrapper macro.
1469         + set umask when calling mkstemp in tic.
1470         + initialize wbkgrndset() temporary variable when extended-colors are
1471           used.
1472
1473 20121201
1474         + also replace MinGW's wctomb(), fixing a problem with setcchar().
1475         + modify test/view.c to load UTF-8 when built with MinGW by using
1476           regular win32 API because the MinGW functions mblen() and mbtowc()
1477           do not work.
1478
1479 20121124
1480         + correct order of color initialization versus display in some of the
1481           test-programs, e.g., test_addstr.c
1482         > fixes based on Coverity report:
1483         + delete windows on exit from some of the test-programs.
1484
1485 20121117
1486         > fixes based on Coverity report:
1487         + add missing braces around FreeAndNull in two places.
1488         + various fixes in test/ncurses.c
1489         + improve limit-checks in tinfo/make_hash.c, tinfo/read_entry.c
1490         + correct malloc size in progs/infocmp.c
1491         + guard against negative array indices in test/knight.c
1492         + fix off-by-one limit check in test/color_name.h
1493         + add null-pointer check in progs/tabs.c, test/bs.c, test/demo_forms.c,
1494           test/inchs.c
1495         + fix memory-leak in tinfo/lib_setup.c, progs/toe.c,
1496           test/clip_printw.c, test/demo_menus.c
1497         + delete unused windows in test/chgat.c, test/clip_printw.c,
1498           test/insdelln.c, test/newdemo.c on error-return.
1499
1500 20121110
1501         + modify configure macro CF_INCLUDE_DIRS to put $CPPFLAGS after the
1502           local -I include options in case someone has set conflicting -I
1503           options in $CPPFLAGS (prompted by patch for ncurses/Makefile.in by
1504           Vassili Courzakis).
1505         + modify the ncurses*-config scripts to eliminate relative paths from
1506           the RPATH_LIST variable, e.g., "../lib" as used in installing shared
1507           libraries or executables.
1508
1509 20121102
1510         + realign these related pages:
1511             curs_add_wchstr.3x
1512             curs_addchstr.3x
1513             curs_addstr.3x
1514             curs_addwstr.3x
1515           and fix a long-ago error in curs_addstr.3x which said that a -1
1516           length parameter would only write as much as fit onto one line
1517           (report by Reuben Thomas).
1518         + remove obsolete fallback _nc_memmove() for memmove()/bcopy().
1519         + remove obsolete fallback _nc_strdup() for strdup().
1520         + cancel any debug-rpm in package/ncurses.spec
1521         + reviewed vte-2012, reverted most of the change since it was incorrect
1522           based on testing with tack -TD
1523         + un-cancel the initc in vte-256color, since this was implemented
1524           starting with version 0.20 in 2009 -TD
1525
1526 20121026
1527         + improve malloc/realloc checking (prompted by discussion in Redhat
1528           #866989).
1529         + add ncurses test-program as "ncurses6" to the rpm- and dpkg-scripts.
1530         + updated configure macros CF_GCC_VERSION and CF_WITH_PATHLIST.  The
1531           first corrects pattern used for Mac OS X's customization of gcc.
1532
1533 20121017
1534         + fix change to _nc_scroll_optimize(), which incorrectly freed memory
1535           (Redhat #866989).
1536
1537 20121013
1538         + add vte-2012, gnome-2012, making these the defaults for vte/gnome
1539           (patch by Christian Persch).
1540
1541 20121006
1542         + improve CF_GCC_VERSION to work around Debian's customization of gcc
1543           --version message.
1544         + improve configure macros as done in byacc:
1545           + drop 2.13 compatibility; use 2.52.xxxx version only since EMX port
1546             has used that for a while.
1547           + add 3rd parameter to AC_DEFINE's to allow autoheader to run, i.e.,
1548             for experimental use.
1549           + remove unused configure macros.
1550         + modify configure script and makefiles to quiet new autoconf warning
1551           for LIBS_TO_MAKE variable.
1552         + modify configure script to show $PATH_SEPARATOR variable.
1553         + update config.guess, config.sub
1554
1555 20120922
1556         + modify setupterm to set its copy of TERM to "unknown" if configured
1557           for the terminal driver and TERM was null or empty.
1558         + modify treatment of TERM variable for MinGW port to allow explicit
1559           use of the windows console driver by checking if $TERM is set to
1560           "#win32con" or an abbreviation of that.
1561         + undo recent change to fallback definition of vsscanf() to build with
1562           older Solaris compilers (cf: 20120728).
1563
1564 20120908
1565         + add test-screens to test/ncurses to show 256-characters at a time,
1566           to help with MinGW port.
1567
1568 20120903
1569         + simplify varargs logic in lib_printw.c; va_copy is no longer needed
1570           there.
1571         + modifications for MinGW port to make wide-character display usable.
1572
1573 20120902
1574         + regenerate configure script (report by Sven Joachim, cf: 20120901).
1575
1576 20120901
1577         + add a null-pointer check in _nc_flush (cf: 20120825).
1578         + fix a case in _nc_scroll_optimize() where the _oldnums_list array
1579           might not be allocated.
1580         + improve comparisons in configure.in for unset shell variables.
1581
1582 20120826
1583         + increase size of ncurses' output-buffer, in case of very small
1584           initial screen-sizes.
1585         + fix evaluation of TERMINFO and TERMINFO_DIRS default values as needed
1586           after changes to use --datarootdir (reports by Gabriele Balducci,
1587           Roumen Petrov).
1588
1589 20120825
1590         + change output buffering scheme, using buffer maintained by ncurses
1591           rather than stdio, to avoid problems with SIGTSTP handling (report
1592           by Brian Bloniarz).
1593
1594 20120811
1595         + update autoconf patch to 2.52.20120811, adding --datarootdir
1596           (prompted by discussion with Erwin Waterlander).
1597         + improve description of --enable-reentrant option in README and the
1598           INSTALL file.
1599         + add nsterm-256color, make this the default nsterm -TD
1600         + remove bw from nsterm-bce, per testing with tack -TD
1601
1602 20120804
1603         + update test/configure, adding check for tinfo library.
1604         + improve limit-checks for the getch fifo (report by Werner Fink).
1605         + fix a remaining mismatch between $with_echo and the symbols updated
1606           for CF_DISABLE_ECHO affecting parameters for mk-2nd.awk (report by
1607           Sven Joachim, cf:  20120317).
1608         + modify followup check for pkg-config's library directory in the
1609           --enable-pc-files option to validate syntax (report by Sven Joachim,
1610           cf: 20110716).
1611
1612 20120728
1613         + correct path for ncurses_mingw.h in include/headers, in case build
1614           is done outside source-tree (patch by Roumen Petrov).
1615         + modify some older xterm entries to align with xterm source -TD
1616         + separate "xterm-old" alias from "xterm-r6" -TD
1617         + add E3 extended capability to xterm-basic and putty -TD
1618         + parenthesize parameters of other macros in curses.h -TD
1619         + parenthesize parameter of COLOR_PAIR and PAIR_NUMBER in curses.h
1620           in case it happens to be a comma-expression, etc.  (patch by Nick
1621           Black).
1622
1623 20120721
1624         + improved form_request_by_name() and menu_request_by_name().
1625         + eliminate two fixed-size buffers in toe.c
1626         + extend use_tioctl() to have expected behavior when use_env(FALSE) and
1627           use_tioctl(TRUE) are called.
1628         + modify ncurses test-program, adding -E and -T options to demonstrate
1629           use_env() versus use_tioctl().
1630
1631 20120714
1632         + add use_tioctl() function (adapted from patch by Werner Fink,
1633           Novell #769788):
1634
1635 20120707
1636         + add ncurses_mingw.h to installed headers (prompted by patch by
1637           Juergen Pfeifer).
1638         + clarify return-codes from wgetch() in response to SIGWINCH (prompted
1639           by Novell #769788).
1640         + modify resizeterm() to always push a KEY_RESIZE onto the fifo, even
1641           if screensize is unchanged.  Modify _nc_update_screensize() to push a
1642           KEY_RESIZE if there was a SIGWINCH, even if it does not call
1643           resizeterm().  These changes eliminate the case where a SIGWINCH is
1644           received, but ERR returned from wgetch or wgetnstr because the screen
1645           dimensions did not change (Novell #769788).
1646
1647 20120630
1648         + add --enable-interop to sample package scripts (suggested by Juergen
1649           Pfeifer).
1650         + update CF_PATH_SYNTAX macro, from mawk changes.
1651         + modify mk-0th.awk to allow for generating llib-ltic, etc., though
1652           some work is needed on cproto to work with lib_gen.c to update
1653           llib-lncurses.
1654         + remove redundant getenv() cal in database-iterator leftover from
1655           cleanup in 20120622 changes (report by Sven Joachim).
1656
1657 20120622
1658         + add -d, -e and -q options to test/demo_terminfo and test/demo_termcap
1659         + fix caching of environment variables in database-iterator (patch by
1660           Philippe Troin, Redhat #831366).
1661
1662 20120616
1663         + add configure check to distinguish clang from gcc to eliminate
1664           warnings about unused command-line parameters when compiler warnings
1665           are enabled.
1666         + improve behavior when updating terminfo entries which are hardlinked
1667           by allowing for the possibility that an alias has been repurposed to
1668           a new primary name.
1669         + fix some strict compiler warnings based on package scripts.
1670         + further fixes for configure check for working poll (Debian #676461).
1671
1672 20120608
1673         + fix an uninitialized variable in -c/-n logic for infocmp changes
1674           (cf: 20120526).
1675         + corrected fix for building c++ binding with clang 3.0 (report/patch
1676           by Richard Yao, Gentoo #417613, cf: 20110409)
1677         + correct configure check for working poll, fixing the case where stdin
1678           is redirected, e.g., in rpm/dpkg builds (Debian #676461).
1679         + add rpm- and dpkg-scripts, to test those build-environments.
1680           The resulting packages are used only for testing.
1681
1682 20120602
1683         + add kdch1 aka "Remove" to vt220 and vt220-8 entries -TD
1684         + add kdch1, etc., to qvt108 -TD
1685         + add dl1/il1 to some entries based on dl/il values -TD
1686         + add dl to simpleterm -TD
1687         + add consistency-checks in tic for insert-line vs delete-line
1688           controls, and insert/delete-char keys
1689         + correct no-leaks logic in infocmp when doing comparisons, fixing
1690           duplicate free of entries given via the command-line, and freeing
1691           entries loaded from the last-but-one of files specified on the
1692           command-line.
1693         + add kdch1 to wsvt25 entry from NetBSD CVS (reported by David Lord,
1694           analysis by Martin Husemann).
1695         + add cnorm/civis to wsvt25 entry from NetBSD CVS (report/analysis by
1696           Onno van der Linden).
1697
1698 20120526
1699         + extend -c and -n options of infocmp to allow comparing more than two
1700           entries.
1701         + correct check in infocmp for number of terminal names when more than
1702           two are given.
1703         + correct typo in curs_threads.3x (report by Yanhui Shen on
1704           freebsd-hackers mailing list).
1705
1706 20120512
1707         + corrected 'op' for bterm (report by Samuel Thibault) -TD
1708         + modify test/background.c to demonstrate a background character
1709           holding a colored ACS_HLINE.  The behavior differs from SVr4 due to
1710           the thick- and double-line extension (cf: 20091003).
1711         + modify handling of acs characters in PutAttrChar to avoid mapping an
1712           unmapped character to a space with A_ALTCHARSET set.
1713         + rewrite vt520 entry based on vt420 -TD
1714
1715 20120505
1716         + remove p6 (bold) from opus3n1+ for consistency -TD
1717         + remove acs stuff from env230 per clues in Ingres termcap -TD
1718         + modify env230 sgr/sgr0 to match other capabilities -TD
1719         + modify smacs/rmacs in bq300-8 to match sgr/sgr0 -TD
1720         + make sgr for dku7202 agree with other caps -TD
1721         + make sgr for ibmpc agree with other caps -TD
1722         + make sgr for tek4107 agree with other caps -TD
1723         + make sgr for ndr9500 agree with other caps -TD
1724         + make sgr for sco-ansi agree with other caps -TD
1725         + make sgr for d410 agree with other caps -TD
1726         + make sgr for d210 agree with other caps -TD
1727         + make sgr for d470c, d470c-7b agree with other caps -TD
1728         + remove redundant AC_DEFINE for NDEBUG versus Makefile definition.
1729         + fix a back-link in _nc_delink_entry(), which is needed if ncurses is
1730           configured with --enable-termcap and --disable-getcap.
1731
1732 20120428
1733         + fix some inconsistencies between vt320/vt420, e.g., cnorm/civis -TD
1734         + add eslok flag to dec+sl -TD
1735         + dec+sl applies to vt320 and up -TD
1736         + drop wsl width from xterm+sl -TD
1737         + reuse xterm+sl in putty and nsca-m -TD
1738         + add ansi+tabs to vt520 -TD
1739         + add ansi+enq to vt220-vt520 -TD
1740         + fix a compiler warning in example in ncurses-intro.doc (Paul Waring).
1741         + added paragraph in keyname manpage telling how extended capabilities
1742           are interpreted as key definitions.
1743         + modify tic's check of conflicting key definitions to include extended
1744           capability strings in addition to the existing check on predefined
1745           keys.
1746
1747 20120421
1748         + improve cleanup of temporary files in tic using atexit().
1749         + add msgr to vt420, similar DEC vtXXX entries -TD
1750         + add several missing vt420 capabilities from vt220 -TD
1751         + factor out ansi+pp from several entries -TD
1752         + change xterm+sl and xterm+sl-twm to include only the status-line
1753           capabilities and not "use=xterm", making them more generally useful
1754           as building-blocks -TD
1755         + add dec+sl building block, as example -TD
1756
1757 20120414
1758         + add XT to some terminfo entries to improve usefulness for other
1759           applications than screen, which would like to pretend that xterm's
1760           title is a status-line.  -TD
1761         + change use-clauses in ansi-mtabs, hp2626, and hp2622 based on review
1762           of ordering and overrides -TD
1763         + add consistency check in tic for screen's "XT" capability.
1764         + add section in terminfo.src summarizing the user-defined capabilities
1765           used in that file -TD
1766
1767 20120407
1768         + fix an inconsistency between tic/infocmp "-x" option; tic omits all
1769           non-standard capabilities, while infocmp was ignoring only the user
1770           definable capabilities.
1771         + improve special case in tic parsing of description to allow it to be
1772           followed by terminfo capabilities.  Previously the description had to
1773           be the last field on an input line to allow tic to distinguish
1774           between termcap and terminfo format while still allowing commas to be
1775           embedded in the description.
1776         + correct variable name in gen_edit.sh which broke configurability of
1777           the --with-xterm-kbs option.
1778         + revert 2011-07-16 change to "linux" alias, return to "linux2.2" -TD
1779         + further amend 20110910 change, providing for configure-script
1780           override of the "linux" terminfo entry to install and changing the
1781           default for that to "linux2.2" (Debian #665959).
1782
1783 20120331
1784         + update Ada95/configure to use CF_DISABLE_ECHO (cf: 20120317).
1785         + correct order of use-clauses in st-256color -TD
1786         + modify configure script to look for gnatgcc if the Ada95 binding
1787           is built, in preference to the default gcc/cc (suggested by
1788           Nicolas Boulenguez).
1789         + modify configure script to ensure that the same -On option used for
1790           the C compiler in CFLAGS is used for ADAFLAGS rather than simply
1791           using "-O3" (suggested by Nicolas Boulenguez)
1792
1793 20120324
1794         + amend an old fix so that next_char() exits properly for empty files,
1795           e.g., from reading /dev/null (cf: 20080804).
1796         + modify tic so that it can read from the standard input, or from
1797           a character device.  Because tic uses seek's, this requires writing
1798           the data to a temporary file first (prompted by remark by Sven
1799           Joachim) (cf: 20000923).
1800
1801 20120317
1802         + correct a check made in lib_napms.c, so that terminfo applications
1803           can again use napms() (cf: 20110604).
1804         + add a note in tic.h regarding required casts for ABSENT_BOOLEAN
1805           (cf: 20040327).
1806         + correct scripting for --disable-echo option in test/configure.
1807         + amend check for missing c++ compiler to work when no error is
1808           reported, and no variables set (cf: 20021206).
1809         + add/use configure macro CF_DISABLE_ECHO.
1810
1811 20120310
1812         + fix some strict compiler warnings for abi6 and 64-bits.
1813         + use begin_va_copy/end_va_copy macros in lib_printw.c (cf: 20120303).
1814         + improve a limit-check in infocmp.c (Werner Fink):
1815
1816 20120303
1817         + minor tidying of terminfo.tail, clarify reason for limitation
1818           regarding mapping of \0 to \200
1819         + minor improvement to _nc_copy_termtype(), using memcpy to replace
1820           loops.
1821         + fix no-leaks checking in test/demo_termcap.c to account for multiple
1822           calls to setupterm().
1823         + modified the libgpm change to show previous load as a problem in the
1824           debug-trace.
1825         > merge some patches from OpenSUSE rpm (Werner Fink):
1826         + ncurses-5.7-printw.dif, fixes for varargs handling in lib_printw.c
1827         + ncurses-5.7-gpm.dif, do not dlopen libgpm if already loaded by
1828           runtime linker
1829         + ncurses-5.6-fallback.dif, do not free arrays and strings from static
1830           fallback entries
1831
1832 20120228
1833         + fix breakage in tic/infocmp from 20120225 (report by Werner Fink).
1834
1835 20120225
1836         + modify configure script to allow creating dll's for MinGW when
1837           cross-compiling.
1838         + add --enable-string-hacks option to control whether strlcat and
1839           strlcpy may be used.  The same issue applies to OpenBSD's warnings
1840           about snprintf, noting that this function is weakly standardized.
1841         + add configure checks for strlcat, strlcpy and snprintf, to help
1842           reduce bogus warnings with OpenBSD builds.
1843         + build-fix for OpenBSD 4.9 to supply consistent intptr_t declaration
1844           (cf:20111231)
1845         + update config.guess, config.sub
1846
1847 20120218
1848         + correct CF_ETIP_DEFINES configure macro, making it exit properly on
1849           the first success (patch by Pierre Labastie).
1850         + improve configure macro CF_MKSTEMP by moving existence-check for
1851           mkstemp out of the AC_TRY_RUN, to help with cross-compiles.
1852         + improve configure macro CF_FUNC_POLL from luit changes to detect
1853           broken implementations, e.g., with Mac OS X.
1854         + add configure option --with-tparm-arg
1855         + build-fix for MinGW cross-compiling, so that make_hash does not
1856           depend on TTY definition (cf: 20111008).
1857
1858 20120211
1859         + make sgr for xterm-pcolor agree with other caps -TD
1860         + make sgr for att5425 agree with other caps -TD
1861         + make sgr for att630 agree with other caps -TD
1862         + make sgr for linux entries agree with other caps -TD
1863         + make sgr for tvi9065 agree with other caps -TD
1864         + make sgr for ncr260vt200an agree with other caps -TD
1865         + make sgr for ncr160vt100pp agree with other caps -TD
1866         + make sgr for ncr260vt300an agree with other caps -TD
1867         + make sgr for aaa-60-dec-rv, aaa+dec agree with other caps -TD
1868         + make sgr for cygwin, cygwinDBG agree with other caps -TD
1869         + add configure option --with-xterm-kbs to simplify configuration for
1870           Linux versus most other systems.
1871
1872 20120204
1873         + improved tic -D option, avoid making target directory and provide
1874           better diagnostics.
1875
1876 20120128
1877         + add mach-gnu (Debian #614316, patch by Samuel Thibault)
1878         + add mach-gnu-color, tweaks to mach-gnu terminfo -TD
1879         + make sgr for sun-color agree with smso -TD
1880         + make sgr for prism9 agree with other caps -TD
1881         + make sgr for icl6404 agree with other caps -TD
1882         + make sgr for ofcons agree with other caps -TD
1883         + make sgr for att5410v1, att4415, att620 agree with other caps -TD
1884         + make sgr for aaa-unk, aaa-rv agree with other caps -TD
1885         + make sgr for avt-ns agree with other caps -TD
1886         + amend fix intended to separate fixups for acsc to allow "tic -cv" to
1887           give verbose warnings (cf:  20110730).
1888         + modify misc/gen-edit.sh to make the location of the tabset directory
1889           consistent with misc/Makefile.in, i.e., using ${datadir}/tabset
1890           (Debian #653435, patch by Sven Joachim).
1891
1892 20120121
1893         + add --with-lib-prefix option to allow configuring for old/new flavors
1894           of OS/2 EMX.
1895         + modify check for gnat version to allow for year, as used in FreeBSD
1896           port.
1897         + modify check_existence() in db_iterator.c to simply check if the
1898           path is a directory or file, according to the need.  Checking for
1899           directory size also gives no usable result with OS/2 (cf: 20120107).
1900         + support OS/2 kLIBC (patch by KO Myung-Hun).
1901
1902 20120114
1903         + several improvements to test/movewindow.c (prompted by discussion on
1904           Linux Mint forum):
1905           + modify movement commands to make them continuous
1906           + rewrote the test for mvderwin
1907           + rewrote the test for recursive mvwin
1908         + split-out reusable CF_WITH_NCURSES_ETC macro in test/configure.in
1909         + updated configure macro CF_XOPEN_SOURCE, build-fixes for Mac OS X
1910           and OpenBSD.
1911         + regenerated html manpages.
1912
1913 20120107
1914         + various improvments for MinGW (Juergen Pfeifer):
1915           + modify stat() calls to ignore the st_size member
1916           + drop mk-dlls.sh script.
1917           + change recommended regular expression library.
1918           + modify rain.c to allow for threaded configuraton.
1919           + modify tset.c to allow for case when size-change logic is not used.
1920
1921 20111231
1922         + modify toe's report when -a and -s options are combined, to add
1923           a column showing which entries belong to a given database.
1924         + add -s option to toe, to sort its output.
1925         + modify progs/toe.c, simplifying use of db-iterator results to use
1926           caching improvements from 20111001 and 20111126.
1927         + correct generation of pc-files when ticlib or termlib options are
1928           given to rename the corresponding tic- or tinfo-libraries (report
1929           by Sven Joachim).
1930
1931 20111224
1932         + document a portability issue with tput, i.e., that scripts which work
1933           with ncurses may fail in other implementations that do no parameter
1934           analysis.
1935         + add putty-sco entry -TD
1936
1937 20111217
1938         + review/fix places in manpages where --program-prefix configure option
1939           was not being used.
1940         + add -D option to infocmp, to show the database locations that it
1941           could use.
1942         + fix build for the special case where term-driver, ticlib and termlib
1943           are all enabled.  The terminal driver depends on a few features in
1944           the base ncurses library, so tic's dependencies include both ncurses
1945           and termlib.
1946         + fix build work for term-driver when --enable-wgetch-events option is
1947           enabled.
1948         + use <stdint.h> types to fix some questionable casts to void*.
1949
1950 20111210
1951         + modify configure script to check if thread library provides
1952           pthread_mutexattr_settype(), e.g., not provided by Solaris 2.6
1953         + modify configure script to suppress check to define _XOPEN_SOURCE
1954           for IRIX64, since its header files have a conflict versus
1955           _SGI_SOURCE.
1956         + modify configure script to add ".pc" files for tic- and
1957           tinfo-libraries, which were omitted in recent change (cf: 20111126).
1958         + fix inconsistent checks on $PKG_CONFIG variable in configure script.
1959
1960 20111203
1961         + modify configure-check for etip.h dependencies, supplying a temporary
1962           copy of ncurses_dll.h since it is a generated file (prompted by
1963           Debian #646977).
1964         + modify CF_CPP_PARAM_INIT "main" function to work with current C++.
1965
1966 20111126
1967         + correct database iterator's check for duplicate entries
1968           (cf: 20111001).
1969         + modify database iterator to ignore $TERMCAP when it is not an
1970           absolute pathname.
1971         + add -D option to tic, to show the database locations that it could
1972           use.
1973         + improve description of database locations in tic manpage.
1974         + modify the configure script to generate a list of the ".pc" files to
1975           generate, rather than deriving the list from the libraries which have
1976           been built (patch by Mike Frysinger).
1977         + use AC_CHECK_TOOLS in preference to AC_PATH_PROGS when searching for
1978           ncurses*-config, e.g., in Ada95/configure and test/configure (adapted
1979           from patch by Mike Frysinger).
1980
1981 20111119
1982         + remove obsolete/conflicting fallback definition for _POSIX_SOURCE
1983           from curses.priv.h, fixing a regression with IRIX64 and Tru64
1984           (cf: 20110416)
1985         + modify _nc_tic_dir() to ensure that its return-value is nonnull,
1986           i.e., the database iterator was not initialized.  This case is needed
1987           to when tic is translating to termcap, rather than loading the
1988           database (cf:  20111001).
1989
1990 20111112
1991         + add pccon entries for OpenBSD console (Alexei Malinin).
1992         + build-fix for OpenBSD 4.9 with gcc 4.2.1, setting _XOPEN_SOURCE to
1993           600 to work around inconsistent ifdef'ing of wcstof between C and
1994           C++ header files.
1995         + modify capconvert script to accept more than exact match on "xterm",
1996           e.g., the "xterm-*" variants, to exclude from the conversion (patch
1997           by Robert Millan).
1998         + add -lc_r as alternative for -lpthread, allows build of threaded code
1999           in older FreeBSD machines.
2000         + build-fix for MirBSD, which fails when either _XOPEN_SOURCE or
2001           _POSIX_SOURCE are defined.
2002         + fix a typo misc/Makefile.in, used in uninstalling pc-files.
2003
2004 20111030
2005         + modify make_db_path() to allow creating "terminfo.db" in the same
2006           directory as an existing "terminfo" directory.  This fixes a case
2007           where switching between hashed/filesystem databases would cause the
2008           new hashed database to be installed in the next best location -
2009           root's home directory.
2010         + add variable cf_cv_prog_gnat_correct to those passed to
2011           config.status, fixing a problem with Ada95 builds (cf: 20111022).
2012         + change feature test from _XPG5 to _XOPEN_SOURCE in two places, to
2013           accommodate broken implementations for _XPG6.
2014         + eliminate usage of NULL symbol from etip.h, to reduce header
2015           interdependencies.
2016         + add configure check to decide when to add _XOPEN_SOURCE define to
2017           compiler options, i.e., for Solaris 10 and later (cf: 20100403).
2018           This is a workaround for gcc 4.6, which fails to build the c++
2019           binding if that symbol is defined by the application, due to
2020           incorrectly combining the corresponding feature test macros
2021           (report by Peter Kruse).
2022
2023 20111022
2024         + correct logic for discarding mouse events, retaining the partial
2025           events used to build up click, double-click, etc, until needed
2026           (cf: 20110917).
2027         + fix configure script to avoid creating unused Ada95 makefile when
2028           gnat does not work.
2029         + cleanup width-related gcc 3.4.3 warnings for 64-bit platform, for the
2030           internal functions of libncurses.  The external interface of courses
2031           uses bool, which still produces these warnings.
2032
2033 20111015
2034         + improve description of --disable-tic-depends option to make it
2035           clear that it may be useful whether or not the --with-termlib
2036           option is also given (report by Sven Joachim).
2037         + amend termcap equivalent for set_pglen_inch to use the X/Open
2038           "YI" rather than the obsolete Solaris 2.5 "sL" (cf: 990109).
2039         + improve manpage for tgetent differences from termcap library.
2040
2041 20111008
2042         + moved static data from db_iterator.c to lib_data.c
2043         + modify db_iterator.c for memory-leak checking, fix one leak.
2044         + modify misc/gen-pkgconfig.in to use Requires.private for the parts
2045           of ncurses rather than Requires, as well as Libs.private for the
2046           other library dependencies (prompted by Debian #644728).
2047
2048 20111001
2049         + modify tic "-K" option to only set the strict-flag rather than force
2050           source-output.  That allows the same flag to control the parser for
2051           input and output of termcap source.
2052         + modify _nc_getent() to ignore backslash at the end of a comment line,
2053           making it consistent with ncurses' parser.
2054         + restore a special-case check for directory needed to make termcap
2055           text files load as if they were databases (cf: 20110924).
2056         + modify tic's resolution/collision checking to attempt to remove the
2057           conflicting alias from the second entry in the pair, which is
2058           normally following in the source file.  Also improved the warning
2059           message to make it simpler to see which alias is the problem.
2060         + improve performance of the database iterator by caching search-list.
2061
2062 20110925
2063         + add a missing "else" in changes to _nc_read_tic_entry().
2064
2065 20110924
2066         + modify _nc_read_tic_entry() so that hashed-database is checked before
2067           filesystem.
2068         + updated CF_CURSES_LIBS check in test/configure script.
2069         + modify configure script and makefiles to split TIC_ARGS and
2070           TINFO_ARGS into pieces corresponding to LDFLAGS and LIBS variables,
2071           to help separate searches for tic- and tinfo-libraries (patch by Nick
2072           Alcock aka "Nix").
2073         + build-fix for lib_mouse.c changes (cf: 20110917).
2074
2075 20110917
2076         + fix compiler warning for clang 2.9
2077         + improve merging of mouse events (integrated patch by Damien
2078           Guibouret).
2079         + correct mask-check used in lib_mouse for wheel mouse buttons 4/5
2080           (patch by Damien Guibouret).
2081
2082 20110910
2083         + modify misc/gen_edit.sh to select a "linux" entry which works with
2084           the current kernel rather than assuming it is always "linux3.0"
2085           (cf: 20110716).
2086         + revert a change to getmouse() which had the undesirable side-effect
2087           of suppressing button-release events (report by Damien Guibouret,
2088           cf: 20100102).
2089         + add xterm+kbs fragment from xterm #272 -TD
2090         + add configure option --with-pkg-config-libdir to provide control over
2091           the actual directory into which pc-files are installed, do not use
2092           the pkg-config environment variables (discussion with Frederic L W
2093           Meunier).
2094         + add link to mailing-list archive in announce.html.in, as done in
2095           FAQ (prompted by question by Andrius Bentkus).
2096         + improve manpage install by adjusting the "#include" examples to
2097           show the ncurses-subdirectory used when --disable-overwrite option
2098           is used.
2099         + install an alias for "curses" to the ncurses manpage, tied to the
2100           --with-curses-h configure option (suggested by Reuben Thomas).
2101
2102 20110903
2103         + propagate error-returns from wresize, i.e., the internal
2104           increase_size and decrease_size functions through resize_term (report
2105           by Tim van der Molen, cf:  20020713).
2106         + fix typo in tset manpage (patch by Sven Joachim).
2107
2108 20110820
2109         + add a check to ensure that termcap files which might have "^?" do
2110           not use the terminfo interpretation as "\177".
2111         + minor cleanup of X-terminal emulator section of terminfo.src -TD
2112         + add terminator entry -TD
2113         + add simpleterm entry -TD
2114         + improve wattr_get macros by ensuring that if the window pointer is
2115           null, then the attribute and color values returned will be zero
2116           (cf: 20110528).
2117
2118 20110813
2119         + add substitution for $RPATH_LIST to misc/ncurses-config.in
2120         + improve performance of tic with hashed-database by caching the
2121           database connection, using atexit() to cleanup.
2122         + modify treatment of 2-character aliases at the beginning of termcap
2123           entries so they are not counted in use-resolution, since these are
2124           guaranteed to be unique.  Also ignore these aliases when reporting
2125           the primary name of the entry (cf: 20040501)
2126         + double-check gn (generic) flag in terminal descriptions to
2127           accommodate old/buggy termcap databases which misused that feature.
2128         + minor fixes to _nc_tgetent(), ensure buffer is initialized even on
2129           error-return.
2130
2131 20110807
2132         + improve rpath fix from 20110730 by ensuring that the new $RPATH_LIST
2133           variable is defined in the makefiles which use it.
2134         + build-fix for DragonFlyBSD's pkgsrc in test/configure script.
2135         + build-fixes for NetBSD 5.1 with termcap support enabled.
2136         + corrected k9 in dg460-ansi, add other features based on manuals -TD
2137         + improve trimming of whitespace at the end of terminfo/termcap output
2138           from tic/infocmp.
2139         + when writing termcap source, ensure that colons in the description
2140           field are translated to a non-delimiter, i.e., "=".
2141         + add "-0" option to tic/infocmp, to make the termcap/terminfo source
2142           use a single line.
2143         + add a null-pointer check when handling the $CC variable.
2144
2145 20110730
2146         + modify configure script and makefiles in c++ and progs to allow the
2147           directory used for rpath option to be overridden, e.g., to work
2148           around updates to the variables used by tic during an install.
2149         + add -K option to tic/infocmp, to provide stricter BSD-compatibility
2150           for termcap output.
2151         + add _nc_strict_bsd variable in tic library which controls the
2152           "strict" BSD termcap compatibility from 20110723, plus these
2153           features:
2154           + allow escapes such as "\8" and "\9" when reading termcap
2155           + disallow "\a", "\e", "\l", "\s" and "\:" escapes when reading
2156             termcap files, passing through "a", "e", etc.
2157           + expand "\:" as "\072" on output.
2158         + modify _nc_get_token() to reset the token's string value in case
2159           there is a string-typed token lacking the "=" marker.
2160         + fix a few memory leaks in _nc_tgetent.
2161         + fix a few places where reading from a termcap file could refer to
2162           freed memory.
2163         + add an overflow check when converting terminfo/termcap numeric
2164           values, since terminfo stores those in a short, and they must be
2165           positive.
2166         + correct internal variables used for translating to termcap "%>"
2167           feature, and translating from termcap %B to terminfo, needed by
2168           tctest (cf: 19991211).
2169         + amend a minor fix to acsc when loading a termcap file to separate it
2170           from warnings needed for tic (cf: 20040710)
2171         + modify logic in _nc_read_entry() and _nc_read_tic_entry() to allow
2172           a termcap file to be handled via TERMINFO_DIRS.
2173         + modify _nc_infotocap() to include non-mandatory padding when
2174           translating to termcap.
2175         + modify _nc_read_termcap_entry(), passing a flag in the case where
2176           getcap is used, to reduce interactive warning messages.
2177
2178 20110723
2179         + add a check in start_color() to limit color-pairs to 256 when
2180           extended colors are not supported (patch by David Benjamin).
2181         + modify setcchar to omit no-longer-needed OR'ing of color pair in
2182           the SetAttr() macro (patch by David Benjamin).
2183         + add kich1 to sun terminfo entry (Yuri Pankov)
2184         + use bold rather than reverse for smso in sun-color terminfo entry
2185           (Yuri Pankov).
2186         + improve generation of termcap using tic/infocmp -C option, e.g.,
2187           to correspond with 4.2BSD (prompted by discussion with Yuri Pankov
2188           regarding Schilling's test program):
2189           + translate %02 and %03 to %2 and %3 respectively.
2190           + suppress string capabilities which use %s, not supported by tgoto
2191           + use \040 rather than \s
2192           + expand null characters as \200 rather than \0
2193         + modify configure script to support shared libraries for DragonFlyBSD.
2194
2195 20110716
2196         + replace an assert() in _nc_Free_Argument() with a regular null
2197           pointer check (report/analysis by Franjo Ivancic).
2198         + modify configure --enable-pc-files option to take into account the
2199           PKG_CONFIG_PATH variable (report by Frederic L W Meunier).
2200         + add/use xterm+tmux chunk from xterm #271 -TD
2201         + resync xterm-new entry from xterm #271 -TD
2202         + add E3 extended capability to linux-basic (Miroslav Lichvar)
2203         + add linux2.2, linux2.6, linux3.0 entries to give context for E3 -TD
2204         + add SI/SO change to linux2.6 entry (Debian #515609) -TD
2205         + fix inconsistent tabset path in pcmw (Todd C. Miller).
2206         + remove a backslash which continued comment, obscuring altos3
2207           definition with OpenBSD toolset (Nicholas Marriott).
2208
2209 20110702
2210         + add workaround from xterm #271 changes to ensure that compiler flags
2211           are not used in the $CC variable.
2212         + improve support for shared libraries, tested with AIX 5.3, 6.1 and
2213           7.1 with both gcc 4.2.4 and cc.
2214         + modify configure checks for AIX to include release 7.x
2215         + add loader flags/libraries to libtool options so that dynamic loading
2216           works properly, adapted from ncurses-5.7-ldflags-with-libtool.patch
2217           at gentoo prefix repository (patch by Michael Haubenwallner).
2218
2219 20110626
2220         + move include of nc_termios.h out of term_entry.h, since the latter
2221           is installed, e.g., for tack while the former is not (report by
2222           Sven Joachim).
2223
2224 20110625
2225         + improve cleanup() function in lib_tstp.c, using _exit() rather than
2226           exit() and checking for SIGTERM rather than SIGQUIT (prompted by
2227           comments forwarded by Nicholas Marriott).
2228         + reduce name pollution from term.h, moving fallback #define's for
2229           tcgetattr(), etc., to new private header nc_termios.h (report by
2230           Sergio NNX).
2231         + two minor fixes for tracing (patch by Vassili Courzakis).
2232         + improve trace initialization by starting it in use_env() and
2233           ripoffline().
2234         + review old email, add details for some changelog entries.
2235
2236 20110611
2237         + update minix entry to minix 3.2 (Thomas Cort).
2238         + fix a strict compiler warning in change to wattr_get (cf: 20110528).
2239
2240 20110604
2241         + fixes for MirBSD port:
2242           + set default prefix to /usr.
2243           + add support for shared libraries in configure script.
2244           + use S_ISREG and S_ISDIR consistently, with fallback definitions.
2245         + add a few more checks based on ncurses/link_test.
2246         + modify MKlib_gen.sh to handle sp-funcs renaming of NCURSES_OUTC type.
2247
2248 20110528
2249         + add case to CF_SHARED_OPTS for Interix (patch by Markus Duft).
2250         + used ncurses/link_test to check for behavior when the terminal has
2251           not been initialized and when an application passes null pointers
2252           to the library.  Added checks to cover this (prompted by Redhat
2253           #707344).
2254         + modify MKlib_gen.sh to make its main() function call each function
2255           with zero parameters, to help find inconsistent checking for null
2256           pointers, etc.
2257
2258 20110521
2259         + fix warnings from clang 2.7 "--analyze"
2260
2261 20110514
2262         + compiler-warning fixes in panel and progs.
2263         + modify CF_PKG_CONFIG macro, from changes to tin -TD
2264         + modify CF_CURSES_FUNCS configure macro, used in test directory
2265           configure script:
2266           + work around (non-optimizer) bug in gcc 4.2.1 which caused
2267             test-expression to be omitted from executable.
2268           + force the linker to see a link-time expression of a symbol, to
2269             help work around weak-symbol issues.
2270
2271 20110507
2272         + update discussion of MKfallback.sh script in INSTALL; normally the
2273           script is used automatically via the configured makefiles.  However
2274           there are still occasions when it might be used directly by packagers
2275           (report by Gunter Schaffler).
2276         + modify misc/ncurses-config.in to omit the "-L" option from the
2277           "--libs" output if the library directory is /usr/lib.
2278         + change order of tests for curses.h versus ncurses.h headers in the
2279           configure scripts for Ada95 and test-directories, to look for
2280           ncurses.h, from fixes to tin -TD
2281         + modify ncurses/tinfo/access.c to account for Tandem's root uid
2282           (report by Joachim Schmitz).
2283
2284 20110430
2285         + modify rules in Ada95/src/Makefile.in to ensure that the PIC option
2286           is not used when building a static library (report by Nicolas
2287           Boulenguez):
2288         + Ada95 build-fix for big-endian architectures such as sparc.  This
2289           undoes one of the fixes from 20110319, which added an "Unused" member
2290           to representation clauses, replacing that with pragmas to suppress
2291           warnings about unused bits (patch by Nicolas Boulenguez).
2292
2293 20110423
2294         + add check in test/configure for use_window, use_screen.
2295         + add configure-checks for getopt's variables, which may be declared
2296           as different types on some Unix systems.
2297         + add check in test/configure for some legacy curses types of the
2298           function pointer passed to tputs().
2299         + modify init_pair() to accept -1's for color value after
2300           assume_default_colors() has been called (Debian #337095).
2301         + modify test/background.c, adding commmand-line options to demonstrate
2302           assume_default_colors() and use_default_colors().
2303
2304 20110416
2305         + modify configure script/source-code to only define _POSIX_SOURCE if
2306           the checks for sigaction and/or termios fail, and if _POSIX_C_SOURCE
2307           and _XOPEN_SOURCE are undefined (report by Valentin Ochs).
2308         + update config.guess, config.sub
2309
2310 20110409
2311         + fixes to build c++ binding with clang 3.0 (patch by Alexander
2312           Kolesen).
2313         + add check for unctrl.h in test/configure, to work around breakage in
2314           some ncurses packages.
2315         + add "--disable-widec" option to test/configure script.
2316         + add "--with-curses-colr" and "--with-curses-5lib" options to the
2317           test/configure script to address testing with very old machines.
2318
2319 20110404 5.9 release for upload to ftp.gnu.org
2320
2321 20110402
2322         + various build-fixes for the rpm/dpkg scripts.
2323         + add "--enable-rpath-link" option to Ada95/configure, to allow
2324           packages to suppress the rpath feature which is normally used for
2325           the in-tree build of sample programs.
2326         + corrected definition of libdir variable in Ada95/src/Makefile.in,
2327           needed for rpm script.
2328         + add "--with-shared" option to Ada95/configure script, to allow
2329           making the C-language parts of the binding use appropriate compiler
2330           options if building a shared library with gnat.
2331
2332 20110329
2333         > portability fixes for Ada95 binding:
2334         + add configure check to ensure that SIGINT works with gnat.  This is
2335           needed for the "rain" sample program.  If SIGINT does not work, omit
2336           that sample program.
2337         + correct typo in check of $PKG_CONFIG variable in Ada95/configure
2338         + add ncurses_compat.c, to supply functions used in the Ada95 binding
2339           which were added in 5.7 and later.
2340         + modify sed expression in CF_NCURSES_ADDON to eliminate a dependency
2341           upon GNU sed.
2342
2343 20110326
2344         + add special check in Ada95/configure script for ncurses6 reentrant
2345           code.
2346         + regen Ada html documentation.
2347         + build-fix for Ada shared libraries versus the varargs workaround.
2348         + add rpm and dpkg scripts for Ada95 and test directories, for test
2349           builds.
2350         + update test/configure macros CF_CURSES_LIBS, CF_XOPEN_SOURCE and
2351           CF_X_ATHENA_LIBS.
2352         + add configure check to determine if gnat's project feature supports
2353           libraries, i.e., collections of .ali files.
2354         + make all dereferences in Ada95 samples explicit.
2355         + fix typo in comment in lib_add_wch.c (patch by Petr Pavlu).
2356         + add configure check for, ifdef's for math.h which is in a separate
2357           package on Solaris and potentially not installed (report by Petr
2358           Pavlu).
2359         > fixes for Ada95 binding (Nicolas Boulenguez):
2360         + improve type-checking in Ada95 by eliminating a few warning-suppress
2361           pragmas.
2362         + suppress unreferenced warnings.
2363         + make all dereferences in binding explicit.
2364
2365 20110319
2366         + regen Ada html documentation.
2367         + change order of -I options from ncurses*-config script when the
2368           --disable-overwrite option was used, so that the subdirectory include
2369           is listed first.
2370         + modify the make-tar.sh scripts to add a MANIFEST and NEWS file.
2371         + modify configure script to provide value for HTML_DIR in
2372           Ada95/gen/Makefile.in, which depends on whether the Ada95 binding is
2373           distributed separately (report by Nicolas Boulenguez).
2374         + modify configure script to add "-g" and/or "-O3" to ADAFLAGS if the
2375           CFLAGS for the build has these options.
2376         + amend change from 20070324, to not add 1 to the result of getmaxx
2377           and getmaxy in the Ada binding (report by Nicolas Boulenguez for
2378           thread in comp.lang.ada).
2379         + build-fix Ada95/samples for gnat 4.5
2380         + spelling fixes for Ada95/samples/explain.txt
2381         > fixes for Ada95 binding (Nicolas Boulenguez):
2382         + add item in Trace_Attribute_Set corresponding to TRACE_ATTRS.
2383         + add workaround for binding to set_field_type(), which uses varargs.
2384           The original binding from 990220 relied on the prevalent
2385           implementation of varargs which did not support or need va_copy().
2386         + add dependency on gen/Makefile.in needed for *-panels.ads
2387         + add Library_Options to library.gpr
2388         + add Languages to library.gpr, for gprbuild
2389
2390 20110307
2391         + revert changes to limit-checks from 20110122 (Debian #616711).
2392         > minor type-cleanup of Ada95 binding (Nicolas Boulenguez):
2393         + corrected a minor sign error in a field of Low_Level_Field_Type, to
2394           conform to form.h.
2395         + replaced C_Int by Curses_Bool as return type for some callbacks, see
2396           fieldtype(3FORM).
2397         + modify samples/sample-explain.adb to provide explicit message when
2398           explain.txt is not found.
2399
2400 20110305
2401         + improve makefiles for Ada95 tree (patch by Nicolas Boulenguez).
2402         + fix an off-by-one error in _nc_slk_initialize() from 20100605 fixes
2403           for compiler warnings (report by Nicolas Boulenguez).
2404         + modify Ada95/gen/gen.c to declare unused bits in generated layouts,
2405           needed to compile when chtype is 64-bits using gnat 4.4.5
2406
2407 20110226 5.8 release for upload to ftp.gnu.org
2408
2409 20110226
2410         + update release notes, for 5.8.
2411         + regenerated html manpages.
2412         + change open() in _nc_read_file_entry() to fopen() for consistency
2413           with write_file().
2414         + modify misc/run_tic.in to create parent directory, in case this is
2415           a new install of hashed database.
2416         + fix typo in Ada95/mk-1st.awk which causes error with original awk.
2417
2418 20110220
2419         + configure script rpath fixes from xterm #269.
2420         + workaround for cygwin's non-functional features.h, to force ncurses'
2421           configure script to define _XOPEN_SOURCE_EXTENDED when building
2422           wide-character configuration.
2423         + build-fix in run_tic.sh for OS/2 EMX install
2424         + add cons25-debian entry (patch by Brian M Carlson, Debian #607662).
2425
2426 20110212
2427         + regenerated html manpages.
2428         + use _tracef() in show_where() function of tic, to work correctly with
2429           special case of trace configuration.
2430
2431 20110205
2432         + add xterm-utf8 entry as a demo of the U8 feature -TD
2433         + add U8 feature to denote entries for terminal emulators which do not
2434           support VT100 SI/SO when processing UTF-8 encoding -TD
2435         + improve the NCURSES_NO_UTF8_ACS feature by adding a check for an
2436           extended terminfo capability U8 (prompted by mailing list
2437           discussion).
2438
2439 20110122
2440         + start documenting interface changes for upcoming 5.8 release.
2441         + correct limit-checks in derwin().
2442         + correct limit-checks in newwin(), to ensure that windows have nonzero
2443           size (report by Garrett Cooper).
2444         + fix a missing "weak" declaration for pthread_kill (patch by Nicholas
2445           Alcock).
2446         + improve documentation of KEY_ENTER in curs_getch.3x manpage (prompted
2447           by discussion with Kevin Martin).
2448
2449 20110115
2450         + modify Ada95/configure script to make the --with-curses-dir option
2451           work without requiring the --with-ncurses option.
2452         + modify test programs to allow them to be built with NetBSD curses.
2453         + document thick- and double-line symbols in curs_add_wch.3x manpage.
2454         + document WACS_xxx constants in curs_add_wch.3x manpage.
2455         + fix some warnings for clang 2.6 "--analyze"
2456         + modify Ada95 makefiles to make html-documentation with the project
2457           file configuration if that is used.
2458         + update config.guess, config.sub
2459
2460 20110108
2461         + regenerated html manpages.
2462         + minor fixes to enable lint when trace is not enabled, e.g., with
2463           clang --analyze.
2464         + fix typo in man/default_colors.3x (patch by Tim van der Molen).
2465         + update ncurses/llib-lncurses*
2466
2467 20110101
2468         + fix remaining strict compiler warnings in ncurses library ABI=5,
2469           except those dealing with function pointers, etc.
2470
2471 20101225
2472         + modify nc_tparm.h, adding guards against repeated inclusion, and
2473           allowing TPARM_ARG to be overridden.
2474         + fix some strict compiler warnings in ncurses library.
2475
2476 20101211
2477         + suppress ncv in screen entry, allowing underline (patch by Alejandro
2478           R Sedeno).
2479         + also suppress ncv in konsole-base -TD
2480         + fixes in wins_nwstr() and related functions to ensure that special
2481           characters, i.e., control characters are handled properly with the
2482           wide-character configuration.
2483         + correct a comparison in wins_nwstr() (Redhat #661506).
2484         + correct help-messages in some of the test-programs, which still
2485           referred to quitting with 'q'.
2486
2487 20101204
2488         + add special case to _nc_infotocap() to recognize the setaf/setab
2489           strings from xterm+256color and xterm+88color, and provide a reduced
2490           version which works with termcap.
2491         + remove obsolete emacs "Local Variables" section from documentation
2492           (request by Sven Joachim).
2493         + update doc/html/index.html to include NCURSES-Programming-HOWTO.html
2494           (report by Sven Joachim).
2495
2496 20101128
2497         + modify test/configure and test/Makefile.in to handle this special
2498           case of building within a build-tree (Debian #34182):
2499                 mkdir -p build && cd build && ../test/configure && make
2500
2501 20101127
2502         + miscellaneous build-fixes for Ada95 and test-directories when built
2503           out-of-tree.
2504         + use VPATH in makefiles to simplify out-of-tree builds (Debian #34182).
2505         + fix typo in rmso for tek4106 entry -Goran Weinholt
2506
2507 20101120
2508         + improve checks in test/configure for X libraries, from xterm #267
2509           changes.
2510         + modify test/configure to allow it to use the build-tree's libraries
2511           e.g., when using that to configure the test-programs without the
2512           rpath feature (request by Sven Joachim).
2513         + repurpose "gnome" terminfo entries as "vte", retaining "gnome" items
2514           for compatibility, but generally deprecating those since the VTE
2515           library is what actually defines the behavior of "gnome", etc.,
2516           since 2003 -TD
2517
2518 20101113
2519         + compiler warning fixes for test programs.
2520         + various build-fixes for test-programs with pdcurses.
2521         + updated configure checks for X packages in test/configure from xterm
2522           #267 changes.
2523         + add configure check to gnatmake, to accommodate cygwin.
2524
2525 20101106
2526         + correct list of sub-directories needed in Ada95 tree for building as
2527           a separate package.
2528         + modify scripts in test-directory to improve builds as a separate
2529           package.
2530
2531 20101023
2532         + correct parsing of relative tab-stops in tabs program (report by
2533           Philip Ganchev).
2534         + adjust configure script so that "t" is not added to library suffix
2535           when weak-symbols are used, allowing the pthread configuration to
2536           more closely match the non-thread naming (report by Werner Fink).
2537         + modify configure check for tic program, used for fallbacks, to a
2538           warning if not found.  This makes it simpler to use additonal
2539           scripts to bootstrap the fallbacks code using tic from the build
2540           tree (report by Werner Fink).
2541         + fix several places in configure script using ${variable-value} form.
2542         + modify configure macro CF_LDFLAGS_STATIC to accommodate some loaders
2543           which do not support selectively linking against static libraries
2544           (report by John P. Hartmann)
2545         + fix an unescaped dash in man/tset.1 (report by Sven Joachim).
2546
2547 20101009
2548         + correct comparison used for setting 16-colors in linux-16color
2549           entry (Novell #644831) -TD
2550         + improve linux-16color entry, using "dim" for color-8 which makes it
2551           gray rather than black like color-0 -TD
2552         + drop misc/ncu-indent and misc/jpf-indent; they are provided by an
2553           external package "cindent".
2554
2555 20101002
2556         + improve linkages in html manpages, adding references to the newer
2557           pages, e.g., *_variables, curs_sp_funcs, curs_threads.
2558         + add checks in tic for inconsistent cursor-movement controls, and for
2559           inconsistent printer-controls.
2560         + fill in no-parameter forms of cursor-movement where a parameterized
2561           form is available -TD
2562         + fill in missing cursor controls where the form of the controls is
2563           ANSI -TD
2564         + fix inconsistent punctuation in form_variables manpage (patch by
2565           Sven Joachim).
2566         + add parameterized cursor-controls to linux-basic (report by Dae) -TD
2567         > patch by Juergen Pfeifer:
2568         + document how to build 32-bit libraries in README.MinGW
2569         + fixes to filename computation in mk-dlls.sh.in
2570         + use POSIX locale in mk-dlls.sh.in rather than en_US (report by Sven
2571           Joachim).
2572         + add a check in mk-dlls.sh.in to obtain the size of a pointer to
2573           distinguish between 32-bit and 64-bit hosts.  The result is stored
2574           in mingw_arch
2575
2576 20100925
2577         + add "XT" capability to entries for terminals that support both
2578           xterm-style mouse- and title-controls, for "screen" which
2579           special-cases TERM beginning with "xterm" or "rxvt" -TD
2580         > patch by Juergen Pfeifer:
2581         + use 64-Bit MinGW toolchain (recommended package from TDM, see
2582           README.MinGW).
2583         + support pthreads when using the TDM MinGW toolchain
2584
2585 20100918
2586         + regenerated html manpages.
2587         + minor fixes for symlinks to curs_legacy.3x and curs_slk.3x manpages.
2588         + add manpage for sp-funcs.
2589         + add sp-funcs to test/listused.sh, for documentation aids.
2590
2591 20100911
2592         + add manpages for summarizing public variables of curses-, terminfo-
2593           and form-libraries.
2594         + minor fixes to manpages for consistency (patch by Jason McIntyre).
2595         + modify tic's -I/-C dump to reformat acsc strings into canonical form
2596           (sorted, unique mapping) (cf: 971004).
2597         + add configure check for pthread_kill(), needed for some old
2598           platforms.
2599
2600 20100904
2601         + add configure option --without-tests, to suppress building test
2602           programs (request by Frederic L W Meunier).
2603
2604 20100828
2605         + modify nsterm, xnuppc and tek4115 to make sgr/sgr0 consistent -TD
2606         + add check in terminfo source-reader to provide more informative
2607           message when someone attempts to run tic on a compiled terminal
2608           description (prompted by Debian #593920).
2609         + note in infotocap and captoinfo manpages that they read terminal
2610           descriptions from text-files (Debian #593920).
2611         + improve acsc string for vt52, show arrow keys (patch by Benjamin
2612           Sittler).
2613
2614 20100814
2615         + document in manpages that "mv" functions first use wmove() to check
2616           the window pointer and whether the position lies within the window
2617           (suggested by Poul-Henning Kamp).
2618         + fixes to curs_color.3x, curs_kernel.3x and wresize.3x manpages (patch
2619           by Tim van der Molen).
2620         + modify configure script to transform library names for tic- and
2621           tinfo-libraries so that those build properly with Mac OS X shared
2622           library configuration.
2623         + modify configure script to ensure that it removes conftest.dSYM
2624           directory leftover on checks with Mac OS X.
2625         + modify configure script to cleanup after check for symbolic links.
2626
2627 20100807
2628         + correct a typo in mk-1st.awk (patch by Gabriele Balducci)
2629           (cf: 20100724)
2630         + improve configure checks for location of tic and infocmp programs
2631           used for installing database and for generating fallback data,
2632           e.g., for cross-compiling.
2633         + add Markus Kuhn's wcwidth function for compiling MinGW
2634         + add special case to CF_REGEX for cross-compiling to MinGW target.
2635
2636 20100731
2637         + modify initialization check for win32con driver to eliminate need for
2638           special case for TERM "unknown", using terminal database if available
2639           (prompted by discussion with Roumen Petrov).
2640         + for MinGW port, ensure that terminal driver is setup if tgetent()
2641           is called (patch by Roumen Petrov).
2642         + document tabs "-0" and "-8" options in manpage.
2643         + fix Debian "lintian" issues with manpages reported in
2644           http://lintian.debian.org/full/csmall@debian.org.html#ncurses
2645
2646 20100724
2647         + add a check in tic for missing set_tab if clear_all_tabs given.
2648         + improve use of symbolic links in makefiles by using "-f" option if
2649           it is supported, to eliminate temporary removal of the target
2650           (prompted by http://www.t2-project.org/packages/ncurses.html)
2651         + minor improvement to test/ncurses.c, reset color pairs in 'd' test
2652           after exit from 'm' main-menu command.
2653         + improved ncu-indent, from mawk changes, allows more than one of
2654           GCC_NORETURN, GCC_PRINTFLIKE and GCC_SCANFLIKE on a single line.
2655
2656 20100717
2657         + add hard-reset for rs2 to wsvt25 to help ensure that reset ends
2658           the alternate character set (patch by Nicholas Marriott)
2659         + remove tar-copy.sh and related configure/Makefile chunks, since the
2660           Ada95 binding is now installed using rules in Ada95/src.
2661
2662 20100703
2663         + continue integrating changes to use gnatmake project files in Ada95
2664           + add/use configure check to turn on project rules for Ada95/src.
2665         + revert the vfork change from 20100130, since it does not work.
2666
2667 20100626
2668         + continue integrating changes to use gnatmake project files in Ada95
2669           + old gnatmake (3.15) does not produce libraries using project-file;
2670             work around by adding script to generate alternate makefile.
2671
2672 20100619
2673         + continue integrating changes to use gnatmake project files in Ada95
2674           + add configure --with-ada-sharedlib option, for the test_make rule.
2675           + move Ada95-related logic into aclocal.m4, since additional checks
2676             will be needed to distinguish old/new implementations of gnat.
2677
2678 20100612
2679         + start integrating changes to use gnatmake project files in Ada95 tree
2680           + add test_make / test_clean / test_install rules in Ada95/src
2681           + change install-path for adainclude directory to /usr/share/ada (was
2682             /usr/lib/ada).
2683         + update Ada95/configure.
2684         + add mlterm+256color entry, for mlterm 3.0.0 -TD
2685         + modify test/configure to use macros to ensure consistent order
2686           of updating LIBS variable.
2687
2688 20100605
2689         + change search order of options for Solaris in CF_SHARED_OPTS, to
2690           work with 64-bit compiles.
2691         + correct quoting of assignment in CF_SHARED_OPTS case for aix
2692           (cf: 20081227)
2693
2694 20100529
2695         + regenerated html documentation.
2696         + modify test/configure to support pkg-config for checking X libraries
2697           used by PDCurses.
2698         + add/use configure macro CF_ADD_LIB to force consistency of
2699           assignments to $LIBS, etc.
2700         + fix configure script for combining --with-pthread
2701           and --enable-weak-symbols options.
2702
2703 20100522
2704         + correct cross-compiling configure check for CF_MKSTEMP macro, by
2705           adding a check cache variable set by AC_CHECK_FUNC (report by
2706           Pierre Labastie).
2707         + simplify include-dependencies of make_hash and make_keys, to reduce
2708           the need for setting BUILD_CPPFLAGS in cross-compiling when the
2709           build- and target-machines differ.
2710         + repair broken-linker configuration by restoring a definition of SP
2711           variable to curses.priv.h, and adjusting for cases where sp-funcs
2712           are used.
2713         + improve configure macro CF_AR_FLAGS, allowing ARFLAGS environment
2714           variable to override (prompted by report by Pablo Cazallas).
2715
2716 20100515
2717         + add configure option --enable-pthreads-eintr to control whether the
2718           new EINTR feature is enabled.
2719         + modify logic in pthread configuration to allow EINTR to interrupt
2720           a read operation in wgetch() (Novell #540571, patch by Werner Fink).
2721         + drop mkdirs.sh, use "mkdir -p".
2722         + add configure option --disable-libtool-version, to use the
2723           "-version-number" feature which was added in libtool 1.5 (report by
2724           Peter Haering).  The default value for the option uses the newer
2725           feature, which makes libraries generated using libtool compatible
2726           with the standard builds of ncurses.
2727         + updated test/configure to match configure script macros.
2728         + fixes for configure script from lynx changes:
2729           + improve CF_FIND_LINKAGE logic for the case where a function is
2730             found in predefined libraries.
2731           + revert part of change to CF_HEADER (cf: 20100424)
2732
2733 20100501
2734         + correct limit-check in wredrawln, accounting for begy/begx values
2735           (patch by David Benjamin).
2736         + fix most compiler warnings from clang.
2737         + amend build-fix for OpenSolaris, to ensure that a system header is
2738           included in curses.h before testing feature symbols, since they
2739           may be defined by that route.
2740
2741 20100424
2742         + fix some strict compiler warnings in ncurses library.
2743         + modify configure macro CF_HEADER_PATH to not look for variations in
2744           the predefined include directories.
2745         + improve configure macros CF_GCC_VERSION and CF_GCC_WARNINGS to work
2746           with gcc 4.x's c89 alias, which gives warning messages for cases
2747           where older versions would produce an error.
2748
2749 20100417
2750         + modify _nc_capcmp() to work with cancelled strings.
2751         + correct translation of "^" in _nc_infotocap(), used to transform
2752           terminfo to termcap strings
2753         + add configure --disable-rpath-hack, to allow disabling the feature
2754           which adds rpath options for libraries in unusual places.
2755         + improve CF_RPATH_HACK_2 by checking if the rpath option for a given
2756           directory was already added.
2757         + improve CF_RPATH_HACK_2 by using ldd to provide a standard list of
2758           directories (which will be ignored).
2759
2760 20100410
2761         + improve win_driver.c handling of mouse:
2762           + discard motion events
2763           + avoid calling _nc_timed_wait when there is a mouse event
2764           + handle 4th and "rightmost" buttons.
2765         + quote substitutions in CF_RPATH_HACK_2 configure macro, needed for
2766           cases where there are embedded blanks in the rpath option.
2767
2768 20100403
2769         + add configure check for exctags vs ctags, to work around pkgsrc.
2770         + simplify logic in _nc_get_screensize() to make it easier to see how
2771           environment variables may override system- and terminfo-values
2772           (prompted by discussion with Igor Bujna).
2773         + make debug-traces for COLOR_PAIR and PAIR_NUMBER less verbose.
2774         + improve handling of color-pairs embedded in attributes for the
2775           extended-colors configuration.
2776         + modify MKlib_gen.sh to build link_test with sp-funcs.
2777         + build-fixes for OpenSolaris aka Solaris 11, for wide-character
2778           configuration as well as for rpath feature in *-config scripts.
2779
2780 20100327
2781         + refactor CF_SHARED_OPTS configure macro, making CF_RPATH_HACK more
2782           reusable.
2783         + improve configure CF_REGEX, similar fixes.
2784         + improve configure CF_FIND_LINKAGE, adding add check between system
2785           (default) and explicit paths, where we can find the entrypoint in the
2786           given library.
2787         + add check if Gpm_Open() returns a -2, e.g., for "xterm".  This is
2788           normally suppressed but can be overridden using $NCURSES_GPM_TERMS.
2789           Ensure that Gpm_Close() is called in this case.
2790
2791 20100320
2792         + rename atari and st52 terminfo entries to atari-old, st52-old, use
2793           newer entries from FreeMiNT by Guido Flohr (from patch/report by Alan
2794           Hourihane).
2795
2796 20100313
2797         + modify install-rule for manpages so that *-config manpages will
2798           install when building with --srcdir (report by Sven Joachim).
2799         + modify CF_DISABLE_LEAKS configure macro so that the --enable-leaks
2800           option is not the same as --disable-leaks (GenToo #305889).
2801         + modify #define's for build-compiler to suppress cchar_t symbol from
2802           compile of make_hash and make_keys, improving cross-compilation of
2803           ncursesw (report by Bernhard Rosenkraenzer).
2804         + modify CF_MAN_PAGES configure macro to replace all occurrences of
2805           TPUT in tput.1's manpage (Debian #573597, report/analysis by Anders
2806           Kaseorg).
2807
2808 20100306
2809         + generate manpages for the *-config scripts, adapted from help2man
2810           (suggested by Sven Joachim).
2811         + use va_copy() in _nc_printf_string() to avoid conflicting use of
2812           va_list value in _nc_printf_length() (report by Wim Lewis).
2813
2814 20100227
2815         + add Ada95/configure script, to use in tar-file created by
2816           Ada95/make-tar.sh
2817         + fix typo in wresize.3x (patch by Tim van der Molen).
2818         + modify screen-bce.XXX entries to exclude ech, since screen's color
2819           model does not clear with color for that feature -TD
2820
2821 20100220
2822         + add make-tar.sh scripts to Ada95 and test subdirectories to help with
2823           making those separately distributable.
2824         + build-fix for static libraries without dlsym (Debian #556378).
2825         + fix a syntax error in man/form_field_opts.3x (patch by Ingo
2826           Schwarze).
2827
2828 20100213
2829         + add several screen-bce.XXX entries -TD
2830
2831 20100206
2832         + update mrxvt terminfo entry -TD
2833         + modify win_driver.c to support mouse single-clicks.
2834         + correct name for termlib in ncurses*-config, e.g., if it is renamed
2835           to provide a single file for ncurses/ncursesw libraries (patch by
2836           Miroslav Lichvar).
2837
2838 20100130
2839         + use vfork in test/ditto.c if available (request by Mike Frysinger).
2840         + miscellaneous cleanup of manpages.
2841         + fix typo in curs_bkgd.3x (patch by Tim van der Molen).
2842         + build-fix for --srcdir (patch by Miroslav Lichvar).
2843
2844 20100123
2845         + for term-driver configuration, ensure that the driver pointer is
2846           initialized in setupterm so that terminfo/termcap programs work.
2847         + amend fix for Debian #542031 to ensure that wattrset() returns only
2848           OK or ERR, rather than the attribute value (report by Miroslav
2849           Lichvar).
2850         + reorder WINDOWLIST to put WINDOW data after SCREEN pointer, making
2851           _nc_screen_of() compatible between normal/wide libraries again (patch
2852           by Miroslav Lichvar)
2853         + review/fix include-dependencies in modules files (report by Miroslav
2854           Lichvar).
2855
2856 20100116
2857         + modify win_driver.c to initialize acs_map for win32 console, so
2858           that line-drawing works.
2859         + modify win_driver.c to initialize TERMINAL struct so that programs
2860           such as test/lrtest.c and test/ncurses.c which test string
2861           capabilities can run.
2862         + modify term-driver modules to eliminate forward-reference
2863           declarations.
2864
2865 20100109
2866         + modify configure macro CF_XOPEN_SOURCE, etc., to use CF_ADD_CFLAGS
2867           consistently to add new -D's while removing duplicates.
2868         + modify a few configure macros to consistently put new options
2869           before older in the list.
2870         + add tiparm(), based on review of X/Open Curses Issue 7.
2871         + minor documentation cleanup.
2872         + update config.guess, config.sub from
2873                 http://savannah.gnu.org/projects/config
2874           (caveat - its maintainer put 2010 copyright date on files dated 2009)
2875
2876 20100102
2877         + minor improvement to tic's checking of similar SGR's to allow for the
2878           most common case of SGR 0.
2879         + modify getmouse() to act as its documentation implied, returning on
2880           each call the preceding event until none are left.  When no more
2881           events remain, it will return ERR.
2882
2883 20091227
2884         + change order of lookup in progs/tput.c, looking for terminfo data
2885           first.  This fixes a confusion between termcap "sg" and terminfo
2886           "sgr" or "sgr0", originally from 990123 changes, but exposed by
2887           20091114 fixes for hashing.  With this change, only "dl" and "ed" are
2888           ambiguous (Mandriva #56272).
2889
2890 20091226
2891         + add bterm terminfo entry, based on bogl 0.1.18 -TD
2892         + minor fix to rxvt+pcfkeys terminfo entry -TD
2893         + build-fixes for Ada95 tree for gnat 4.4 "style".
2894
2895 20091219
2896         + remove old check in mvderwin() which prevented moving a derived
2897           window whose origin happened to coincide with its parent's origin
2898           (report by Katarina Machalkova).
2899         + improve test/ncurses.c to put mouse droppings in the proper window.
2900         + update minix terminfo entry -TD
2901         + add bw (auto-left-margin) to nsterm* entries (Benjamin Sittler)
2902
2903 20091212
2904         + correct transfer of multicolumn characters in multirow
2905           field_buffer(), which stopped at the end of the first row due to
2906           filling of unused entries in a cchar_t array with nulls.
2907         + updated nsterm* entries (Benjamin Sittler, Emanuele Giaquinta)
2908         + modify _nc_viscbuf2() and _tracecchar_t2() to show wide-character
2909           nulls.
2910         + use strdup() in set_menu_mark(), restore .marklen struct member on
2911           failure.
2912         + eliminate clause 3 from the UCB copyrights in read_termcap.c and
2913           tset.c per
2914                 ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
2915           (patch by Nicholas Marriott).
2916         + replace a malloc in tic.c with strdup, checking for failure (patch by
2917           Nicholas Marriott).
2918         + update config.guess, config.sub from
2919                 http://savannah.gnu.org/projects/config
2920
2921 20091205
2922         + correct layout of working window used to extract data in
2923           wide-character configured by set_field_buffer (patch by Rafael
2924           Garrido Fernandez)
2925         + improve some limit-checks related to filename length in reading and
2926           writing terminfo entries.
2927         + ensure that filename is always filled in when attempting to read
2928           a terminfo entry, so that infocmp can report the filename (patch
2929           by Nicholas Marriott).
2930
2931 20091128
2932         + modify mk-1st.awk to allow tinfo library to be built when term-driver
2933           is enabled.
2934         + add error-check to configure script to ensure that sp-funcs is
2935           enabled if term-driver is, since some internal interfaces rely upon
2936           this.
2937
2938 20091121
2939         + fix case where progs/tput is used while sp-funcs is configure; this
2940           requires save/restore of out-character function from _nc_prescreen
2941           rather than the SCREEN structure (report by Charles Wilson).
2942         + fix typo in man/curs_trace.3x which caused incorrect symbolic links
2943         + improved configure macros CF_GCC_ATTRIBUTES, CF_PROG_LINT.
2944
2945 20091114
2946
2947         + updated man/curs_trace.3x
2948         + limit hashing for termcap-names to 2-characters (Ubuntu #481740).
2949         + change a variable name in lib_newwin.c to make it clearer which
2950           value is being freed on error (patch by Nicholas Marriott).
2951
2952 20091107
2953         + improve test/ncurses.c color-cycling test by reusing attribute-
2954           and color-cycling logic from the video-attributes screen.
2955         + add ifdef'd with NCURSES_INTEROP_FUNCS experimental bindings in form
2956           library which help make it compatible with interop applications
2957           (patch by Juergen Pfeifer).
2958         + add configure option --enable-interop, for integrating changes
2959           for generic/interop support to form-library by Juergen Pfeifer
2960
2961 20091031
2962         + modify use of $CC environment variable which is defined by X/Open
2963           as a curses feature, to ignore it if it is not a single character
2964           (prompted by discussion with Benjamin C W Sittler).
2965         + add START_TRACE in slk_init
2966         + fix a regression in _nc_ripoffline which made test/ncurses.c not show
2967           soft-keys, broken in 20090927 merging.
2968         + change initialization of "hidden" flag for soft-keys from true to
2969           false, broken in 20090704 merging (Ubuntu #464274).
2970         + update nsterm entries (patch by Benjamin C W Sittler, prompted by
2971           discussion with Fabian Groffen in GenToo #206201).
2972         + add test/xterm-256color.dat
2973
2974 20091024
2975         + quiet some pedantic gcc warnings.
2976         + modify _nc_wgetch() to check for a -1 in the fifo, e.g., after a
2977           SIGWINCH, and discard that value, to avoid confusing application
2978           (patch by Eygene Ryabinkin, FreeBSD #136223).
2979
2980 20091017
2981         + modify handling of $PKG_CONFIG_LIBDIR to use only the first item in
2982           a possibly colon-separated list (Debian #550716).
2983
2984 20091010
2985         + supply a null-terminator to buffer in _nc_viswibuf().
2986         + fix a sign-extension bug in unget_wch() (report by Mike Gran).
2987         + minor fixes to error-returns in default function for tputs, as well
2988           as in lib_screen.c
2989
2990 20091003
2991         + add WACS_xxx definitions to wide-character configuration for thick-
2992           and double-lines (discussion with Slava Zanko).
2993         + remove unnecessary kcan assignment to ^C from putty (Sven Joachim)
2994         + add ccc and initc capabilities to xterm-16color -TD
2995         > patch by Benjamin C W Sittler:
2996         + add linux-16color
2997         + correct initc capability of linux-c-nc end-of-range
2998         + similar change for dg+ccc and dgunix+ccc
2999
3000 20090927
3001         + move leak-checking for comp_captab.c into _nc_leaks_tinfo() since
3002           that module since 20090711 is in libtinfo.
3003         + add configure option --enable-term-driver, to allow compiling with
3004           terminal-driver.  That is used in MinGW port, and (being somewhat
3005           more complicated) is an experimental alternative to the conventional
3006           termlib internals.  Currently, it requires the sp-funcs feature to
3007           be enabled.
3008         + completed integrating "sp-funcs" by Juergen Pfeifer in ncurses
3009           library (some work remains for forms library).
3010
3011 20090919
3012         + document return code from define_key (report by Mike Gran).
3013         + make some symbolic links in the terminfo directory-tree shorter
3014           (patch by Daniel Jacobowitz, forwarded by Sven Joachim).).
3015         + fix some groff warnings in terminfo.5, etc., from recent Debian
3016           changes.
3017         + change ncv and op capabilities in sun-color terminfo entry to match
3018           Sun's entry for this (report by Laszlo Peter).
3019         + improve interix smso terminfo capability by using reverse rather than
3020           bold (report by Kristof Zelechovski).
3021
3022 20090912
3023         + add some test programs (and make these use the same special keys
3024           by sharing linedata.h functions):
3025           test/test_addstr.c
3026           test/test_addwstr.c
3027           test/test_addchstr.c
3028           test/test_add_wchstr.c
3029         + correct internal _nc_insert_ch() to use _nc_insert_wch() when
3030           inserting wide characters, since the wins_wch() function that it used
3031           did not update the cursor position (report by Ciprian Craciun).
3032
3033 20090906
3034         + fix typo s/is_timeout/is_notimeout/ which made "man is_notimeout" not
3035           work.
3036         + add null-pointer checks to other opaque-functions.
3037         + add is_pad() and is_subwin() functions for opaque access to WINDOW
3038           (discussion with Mark Dickinson).
3039         + correct merge to lib_newterm.c, which broke when sp-funcs was
3040           enabled.
3041
3042 20090905
3043         + build-fix for building outside source-tree (report by Sven Joachim).
3044         + fix Debian lintian warning for man/tabs.1 by making section number
3045           agree with file-suffix (report by Sven Joachim).
3046         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3047
3048 20090829
3049         + workaround for bug in g++ 4.1-4.4 warnings for wattrset() macro on
3050           amd64 (Debian #542031).
3051         + fix typo in curs_mouse.3x (Debian #429198).
3052
3053 20090822
3054         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3055
3056 20090815
3057         + correct use of terminfo capabilities for initializing soft-keys,
3058           broken in 20090510 merging.
3059         + modify wgetch() to ensure it checks SIGWINCH when it gets an error
3060           in non-blocking mode (patch by Clemens Ladisch).
3061         + use PATH_SEPARATOR symbol when substituting into run_tic.sh, to
3062           help with builds on non-Unix platforms such as OS/2 EMX.
3063         + modify scripting for misc/run_tic.sh to test configure script's
3064           $cross_compiling variable directly rather than comparing host/build
3065           compiler names (prompted by comment in GenToo #249363).
3066         + fix configure script option --with-database, which was coded as an
3067           enable-type switch.
3068         + build-fixes for --srcdir (report by Frederic L W Meunier).
3069
3070 20090808
3071         + separate _nc_find_entry() and _nc_find_type_entry() from
3072           implementation details of hash function.
3073
3074 20090803
3075         + add tabs.1 to man/man_db.renames
3076         + modify lib_addch.c to compensate for removal of wide-character test
3077           from unctrl() in 20090704 (Debian #539735).
3078
3079 20090801
3080         + improve discussion in INSTALL for use of system's tic/infocmp for
3081           cross-compiling and building fallbacks.
3082         + modify test/demo_termcap.c to correspond better to options in
3083           test/demo_terminfo.c
3084         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3085         + fix logic for 'V' in test/ncurses.c tests f/F.
3086
3087 20090728
3088         + correct logic in tigetnum(), which caused tput program to treat all
3089           string capabilities as numeric (report by Rajeev V Pillai,
3090           cf: 20090711).
3091
3092 20090725
3093         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3094
3095 20090718
3096         + fix a null-pointer check in _nc_format_slks() in lib_slk.c, from
3097           20090704 changes.
3098         + modify _nc_find_type_entry() to use hashing.
3099         + make CCHARW_MAX value configurable, noting that changing this would
3100           change the size of cchar_t, and would be ABI-incompatible.
3101         + modify test-programs, e.g,.  test/view.c, to address subtle
3102           differences between Tru64/Solaris and HPUX/AIX getcchar() return
3103           values.
3104         + modify length returned by getcchar() to count the trailing null
3105           which is documented in X/Open (cf: 20020427).
3106         + fixes for test programs to build/work on HPUX and AIX, etc.
3107
3108 20090711
3109         + improve performance of tigetstr, etc., by using hashing code from tic.
3110         + minor fixes for memory-leak checking.
3111         + add test/demo_terminfo, for comparison with demo_termcap
3112
3113 20090704
3114         + remove wide-character checks from unctrl() (patch by Clemens Ladisch).
3115         + revise wadd_wch() and wecho_wchar() to eliminate dependency on
3116           unctrl().
3117         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3118
3119 20090627
3120         + update llib-lncurses[wt] to use sp-funcs.
3121         + various code-fixes to build/work with --disable-macros configure
3122           option.
3123         + add several new files from Juergen Pfeifer which will be used when
3124           integration of "sp-funcs" is complete.  This includes a port to
3125           MinGW.
3126
3127 20090613
3128         + move definition for NCURSES_WRAPPED_VAR back to ncurses_dll.h, to
3129           make includes of term.h without curses.h work (report by "Nix").
3130         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3131
3132 20090607
3133         + fix a regression in lib_tputs.c, from ongoing merges.
3134
3135 20090606
3136         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3137
3138 20090530
3139         + fix an infinite recursion when adding a legacy-coding 8-bit value
3140           using insch() (report by Clemens Ladisch).
3141         + free home-terminfo string in del_curterm() (patch by Dan Weber).
3142         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3143
3144 20090523
3145         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3146
3147 20090516
3148         + work around antique BSD game's manipulation of stdscr, etc., versus
3149           SCREEN's copy of the pointer (Debian #528411).
3150         + add a cast to wattrset macro to avoid compiler warning when comparing
3151           its result against ERR (adapted from patch by Matt Kraii, Debian
3152           #528374).
3153
3154 20090510
3155         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3156
3157 20090502
3158         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3159         + add vwmterm terminfo entry (patch by Bryan Christ).
3160
3161 20090425
3162         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3163
3164 20090419
3165         + build fix for _nc_free_and_exit() change in 20090418 (report by
3166           Christian Ebert).
3167
3168 20090418
3169         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3170
3171 20090411
3172         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3173           This change finishes merging for menu and panel libraries, does
3174           part of the form library.
3175
3176 20090404
3177         + suppress configure check for static/dynamic linker flags for gcc on
3178           Darwin (report by Nelson Beebe).
3179
3180 20090328
3181         + extend ansi.sys pfkey capability from kf1-kf10 to kf1-kf48, moving
3182           function key definitions from emx-base for consistency -TD
3183         + correct missing final 'p' in pfkey capability of ansi.sys-old (report
3184           by Kalle Olavi Niemitalo).
3185         + improve test/ncurses.c 'F' test, show combining characters in color.
3186         + quiet a false report by cppcheck in c++/cursesw.cc by eliminating
3187           a temporary variable.
3188         + use _nc_doalloc() rather than realloc() in a few places in ncurses
3189           library to avoid leak in out-of-memory condition (reports by William
3190           Egert and Martin Ettl based on cppcheck tool).
3191         + add --with-ncurses-wrap-prefix option to test/configure (discussion
3192           with Charles Wilson).
3193         + use ncurses*-config scripts if available for test/configure.
3194         + update test/aclocal.m4 and test/configure
3195         > patches by Charles Wilson:
3196         + modify CF_WITH_LIBTOOL configure check to allow unreleased libtool
3197           version numbers (e.g.  which include alphabetic chars, as well as
3198           digits, after the final '.').
3199         + improve use of -no-undefined option for libtool by setting an
3200           intermediate variable LT_UNDEF in the configure script, and then
3201           using that in the libtool link-commands.
3202         + fix an missing use of NCURSES_PUBLIC_VAR() in tinfo/MKcodes.awk
3203           from 20090321 changes.
3204         + improve mk-1st.awk script by writing separate cases for the
3205           LIBTOOL_LINK command, depending on which library (ncurses, ticlib,
3206           termlib) is to be linked.
3207         + modify configure.in to allow broken-linker configurations, not just
3208           enable-reentrant, to set public wrap prefix.
3209
3210 20090321
3211         + add TICS_LIST and SHLIB_LIST to allow libtool 2.2.6 on Cygwin to
3212           build with tic and term libraries (patch by Charles Wilson).
3213         + add -no-undefined option to libtool for Cygwin, MinGW, U/Win and AIX
3214           (report by Charles Wilson).
3215         + fix definition for c++/Makefile.in's SHLIB_LIST, which did not list
3216           the form, menu or panel libraries (patch by Charles Wilson).
3217         + add configure option --with-wrap-prefix to allow setting the prefix
3218           for functions used to wrap global variables to something other than
3219           "_nc_" (discussion with Charles Wilson).
3220
3221 20090314
3222         + modify scripts to generate ncurses*-config and pc-files to add
3223           dependency for tinfo library (patch by Charles Wilson).
3224         + improve comparison of program-names when checking for linked flavors
3225           such as "reset" by ignoring the executable suffix (reports by Charles
3226           Wilson, Samuel Thibault and Cedric Bretaudeau on Cygwin mailing
3227           list).
3228         + suppress configure check for static/dynamic linker flags for gcc on
3229           Solaris 10, since gcc is confused by absence of static libc, and
3230           does not switch back to dynamic mode before finishing the libraries
3231           (reports by Joel Bertrand, Alan Pae).
3232         + minor fixes to Intel compiler warning checks in configure script.
3233         + modify _nc_leaks_tinfo() so leak-checking in test/railroad.c works.
3234         + modify set_curterm() to make broken-linker configuration work with
3235           changes from 20090228 (report by Charles Wilson).
3236
3237 20090228
3238         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3239         + modify declaration of cur_term when broken-linker is used, but
3240           enable-reentrant is not, to match pre-5.7 (report by Charles Wilson).
3241
3242 20090221
3243         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
3244
3245 20090214
3246         + add configure script --enable-sp-funcs to enable the new set of
3247           extended functions.
3248         + start integrating patches by Juergen Pfeifer:
3249           + add extended functions which specify the SCREEN pointer for several
3250             curses functions which use the global SP (these are incomplete;
3251             some internals work is needed to complete these).
3252           + add special cases to configure script for MinGW port.
3253
3254 20090207
3255         + update several configure macros from lynx changes
3256           + append (not prepend) to CFLAGS/CPPFLAGS
3257           + change variable from PATHSEP to PATH_SEPARATOR
3258         + improve install-rules for pc-files (patch by Miroslav Lichvar).
3259           + make it work with $DESTDIR
3260           + create the pkg-config library directory if needed.
3261
3262 20090124
3263         + modify init_pair() to allow caller to create extra color pairs beyond
3264           the color_pairs limit, which use default colors (request by Emanuele
3265           Giaquinta).
3266         + add misc/terminfo.tmp and misc/*.pc to "sources" rule.
3267         + fix typo "==" where "=" is needed in ncurses-config.in and
3268           gen-pkgconfig.in files (Debian #512161).
3269
3270 20090117
3271         + add -shared option to MK_SHARED_LIB when -Bsharable is used, for
3272           *BSD's, without which "main" might be one of the shared library's
3273           dependencies (report/analysis by Ken Dickey).
3274         + modify waddch_literal(), updating line-pointer after a multicolumn
3275           character is found to not fit on the current row, and wrapping is
3276           done.  Since the line-pointer was not updated, the wrapped
3277           multicolumn character was written to the beginning of the current row
3278           (cf: 20041023, reported by "Nick" regarding problem with ncmpc
3279           http://musicpd.org/mantis/bug_view_page.php?bug_id=1930).
3280
3281 20090110
3282         + add screen.Eterm terminfo entry (GenToo #124887) -TD
3283         + modify adacurses-config to look for ".ali" files in the adalib
3284           directory.
3285         + correct install for Ada95, which omitted libAdaCurses.a used in
3286           adacurses-config
3287         + change install for adacurses-config to provide additional flavors
3288           such as adacursesw-config, for ncursesw (GenToo #167849).
3289
3290 20090105
3291         + remove undeveloped feature in ncurses-config.in for setting
3292           prefix variable.
3293         + recent change to ncurses-config.in did not take into account the
3294           --disable-overwrite option, which sets $includedir to the
3295           subdirectory and using just that for a -I option does not work - fix
3296           (report by Frederic L W Meunier).
3297
3298 20090104
3299         + modify gen-pkgconfig.in to eliminate a dependency on rpath when
3300           deciding whether to add $LIBS to --libs output; that should be shown
3301           for the ncurses and tinfo libraries without taking rpath into
3302           account.
3303         + fix an overlooked change from $AR_OPTS to $ARFLAGS in mk-1st.awk,
3304           used in static libraries (report by Marty Jack).
3305
3306 20090103
3307         + add a configure-time check to pick a suitable value for
3308           CC_SHARED_OPTS for Solaris (report by Dagobert Michelsen).
3309         + add configure --with-pkg-config and --enable-pc-files options, along
3310           with misc/gen-pkgconfig.in which can be used to generate ".pc" files
3311           for pkg-config (request by Jan Engelhardt).
3312         + use $includedir symbol in misc/ncurses-config.in, add --includedir
3313           option.
3314         + change makefiles to use $ARFLAGS rather than $AR_OPTS, provide a
3315           configure check to detect whether a "-" is needed before "ar"
3316           options.
3317         + update config.guess, config.sub from
3318                 http://savannah.gnu.org/projects/config
3319
3320 20081227
3321         + modify mk-1st.awk to work with extra categories for tinfo library.
3322         + modify configure script to allow building shared libraries with gcc
3323           on AIX 5 or 6 (adapted from patch by Lital Natan).
3324
3325 20081220
3326         + modify to omit the opaque-functions from lib_gen.o when
3327           --disable-ext-funcs is used.
3328         + add test/clip_printw.c to illustrate how to use printw without
3329           wrapping.
3330         + modify ncurses 'F' test to demo wborder_set() with colored lines.
3331         + modify ncurses 'f' test to demo wborder() with colored lines.
3332
3333 20081213
3334         + add check for failure to open hashed-database needed for db4.6
3335           (GenToo #245370).
3336         + corrected --without-manpages option; previous change only suppressed
3337           the auxiliary rules install.man and uninstall.man
3338         + add case for FreeMINT to configure macro CF_XOPEN_SOURCE (patch from
3339           GenToo #250454).
3340         + fixes from NetBSD port at
3341           http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches
3342           patch-ac (build-fix for DragonFly)
3343           patch-ae (use INSTALL_SCRIPT for installing misc/ncurses*-config).
3344         + improve configure script macros CF_HEADER_PATH and CF_LIBRARY_PATH
3345           by adding CFLAGS, CPPFLAGS and LDFLAGS, LIBS values to the
3346           search-lists.
3347         + correct title string for keybound manpage (patch by Frederic Culot,
3348           OpenBSD documentation/6019),
3349
3350 20081206
3351         + move del_curterm() call from _nc_freeall() to _nc_leaks_tinfo() to
3352           work for progs/clear, progs/tabs, etc.
3353         + correct buffer-size after internal resizing of wide-character
3354           set_field_buffer(), broken in 20081018 changes (report by Mike Gran).
3355         + add "-i" option to test/filter.c to tell it to use initscr() rather
3356           than newterm(), to investigate report on comp.unix.programmer that
3357           ncurses would clear the screen in that case (it does not - the issue
3358           was xterm's alternate screen feature).
3359         + add check in mouse-driver to disable connection if GPM returns a
3360           zero, indicating that the connection is closed (Debian #506717,
3361           adapted from patch by Samuel Thibault).
3362
3363 20081129
3364         + improve a workaround in adding wide-characters, when a control
3365           character is found.  The library (cf: 20040207) uses unctrl() to
3366           obtain a printable version of the control character, but was not
3367           passing color or video attributes.
3368         + improve test/ncurses.c 'a' test, using unctrl() more consistently to
3369           display meta-characters.
3370         + turn on _XOPEN_CURSES definition in curses.h
3371         + add eterm-color entry (report by Vincent Lefevre) -TD
3372         + correct use of key_name() in test/ncurses.c 'A' test, which only
3373           displays wide-characters, not key-codes since 20070612 (report by
3374           Ricardo Cantu).
3375
3376 20081122
3377         + change _nc_has_mouse() to has_mouse(), reflect its use in C++ and
3378           Ada95 (patch by Juergen Pfeifer).
3379         + document in TO-DO an issue with Cygwin's package for GNAT (report
3380           by Mike Dennison).
3381         + improve error-checking of command-line options in "tabs" program.
3382
3383 20081115
3384         + change several terminfo entries to make consistent use of ANSI
3385           clear-all-tabs -TD
3386         + add "tabs" program (prompted by Debian #502260).
3387         + add configure --without-manpages option (request by Mike Frysinger).
3388
3389 20081102 5.7 release for upload to ftp.gnu.org
3390
3391 20081025
3392         + add a manpage to discuss memory leaks.
3393         + add support for shared libraries for QNX (other than libtool, which
3394           does not work well on that platform).
3395         + build-fix for QNX C++ binding.
3396
3397 20081018
3398         + build-fixes for OS/2 EMX.
3399         + modify form library to accept control characters such as newline
3400           in set_field_buffer(), which is compatible with Solaris (report by
3401           Nit Khair).
3402         + modify configure script to assume --without-hashed-db when
3403           --disable-database is used.
3404         + add "-e" option in ncurses/Makefile.in when generating source-files
3405           to force earlier exit if the build environment fails unexpectedly
3406           (prompted by patch by Adrian Bunk).
3407         + change configure script to use CF_UTF8_LIB, improved variant of
3408           CF_LIBUTF8.
3409
3410 20081012
3411         + add teraterm4.59 terminfo entry, use that as primary teraterm entry, rename
3412           original to teraterm2.3 -TD
3413         + update "gnome" terminfo to 2.22.3 -TD
3414         + update "konsole" terminfo to 1.6.6, needs today's fix for tic -TD
3415         + add "aterm" terminfo -TD
3416         + add "linux2.6.26" terminfo -TD
3417         + add logic to tic for cancelling strings in user-defined capabilities,
3418           overlooked til now.
3419
3420 20081011
3421         + regenerated html documentation.
3422         + add -m and -s options to test/keynames.c and test/key_names.c to test
3423           the meta() function with keyname() or key_name(), respectively.
3424         + correct return value of key_name() on error; it is null.
3425         + document some unresolved issues for rpath and pthreads in TO-DO.
3426         + fix a missing prototype for ioctl() on OpenBSD in tset.c
3427         + add configure option --disable-tic-depends to make explicit whether
3428           tic library depends on ncurses/ncursesw library, amends change from
3429           20080823 (prompted by Debian #501421).
3430
3431 20081004
3432         + some build-fixes for configure --disable-ext-funcs (incomplete, but
3433           works for C/C++ parts).
3434         + improve configure-check for awks unable to handle large strings, e.g.
3435           AIX 5.1 whose awk silently gives up on large printf's.
3436
3437 20080927
3438         + fix build for --with-dmalloc by workaround for redefinition of
3439           strndup between string.h and dmalloc.h
3440         + fix build for --disable-sigwinch
3441         + add environment variable NCURSES_GPM_TERMS to allow override to use
3442           GPM on terminals other than "linux", etc.
3443         + disable GPM mouse support when $TERM does not happen to contain
3444           "linux", since Gpm_Open() no longer limits its assertion to terminals
3445           that it might handle, e.g., within "screen" in xterm.
3446         + reset mouse file-descriptor when unloading GPM library (report by
3447           Miroslav Lichvar).
3448         + fix build for --disable-leaks --enable-widec --with-termlib
3449         > patch by Juergen Pfeifer:
3450         + use improved initialization for soft-label keys in Ada95 sample code.
3451         + discard internal symbol _nc_slk_format (unused since 20080112).
3452         + move call of slk_paint_info() from _nc_slk_initialize() to
3453           slk_intern_refresh(), improving initialization.
3454
3455 20080925
3456         + fix bug in mouse code for GPM from 20080920 changes (reported in
3457           Debian #500103, also Miroslav Lichvar).
3458
3459 20080920
3460         + fix shared-library rules for cygwin with tic- and tinfo-libraries.
3461         + fix a memory leak when failure to connect to GPM.
3462         + correct check for notimeout() in wgetch() (report on linux.redhat
3463           newsgroup by FurtiveBertie).
3464         + add an example warning-suppression file for valgrind,
3465           misc/ncurses.supp (based on example from Reuben Thomas)
3466
3467 20080913
3468         + change shared-library configuration for OpenBSD, make rpath work.
3469         + build-fixes for using libutf8, e.g., on OpenBSD 3.7
3470
3471 20080907
3472         + corrected fix for --enable-weak-symbols (report by Frederic L W
3473           Meunier).
3474
3475 20080906
3476         + corrected gcc options for building shared libraries on IRIX64.
3477         + add configure check for awk programs unable to handle big-strings,
3478           use that to improve the default for --enable-big-strings option.
3479         + makefile-fixes for --enable-weak-symbols (report by Frederic L W
3480           Meunier).
3481         + update test/configure script.
3482         + adapt ifdef's from library to make test/view.c build when mbrtowc()
3483           is unavailable, e.g., with HPUX 10.20.
3484         + add configure check for wcsrtombs, mbsrtowcs, which are used in
3485           test/ncurses.c, and use wcstombs, mbstowcs instead if available,
3486           fixing build of ncursew for HPUX 11.00
3487
3488 20080830
3489         + fixes to make Ada95 demo_panels() example work.
3490         + modify Ada95 'rain' test program to accept keyboard commands like the
3491           C-version.
3492         + modify BeOS-specific ifdef's to build on Haiku (patch by Scott
3493           Mccreary).
3494         + add configure-check to see if the std namespace is legal for cerr
3495           and endl, to fix a build issue with Tru64.
3496         + consistently use NCURSES_BOOL in lib_gen.c
3497         + filter #line's from lib_gen.c
3498         + change delimiter in MKlib_gen.sh from '%' to '@', to avoid
3499           substitution by IBM xlc to '#' as part of its extensions to digraphs.
3500         + update config.guess, config.sub from
3501                 http://savannah.gnu.org/projects/config
3502           (caveat - its maintainer removed support for older Linux systems).
3503
3504 20080823
3505         + modify configure check for pthread library to work with OSF/1 5.1,
3506           which uses #define's to associate its header and library.
3507         + use pthread_mutexattr_init() for initializing pthread_mutexattr_t,
3508           makes threaded code work on HPUX 11.23
3509         + fix a bug in demo_menus in freeing menus (cf: 20080804).
3510         + modify configure script for the case where tic library is used (and
3511           possibly renamed) to remove its dependency upon ncurses/ncursew
3512           library (patch by Dr Werner Fink).
3513         + correct manpage for menu_fore() which gave wrong default for
3514           the attribute used to display a selected entry (report by Mike Gran).
3515         + add Eterm-256color, Eterm-88color and rxvt-88color (prompted by
3516           Debian #495815) -TD
3517
3518 20080816
3519         + add configure option --enable-weak-symbols to turn on new feature.
3520         + add configure-check for availability of weak symbols.
3521         + modify linkage with pthread library to use weak symbols so that
3522           applications not linked to that library will not use the mutexes,
3523           etc.  This relies on gcc, and may be platform-specific (patch by Dr
3524           Werner Fink).
3525         + add note to INSTALL to document limitation of renaming of tic library
3526           using the --with-ticlib configure option (report by Dr Werner Fink).
3527         + document (in manpage) why tputs does not detect I/O errors (prompted
3528           by comments by Samuel Thibault).
3529         + fix remaining warnings from Klocwork report.
3530
3531 20080804
3532         + modify _nc_panelhook() data to account for a permanent memory leak.
3533         + fix memory leaks in test/demo_menus
3534         + fix most warnings from Klocwork tool (report by Larry Zhou).
3535         + modify configure script CF_XOPEN_SOURCE macro to add case for
3536           "dragonfly" from xterm #236 changes.
3537         + modify configure script --with-hashed-db to let $LIBS override the
3538           search for the db library (prompted by report by Samson Pierre).
3539
3540 20080726
3541         + build-fixes for gcc 4.3.1 (changes to gnat "warnings", and C inlining
3542           thresholds).
3543
3544 20080713
3545         + build-fix (reports by Christian Ebert, Funda Wang).
3546
3547 20080712
3548         + compiler-warning fixes for Solaris.
3549
3550 20080705
3551         + use NCURSES_MOUSE_MASK() in definition of BUTTON_RELEASE(), etc., to
3552           make those work properly with the "--enable-ext-mouse" configuration
3553           (cf: 20050205).
3554         + improve documentation of build-cc options in INSTALL.
3555         + work-around a bug in gcc 4.2.4 on AIX, which does not pass the
3556           -static/-dynamic flags properly to linker, causing test/bs to
3557           not link.
3558
3559 20080628
3560         + correct some ifdef's needed for the broken-linker configuration.
3561         + make debugging library's $BAUDRATE feature work for termcap
3562           interface.
3563         + make $NCURSES_NO_PADDING feature work for termcap interface (prompted
3564           by comment on FreeBSD mailing list).
3565         + add screen.mlterm terminfo entry -TD
3566         + improve mlterm and mlterm+pcfkeys terminfo entries -TD
3567
3568 20080621
3569         + regenerated html documentation.
3570         + expand manpage description of parameters for form_driver() and
3571           menu_driver() (prompted by discussion with Adam Spragg).
3572         + add null-pointer checks for cur_term in baudrate() and
3573           def_shell_mode(), def_prog_mode()
3574         + fix some memory leaks in delscreen() and wide acs.
3575
3576 20080614
3577         + modify test/ditto.c to illustrate multi-threaded use_screen().
3578         + change CC_SHARED_OPTS from -KPIC to -xcode=pic32 for Solaris.
3579         + add "-shared" option to MK_SHARED_LIB for gcc on Solaris (report
3580           by Poor Yorick).
3581
3582 20080607
3583         + finish changes to wgetch(), making it switch as needed to the
3584           window's actual screen when calling wrefresh() and wgetnstr().  That
3585           allows wgetch() to get used concurrently in different threads with
3586           some minor restrictions, e.g., the application should not delete a
3587           window which is being used in a wgetch().
3588         + simplify mutex's, combining the window- and screen-mutex's.
3589
3590 20080531
3591         + modify wgetch() to use the screen which corresponds to its window
3592           parameter rather than relying on SP; some dependent functions still
3593           use SP internally.
3594         + factor out most use of SP in lib_mouse.c, using parameter.
3595         + add internal _nc_keyname(), replacing keyname() to associate with a
3596           particular SCREEN rather than the global SP.
3597         + add internal _nc_unctrl(), replacing unctrl() to associate with a
3598           particular SCREEN rather than the global SP.
3599         + add internal _nc_tracemouse(), replacing _tracemouse() to eliminate
3600           its associated global buffer _nc_globals.tracemse_buf now in SCREEN.
3601         + add internal _nc_tracechar(), replacing _tracechar() to use SCREEN in
3602           preference to the global _nc_globals.tracechr_buf buffer.
3603
3604 20080524
3605         + modify _nc_keypad() to make it switch temporarily as needed to the
3606           screen which must be updated.
3607         + wrap cur_term variable to help make _nc_keymap() thread-safe, and
3608           always set the screen's copy of this variable in set_curterm().
3609         + restore curs_set() state after endwin()/refresh() (report/patch
3610           Miroslav Lichvar)
3611
3612 20080517
3613         + modify configure script to note that --enable-ext-colors and
3614           --enable-ext-mouse are not experimental, but extensions from
3615           the ncurses ABI 5.
3616         + corrected manpage description of setcchar() (discussion with
3617           Emanuele Giaquinta).
3618         + fix for adding a non-spacing character at the beginning of a line
3619           (report/patch by Miroslav Lichvar).
3620
3621 20080503
3622         + modify screen.* terminfo entries using new screen+fkeys to fix
3623           overridden keys in screen.rxvt (Debian #478094) -TD
3624         + modify internal interfaces to reduce wgetch()'s dependency on the
3625           global SP.
3626         + simplify some loops with macros each_screen(), each_window() and
3627           each_ripoff().
3628
3629 20080426
3630         + continue modifying test/ditto.c toward making it demonstrate
3631           multithreaded use_screen(), using fifos to pass data between screens.
3632         + fix typo in form.3x (report by Mike Gran).
3633
3634 20080419
3635         + add screen.rxvt terminfo entry -TD
3636         + modify tic -f option to format spaces as \s to prevent them from
3637           being lost when that is read back in unformatted strings.
3638         + improve test/ditto.c, using a "talk"-style layout.
3639
3640 20080412
3641         + change test/ditto.c to use openpty() and xterm.
3642         + add locks for copywin(), dupwin(), overlap(), overlay() on their
3643           window parameters.
3644         + add locks for initscr() and newterm() on updates to the SCREEN
3645           pointer.
3646         + finish table in curs_thread.3x manpage.
3647
3648 20080405
3649         + begin table in curs_thread.3x manpage describing the scope of data
3650           used by each function (or symbol) for threading analysis.
3651         + add null-pointer checks to setsyx() and getsyx() (prompted by
3652           discussion by Martin v. Lowis and Jeroen Ruigrok van der Werven on
3653           python-dev2 mailing list).
3654
3655 20080329
3656         + add null-pointer checks in set_term() and delscreen().
3657         + move _nc_windows into _nc_globals, since windows can be pads, which
3658           are not associated with a particular screen.
3659         + change use_screen() to pass the SCREEN* parameter rather than
3660           stdscr to the callback function.
3661         + force libtool to use tag for 'CC' in case it does not detect this,
3662           e.g., on aix when using CC=powerpc-ibm-aix5.3.0.0-gcc
3663           (report/patch by Michael Haubenwallner).
3664         + override OBJEXT to "lo" when building with libtool, to work on
3665           platforms such as AIX where libtool may use a different suffix for
3666           the object files than ".o" (report/patch by Michael Haubenwallner).
3667         + add configure --with-pthread option, for building with the POSIX
3668           thread library.
3669
3670 20080322
3671         + fill in extended-color pair two more places in wbkgrndset() and
3672           waddch_nosync() (prompted by Sedeno's patch).
3673         + fill in extended-color pair in _nc_build_wch() to make colors work
3674           for wide-characters using extended-colors (patch by Alejandro R
3675           Sedeno).
3676         + add x/X toggles to ncurses.c C color test to test/demo
3677           wide-characters with extended-colors.
3678         + add a/A toggles to ncurses.c c/C color tests.
3679         + modify test/ditto.c to use use_screen().
3680         + finish modifying test/rain.c to demonstrate threads.
3681
3682 20080308
3683         + start modifying test/rain.c for threading demo.
3684         + modify test/ncurses.c to make 'f' test accept the f/F/b/F/</> toggles
3685           that the 'F' accepts.
3686         + modify test/worm.c to show trail in reverse-video when other threads
3687           are working concurrently.
3688         + fix a deadlock from improper nesting of mutexes for windowlist and
3689           window.
3690
3691 20080301
3692         + fixes from 20080223 resolved issue with mutexes; change to use
3693           recursive mutexes to fix memory leak in delwin() as called from
3694           _nc_free_and_exit().
3695
3696 20080223
3697         + fix a size-difference in _nc_globals which caused hanging of mutex
3698           lock/unlock when termlib was built separately.
3699
3700 20080216
3701         + avoid using nanosleep() in threaded configuration since that often
3702           is implemented to suspend the entire process.
3703
3704 20080209
3705         + update test programs to build/work with various UNIX curses for
3706           comparisons.  This was to reinvestigate statement in X/Open curses
3707           that insnstr and winsnstr perform wrapping.  None of the Unix-branded
3708           implementations do this, as noted in manpage (cf: 20040228).
3709
3710 20080203
3711         + modify _nc_setupscreen() to set the legacy-coding value the same
3712           for both narrow/wide models.  It had been set only for wide model,
3713           but is needed to make unctrl() work with locale in the narrow model.
3714         + improve waddch() and winsch() handling of EILSEQ from mbrtowc() by
3715           using unctrl() to display illegal bytes rather than trying to append
3716           further bytes to make up a valid sequence (reported by Andrey A
3717           Chernov).
3718         + modify unctrl() to check codes in 128-255 range versus isprint().
3719           If they are not printable, and locale was set, use a "M-" or "~"
3720           sequence.
3721
3722 20080126
3723         + improve threading in test/worm.c (wrap refresh calls, and KEY_RESIZE
3724           handling).  Now it hangs in napms(), no matter whether nanosleep()
3725           or poll() or select() are used on Linux.
3726
3727 20080119
3728         + fixes to build with --disable-ext-funcs
3729         + add manpage for use_window and use_screen.
3730         + add set_tabsize() and set_escdelay() functions.
3731
3732 20080112
3733         + remove recursive-mutex definitions, finish threading demo for worm.c
3734         + remove a redundant adjustment of lines in resizeterm.c's
3735           adjust_window() which caused occasional misadjustment of stdscr when
3736           softkeys were used.
3737
3738 20080105
3739         + several improvements to terminfo entries based on xterm #230 -TD
3740         + modify MKlib_gen.sh to handle keyname/key_name prototypes, so the
3741           "link_test" builds properly.
3742         + fix for toe command-line options -u/-U to ensure filename is given.
3743         + fix allocation-size for command-line parsing in infocmp from 20070728
3744           (report by Miroslav Lichvar)
3745         + improve resizeterm() by moving ripped-off lines, and repainting the
3746           soft-keys (report by Katarina Machalkova)
3747         + add clarification in wclear's manpage noting that the screen will be
3748           cleared even if a subwindow is cleared (prompted by Christer Enfors
3749           question).
3750         + change test/ncurses.c soft-key tests to work with KEY_RESIZE.
3751
3752 20071222
3753         + continue implementing support for threading demo by adding mutex
3754           for delwin().
3755
3756 20071215
3757         + add several functions to C++ binding which wrap C functions that
3758           pass a WINDOW* parameter (request by Chris Lee).
3759
3760 20071201
3761         + add note about configure options needed for Berkeley database to the
3762           INSTALL file.
3763         + improve checks for version of Berkeley database libraries.
3764         + amend fix for rpath to not modify LDFLAGS if the platform has no
3765           applicable transformation (report by Christian Ebert, cf: 20071124).
3766
3767 20071124
3768         + modify configure option --with-hashed-db to accept a parameter which
3769           is the install-prefix of a given Berkeley Database (prompted by
3770           pierre4d2 comments).
3771         + rewrite wrapper for wcrtomb(), making it work on Solaris.  This is
3772           used in the form library to determine the length of the buffer needed
3773           by field_buffer (report by Alfred Fung).
3774         + remove unneeded window-parameter from C++ binding for wresize (report
3775           by Chris Lee).
3776
3777 20071117
3778         + modify the support for filesystems which do not support mixed-case to
3779           generate 2-character (hexadecimal) codes for the lower-level of the
3780           filesystem terminfo database (request by Michail Vidiassov).
3781         + add configure option --enable-mixed-case, to allow overriding the
3782           configure script's check if the filesystem supports mixed-case
3783           filenames.
3784         + add wresize() to C++ binding (request by Chris Lee).
3785         + define NCURSES_EXT_FUNCS and NCURSES_EXT_COLORS in curses.h to make
3786           it simpler to tell if the extended functions and/or colors are
3787           declared.
3788
3789 20071103
3790         + update memory-leak checks for changes to names.c and codes.c
3791         + correct acsc strings in h19, z100 (patch by Benjamin C W Sittler).
3792
3793 20071020
3794         + continue implementing support for threading demo by adding mutex
3795           for use_window().
3796         + add mrxvt terminfo entry, add/fix xterm building blocks for modified
3797           cursor keys -TD
3798         + compile with FreeBSD "contemporary" TTY interface (patch by
3799           Rong-En Fan).
3800
3801 20071013
3802         + modify makefile rules to allow clear, tput and tset to be built
3803           without libtic.  The other programs (infocmp, tic and toe) rely on
3804           that library.
3805         + add/modify null-pointer checks in several functions for SP and/or
3806           the WINDOW* parameter (report by Thorben Krueger).
3807         + fixes for field_buffer() in formw library (see Redhat #310071,
3808           patches by Miroslav Lichvar).
3809         + improve performance of NCURSES_CHAR_EQ code (patch by Miroslav
3810           Lichvar).
3811         + update/improve mlterm and rxvt terminfo entries, e.g., for
3812           the modified cursor- and keypad-keys -TD
3813
3814 20071006
3815         + add code to curses.priv.h ifdef'd with NCURSES_CHAR_EQ, which
3816           changes the CharEq() macro to an inline function to allow comparing
3817           cchar_t struct's without comparing gaps in a possibly unpacked
3818           memory layout (report by Miroslav Lichvar).
3819
3820 20070929
3821         + add new functions to lib_trace.c to setup mutex's for the _tracef()
3822           calls within the ncurses library.
3823         + for the reentrant model, move _nc_tputs_trace and _nc_outchars into
3824           the SCREEN.
3825         + start modifying test/worm.c to provide threading demo (incomplete).
3826         + separated ifdef's for some BSD-related symbols in tset.c, to make
3827           it compile on LynxOS (report by Greg Gemmer).
3828 20070915
3829         + modify Ada95/gen/Makefile to use shlib script, to simplify building
3830           shared-library configuration on platforms lacking rpath support.
3831         + build-fix for Ada95/src/Makefile to reflect changed dependency for
3832           the terminal-interface-curses-aux.adb file which is now generated.
3833         + restructuring test/worm.c, for use_window() example.
3834
3835 20070908
3836         + add use_window() and use_screen() functions, to develop into support
3837           for threaded library (incomplete).
3838         + fix typos in man/curs_opaque.3x which kept the install script from
3839           creating symbolic links to two aliases created in 20070818 (report by
3840           Rong-En Fan).
3841
3842 20070901
3843         + remove a spurious newline from output of html.m4, which caused links
3844           for Ada95 html to be incorrect for the files generated using m4.
3845         + start investigating mutex's for SCREEN manipulation (incomplete).
3846         + minor cleanup of codes.c/names.c for --enable-const
3847         + expand/revise "Routine and Argument Names" section of ncurses manpage
3848           to address report by David Givens in newsgroup discussion.
3849         + fix interaction between --without-progs/--with-termcap configure
3850           options (report by Michail Vidiassov).
3851         + fix typo in "--disable-relink" option (report by Michail Vidiassov).
3852
3853 20070825
3854         + fix a sign-extension bug in infocmp's repair_acsc() function
3855           (cf: 971004).
3856         + fix old configure script bug which prevented "--disable-warnings"
3857           option from working (patch by Mike Frysinger).
3858
3859 20070818
3860         + add 9term terminal description (request by Juhapekka Tolvanen) -TD
3861         + modify comp_hash.c's string output to avoid misinterpreting a null
3862           "\0" followed by a digit.
3863         + modify MKnames.awk and MKcodes.awk to support big-strings.
3864           This only applies to the cases (broken linker, reentrant) where
3865           the corresponding arrays are accessed via wrapper functions.
3866         + split MKnames.awk into two scripts, eliminating the shell redirection
3867           which complicated the make process and also the bogus timestamp file
3868           which was introduced to fix "make -j".
3869         + add test/test_opaque.c, test/test_arrays.c
3870         + add wgetscrreg() and wgetparent() for applications that may need it
3871           when NCURSES_OPAQUE is defined (prompted by Bryan Christ).
3872
3873 20070812
3874         + amend treatment of infocmp "-r" option to retain the 1023-byte limit
3875           unless "-T" is given (cf: 981017).
3876         + modify comp_captab.c generation to use big-strings.
3877         + make _nc_capalias_table and _nc_infoalias_table private accessed via
3878           _nc_get_alias_table() since the tables are used only within the tic
3879           library.
3880         + modify configure script to skip Intel compiler in CF_C_INLINE.
3881         + make _nc_info_hash_table and _nc_cap_hash_table private accessed via
3882           _nc_get_hash_table() since the tables are used only within the tic
3883           library.
3884
3885 20070728
3886         + make _nc_capalias_table and _nc_infoalias_table private, accessed via
3887           _nc_get_alias_table() since they are used only by parse_entry.c
3888         + make _nc_key_names private since it is used only by lib_keyname.c
3889         + add --disable-big-strings configure option to control whether
3890           unctrl.c is generated using the big-string optimization - which may
3891           use strings longer than supported by a given compiler.
3892         + reduce relocation tables for tic, infocmp by changing type of
3893           internal hash tables to short, and make those private symbols.
3894         + eliminate large fixed arrays from progs/infocmp.c
3895
3896 20070721
3897         + change winnstr() to stop at the end of the line (cf: 970315).
3898         + add test/test_get_wstr.c
3899         + add test/test_getstr.c
3900         + add test/test_inwstr.c
3901         + add test/test_instr.c
3902
3903 20070716
3904         + restore a call to obtain screen-size in _nc_setupterm(), which
3905           is used in tput and other non-screen applications via setupterm()
3906           (Debian #433357, reported by Florent Bayle, Christian Ohm,
3907           cf: 20070310).
3908
3909 20070714
3910         + add test/savescreen.c test-program
3911         + add check to trace-file open, if the given name is a directory, add
3912           ".log" to the name and try again.
3913         + add konsole-256color entry -TD
3914         + add extra gcc warning options from xterm.
3915         + minor fixes for ncurses/hashmap test-program.
3916         + modify configure script to quiet c++ build with libtool when the
3917           --disable-echo option is used.
3918         + modify configure script to disable ada95 if libtool is selected,
3919           writing a warning message (addresses FreeBSD #114493).
3920         + update config.guess, config.sub
3921
3922 20070707
3923         + add continuous-move "M" to demo_panels to help test refresh changes.
3924         + improve fix for refresh of window on top of multi-column characters,
3925           taking into account some split characters on left/right window
3926           boundaries.
3927
3928 20070630
3929         + add "widec" row to _tracedump() output to help diagnose remaining
3930           problems with multi-column characters.
3931         + partial fix for refresh of window on top of multi-column characters
3932           which are partly overwritten (report by Sadrul H Chowdhury).
3933         + ignore A_CHARTEXT bits in vidattr() and vid_attr(), in case
3934           multi-column extension bits are passed there.
3935         + add setlocale() call to demo_panels.c, needed for wide-characters.
3936         + add some output flags to _nc_trace_ttymode to help diagnose a bug
3937           report by Larry Virden, i.e., ONLCR, OCRNL, ONOCR and ONLRET,
3938
3939 20070623
3940         + add test/demo_panels.c
3941         + implement opaque version of setsyx() and getsyx().
3942
3943 20070612
3944         + corrected xterm+pcf2 terminfo modifiers for F1-F4, to match xterm
3945           #226 -TD
3946         + split-out key_name() from MKkeyname.awk since it now depends upon
3947           wunctrl() which is not in libtinfo (report by Rong-En Fan).
3948
3949 20070609
3950         + add test/key_name.c
3951         + add stdscr cases to test/inchs.c and test/inch_wide.c
3952         + update test/configure
3953         + correct formatting of DEL (0x7f) in _nc_vischar().
3954         + null-terminate result of wunctrl().
3955         + add null-pointer check in key_name() (report by Andreas Krennmair,
3956           cf: 20020901).
3957
3958 20070602
3959         + adapt mouse-handling code from menu library in form-library
3960           (discussion with Clive Nicolson).
3961         + add a modification of test/dots.c, i.e., test/dots_mvcur.c to
3962           illustrate how to use mvcur().
3963         + modify wide-character flavor of SetAttr() to preserve the
3964           WidecExt() value stored in the .attr field, e.g., in case it
3965           is overwritten by chgat (report by Aleksi Torhamo).
3966         + correct buffer-size for _nc_viswbuf2n() (report by Aleksi Torhamo).
3967         + build-fixes for Solaris 2.6 and 2.7 (patch by Peter O'Gorman).
3968
3969 20070526
3970         + modify keyname() to use "^X" form only if meta() has been called, or
3971           if keyname() is called without initializing curses, e.g., via
3972           initscr() or newterm() (prompted by LinuxBase #1604).
3973         + document some portability issues in man/curs_util.3x
3974         + add a shadow copy of TTY buffer to _nc_prescreen to fix applications
3975           broken by moving that data into SCREEN (cf: 20061230).
3976
3977 20070512
3978         + add 'O' (wide-character panel test) in ncurses.c to demonstrate a
3979           problem reported by Sadrul H Chowdhury with repainting parts of
3980           a fullwidth cell.
3981         + modify slk_init() so that if there are preceding calls to
3982           ripoffline(), those affect the available lines for soft-keys (adapted
3983           from patch by Clive Nicolson).
3984         + document some portability issues in man/curs_getyx.3x
3985
3986 20070505
3987         + fix a bug in Ada95/samples/ncurses which caused a variable to
3988           become uninitialized in the "b" test.
3989         + fix Ada95/gen/Makefile.in adahtml rule to account for recent
3990           movement of files, fix a few incorrect manpage references in the
3991           generated html.
3992         + add Ada95 binding to _nc_freeall() as Curses_Free_All to help with
3993           memory-checking.
3994         + correct some functions in Ada95 binding which were using return value
3995           from C where none was returned:  idcok(), immedok() and wtimeout().
3996         + amend recent changes for Ada95 binding to make it build with
3997           Cygwin's linker, e.g., with configure options
3998                 --enable-broken-linker --with-ticlib
3999
4000 20070428
4001         + add a configure check for gcc's options for inlining, use that to
4002           quiet a warning message where gcc's default behavior changed from
4003           3.x to 4.x.
4004         + improve warning message when checking if GPM is linked to curses
4005           library by not warning if its use of "wgetch" is via a weak symbol.
4006         + add loader options when building with static libraries to ensure that
4007           an installed shared library for ncurses does not conflict.  This is
4008           reported as problem with Tru64, but could affect other platforms
4009           (report Martin Mokrejs, analysis by Tim Mooney).
4010         + fix build on cygwin after recent ticlib/termlib changes, i.e.,
4011           + adjust TINFO_SUFFIX value to work with cygwin's dll naming
4012           + revert a change from 20070303 which commented out dependency of
4013             SHLIB_LIST in form/menu/panel/c++ libraries.
4014         + fix initialization of ripoff stack pointer (cf: 20070421).
4015
4016 20070421
4017         + move most static variables into structures _nc_globals and
4018           _nc_prescreen, to simplify storage.
4019         + add/use configure script macro CF_SIG_ATOMIC_T, use the corresponding
4020           type for data manipulated by signal handlers (prompted by comments
4021           in mailing.openbsd.bugs newsgroup).
4022         + modify CF_WITH_LIBTOOL to allow one to pass options such as -static
4023           to the libtool create- and link-operations.
4024
4025 20070414
4026         + fix whitespace in curs_opaque.3x which caused a spurious ';' in
4027           the installed aliases (report by Peter Santoro).
4028         + fix configure script to not try to generate adacurses-config when
4029           Ada95 tree is not built.
4030
4031 20070407
4032         + add man/curs_legacy.3x, man/curs_opaque.3x
4033         + fix acs_map binding for Ada95 when --enable-reentrant is used.
4034         + add adacurses-config to the Ada95 install, based on version from
4035           FreeBSD port, in turn by Juergen Pfeifer in 2000 (prompted by
4036           comment on comp.lang.ada newsgroup).
4037         + fix includes in c++ binding to build with Intel compiler
4038           (cf: 20061209).
4039         + update install rule in Ada95 to use mkdirs.sh
4040         > other fixes prompted by inspection for Coverity report:
4041         + modify ifdef's for c++ binding to use try/catch/throw statements
4042         + add a null-pointer check in tack/ansi.c request_cfss()
4043         + fix a memory leak in ncurses/base/wresize.c
4044         + corrected check for valid memu/meml capabilities in
4045           progs/dump_entry.c when handling V_HPUX case.
4046         > fixes based on Coverity report:
4047         + remove dead code in test/bs.c
4048         + remove dead code in test/demo_defkey.c
4049         + remove an unused assignment in progs/infocmp.c
4050         + fix a limit check in tack/ansi.c tools_charset()
4051         + fix tack/ansi.c tools_status() to perform the VT320/VT420
4052           tests in request_cfss().  The function had exited too soon.
4053         + fix a memory leak in tic.c's make_namelist()
4054         + fix a couple of places in tack/output.c which did not check for EOF.
4055         + fix a loop-condition in test/bs.c
4056         + add index checks in lib_color.c for color palettes
4057         + add index checks in progs/dump_entry.c for version_filter() handling
4058           of V_BSD case.
4059         + fix a possible null-pointer dereference in copywin()
4060         + fix a possible null-pointer dereference in waddchnstr()
4061         + add a null-pointer check in _nc_expand_try()
4062         + add a null-pointer check in tic.c's make_namelist()
4063         + add a null-pointer check in _nc_expand_try()
4064         + add null-pointer checks in test/cardfile.c
4065         + fix a double-free in ncurses/tinfo/trim_sgr0.c
4066         + fix a double-free in ncurses/base/wresize.c
4067         + add try/catch block to c++/cursesmain.cc
4068
4069 20070331
4070         + modify Ada95 binding to build with --enable-reentrant by wrapping
4071           global variables (bug: acs_map does not yet work).
4072         + modify Ada95 binding to use the new access-functions, allowing it
4073           to build/run when NCURSES_OPAQUE is set.
4074         + add access-functions and macros to return properties of the WINDOW
4075           structure, e.g., when NCURSES_OPAQUE is set.
4076         + improved install-sh's quoting.
4077         + use mkdirs.sh rather than mkinstalldirs, e.g., to use fixes from
4078           other programs.
4079
4080 20070324
4081         + eliminate part of the direct use of WINDOW data from Ada95 interface.
4082         + fix substitutions for termlib filename to make configure option
4083           --enable-reentrant work with --with-termlib.
4084         + change a constructor for NCursesWindow to allow compiling with
4085           NCURSES_OPAQUE set, since we cannot pass a reference to
4086           an opaque pointer.
4087
4088 20070317
4089         + ignore --with-chtype=unsigned since unsigned is always added to
4090           the type in curses.h; do the same for --with-mmask-t.
4091         + change warning regarding --enable-ext-colors and wide-character
4092           in the configure script to an error.
4093         + tweak error message in CF_WITH_LIBTOOL to distinguish other programs
4094           such as Darwin's libtool program (report by Michail Vidiassov)
4095         + modify edit_man.sh to allow for multiple substitutions per line.
4096         + set locale in misc/ncurses-config.in since it uses a range
4097         + change permissions libncurses++.a install (report by Michail
4098           Vidiassov).
4099         + corrected length of temporary buffer in wide-character version
4100           of set_field_buffer() (related to report by Bryan Christ).
4101
4102 20070311
4103         + fix mk-1st.awk script install_shlib() function, broken in 20070224
4104           changes for cygwin (report by  Michail Vidiassov).
4105
4106 20070310
4107         + increase size of array in _nc_visbuf2n() to make "tic -v" work
4108           properly in its similar_sgr() function (report/analysis by Peter
4109           Santoro).
4110         + add --enable-reentrant configure option for ongoing changes to
4111           implement a reentrant version of ncurses:
4112           + libraries are suffixed with "t"
4113           + wrap several global variables (curscr, newscr, stdscr, ttytype,
4114             COLORS, COLOR_PAIRS, COLS, ESCDELAY, LINES and TABSIZE) as
4115             functions returning values stored in SCREEN or cur_term.
4116           + move some initialization (LINES, COLS) from lib_setup.c,
4117             i.e., setupterm() to _nc_setupscreen(), i.e., newterm().
4118
4119 20070303
4120         + regenerated html documentation.
4121         + add NCURSES_OPAQUE symbol to curses.h, will use to make structs
4122           opaque in selected configurations.
4123         + move the chunk in lib_acs.c which resets acs capabilities when
4124           running on a terminal whose locale interferes with those into
4125           _nc_setupscreen(), so the libtinfo/libtinfow files can be made
4126           identical (requested by Miroslav Lichvar).
4127         + do not use configure variable SHLIB_LIBS for building libraries
4128           outside the ncurses directory, since that symbol is customized
4129           only for that directory, and using it introduces an unneeded
4130           dependency on libdl (requested by Miroslav Lichvar).
4131         + modify mk-1st.awk so the generated makefile rules for linking or
4132           installing shared libraries do not first remove the library, in
4133           case it is in use, e.g., libncurses.so by /bin/sh (report by Jeff
4134           Chua).
4135         + revised section "Using NCURSES under XTERM" in ncurses-intro.html
4136           (prompted by newsgroup comment by Nick Guenther).
4137
4138 20070224
4139         + change internal return codes of _nc_wgetch() to check for cases
4140           where KEY_CODE_YES should be returned, e.g., if a KEY_RESIZE was
4141           ungetch'd, and read by wget_wch().
4142         + fix static-library build broken in 20070217 changes to remove "-ldl"
4143           (report by Miroslav Lichvar).
4144         + change makefile/scripts for cygwin to allow building termlib.
4145         + use Form_Hook in manpages to match form.h
4146         + use Menu_Hook in manpages, as well as a few places in menu.h
4147         + correct form- and menu-manpages to use specific Field_Options,
4148           Menu_Options and Item_Options types.
4149         + correct prototype for _tracechar() in manpage (cf: 20011229).
4150         + correct prototype for wunctrl() in manpage.
4151
4152 20070217
4153         + fixes for $(TICS_LIST) in ncurses/Makefile (report by Miroslav
4154           Lichvar).
4155         + modify relinking of shared libraries to apply only when rpath is
4156           enabled, and add --disable-relink option which can be used to
4157           disable the feature altogether (reports by Michail Vidiassov,
4158           Adam J Richter).
4159         + fix --with-termlib option for wide-character configuration, stripping
4160           the "w" suffix in one place (report by Miroslav Lichvar).
4161         + remove "-ldl" from some library lists to reduce dependencies in
4162           programs (report by Miroslav Lichvar).
4163         + correct description of --enable-signed-char in configure --help
4164           (report by Michail Vidiassov).
4165         + add pattern for GNU/kFreeBSD configuration to CF_XOPEN_SOURCE,
4166           which matches an earlier change to CF_SHARED_OPTS, from xterm #224
4167           fixes.
4168         + remove "${DESTDIR}" from -install_name option used for linking
4169           shared libraries on Darwin (report by Michail Vidiassov).
4170
4171 20070210
4172         + add test/inchs.c, test/inch_wide.c, to test win_wchnstr().
4173         + remove libdl from library list for termlib (report by Miroslav
4174           Lichvar).
4175         + fix configure.in to allow --without-progs --with-termlib (patch by
4176           Miroslav Lichvar).
4177         + modify win_wchnstr() to ensure that only a base cell is returned
4178           for each multi-column character (prompted by report by Wei Kong
4179           regarding change in mvwin_wch() cf: 20041023).
4180
4181 20070203
4182         + modify fix_wchnstr() in form library to strip attributes (and color)
4183           from the cchar_t array (field cells) read from a field's window.
4184           Otherwise, when copying the field cells back to the window, the
4185           associated color overrides the field's background color (report by
4186           Ricardo Cantu).
4187         + improve tracing for form library, showing created forms, fields, etc.
4188         + ignore --enable-rpath configure option if --with-shared was omitted.
4189         + add _nc_leaks_tinfo(), _nc_free_tic(), _nc_free_tinfo() entrypoints
4190           to allow leak-checking when both tic- and tinfo-libraries are built.
4191         + drop CF_CPP_VSCAN_FUNC macro from configure script, since C++ binding
4192           no longer relies on it.
4193         + disallow combining configure script options --with-ticlib and
4194           --enable-termcap (report by Rong-En Fan).
4195         + remove tack from ncurses tree.
4196
4197 20070128
4198         + fix typo in configure script that broke --with-termlib option
4199           (report by Rong-En Fan).
4200
4201 20070127
4202         + improve fix for FreeBSD gnu/98975, to allow for null pointer passed
4203           to tgetent() (report by Rong-en Fan).
4204         + update tack/HISTORY and tack/README to tell how to build it after
4205           it is removed from the ncurses tree.
4206         + fix configure check for libtool's version to trim blank lines
4207           (report by sci-fi@hush.ai).
4208         + review/eliminate other original-file artifacts in cursesw.cc, making
4209           its license consistent with ncurses.
4210         + use ncurses vw_scanw() rather than reading into a fixed buffer in
4211           the c++ binding for scanw() methods (prompted by report by Nuno Dias).
4212         + eliminate fixed-buffer vsprintf() calls in c++ binding.
4213
4214 20070120
4215         + add _nc_leaks_tic() to separate leak-checking of tic library from
4216           term/ncurses libraries, and thereby eliminate a library dependency.
4217         + fix test/mk-test.awk to ignore blank lines.
4218         + correct paths in include/headers, for --srcdir (patch by Miroslav
4219           Lichvar).
4220
4221 20070113
4222         + add a break-statement in misc/shlib to ensure that it exits on the
4223           _first_ matched directory (report by Paul Novak).
4224         + add tack/configure, which can be used to build tack outside the
4225           ncurses build-tree.
4226         + add --with-ticlib option, to build/install the tic-support functions
4227           in a separate library (suggested by Miroslav Lichvar).
4228
4229 20070106
4230         + change MKunctrl.awk to reduce relocation table for unctrl.o
4231         + change MKkeyname.awk to reduce relocation table for keyname.o
4232           (patch by Miroslav Lichvar).
4233
4234 20061230
4235         + modify configure check for libtool's version to trim blank lines
4236           (report by sci-fi@hush.ai).
4237         + modify some modules to allow them to be reentrant if _REENTRANT is
4238           defined: lib_baudrate.c, resizeterm.c (local data only)
4239         + eliminate static data from some modules: add_tries.c, hardscroll.c,
4240           lib_ttyflags.c, lib_twait.c
4241         + improve manpage install to add aliases for the transformed program
4242           names, e.g., from --program-prefix.
4243         + used linklint to verify links in the HTML documentation, made fixes
4244           to manpages as needed.
4245         + fix a typo in curs_mouse.3x (report by William McBrine).
4246         + fix install-rule for ncurses5-config to make the bin-directory.
4247
4248 20061223
4249         + modify configure script to omit the tic (terminfo compiler) support
4250           from ncurses library if --without-progs option is given.
4251         + modify install rule for ncurses5-config to do this via "install.libs"
4252         + modify shared-library rules to allow FreeBSD 3.x to use rpath.
4253         + update config.guess, config.sub
4254
4255 20061217 5.6 release for upload to ftp.gnu.org
4256
4257 20061217
4258         + add ifdef's for <wctype.h> for HPUX, which has the corresponding
4259           definitions in <wchar.h>.
4260         + revert the va_copy() change from 20061202, since it was neither
4261           correct nor portable.
4262         + add $(LOCAL_LIBS) definition to progs/Makefile.in, needed for
4263           rpath on Solaris.
4264         + ignore wide-acs line-drawing characters that wcwidth() claims are
4265           not one-column.  This is a workaround for Solaris' broken locale
4266           support.
4267
4268 20061216
4269         + modify configure --with-gpm option to allow it to accept a parameter,
4270           i.e., the name of the dynamic GPM library to load via dlopen()
4271           (requested by Bryan Henderson).
4272         + add configure option --with-valgrind, changes from vile.
4273         + modify configure script AC_TRY_RUN and AC_TRY_LINK checks to use
4274           'return' in preference to 'exit()'.
4275
4276 20061209
4277         + change default for --with-develop back to "no".
4278         + add XTABS to tracing of TTY bits.
4279         + updated autoconf patch to ifdef-out the misfeature which declares
4280           exit() for configure tests.  This fixes a redefinition warning on
4281           Solaris.
4282         + use ${CC} rather than ${LD} in shared library rules for IRIX64,
4283           Solaris to help ensure that initialization sections are provided for
4284           extra linkage requirements, e.g., of C++ applications (prompted by
4285           comment by Casper Dik in newsgroup).
4286         + rename "$target" in CF_MAN_PAGES to make it easier to distinguish
4287           from the autoconf predefined symbol.  There was no conflict,
4288           since "$target" was used only in the generated edit_man.sh file,
4289           but SuSE's rpm package contains a patch.
4290
4291 20061202
4292         + update man/term.5 to reflect extended terminfo support and hashed
4293           database configuration.
4294         + updates for test/configure script.
4295         + adapted from SuSE rpm package:
4296           + remove long-obsolete workaround for broken-linker which declared
4297             cur_term in tic.c
4298           + improve error recovery in PUTC() macro when wcrtomb() does not
4299             return usable results for an 8-bit character.
4300         + patches from rpm package (SuSE):
4301           + use va_copy() in extra varargs manipulation for tracing version
4302             of printw, etc.
4303           + use a va_list rather than a null in _nc_freeall()'s call to
4304             _nc_printf_string().
4305         + add some see-also references in manpages to show related
4306           wide-character functions (suggested by Claus Fischer).
4307
4308 20061125
4309         + add a check in lib_color.c to ensure caller does not increase COLORS
4310           above max_colors, which is used as an array index (discussion with
4311           Simon Sasburg).
4312         + add ifdef's allowing ncurses to be built with tparm() using either
4313           varargs (the existing status), or using a fixed-parameter list (to
4314           match X/Open).
4315
4316 20061104
4317         + fix redrawing of windows other than stdscr using wredrawln() by
4318           touching the corresponding rows in curscr (discussion with Dan
4319           Gookin).
4320         + add test/redraw.c
4321         + add test/echochar.c
4322         + review/cleanup manpage descriptions of error-returns for form- and
4323           menu-libraries (prompted by FreeBSD docs/46196).
4324
4325 20061028
4326         + add AUTHORS file -TD
4327         + omit the -D options from output of the new config script --cflags
4328           option (suggested by Ralf S Engelschall).
4329         + make NCURSES_INLINE unconditionally defined in curses.h
4330
4331 20061021
4332         + revert change to accommodate bash 3.2, since that breaks other
4333           platforms, e.g., Solaris.
4334         + minor fixes to NEWS file to simplify scripting to obtain list of
4335           contributors.
4336         + improve some shared-library configure scripting for Linux, FreeBSD
4337           and NetBSD to make "--with-shlib-version" work.
4338         + change configure-script rules for FreeBSD shared libraries to allow
4339           for rpath support in versions past 3.
4340         + use $(DESTDIR) in makefile rules for installing/uninstalling the
4341           package config script (reports/patches by Christian Wiese,
4342           Ralf S Engelschall).
4343         + fix a warning in the configure script for NetBSD 2.0, working around
4344           spurious blanks embedded in its ${MAKEFLAGS} symbol.
4345         + change test/Makefile to simplify installing test programs in a
4346           different directory when --enable-rpath is used.
4347
4348 20061014
4349         + work around bug in bash 3.2 by adding extra quotes (Jim Gifford).
4350         + add/install a package config script, e.g., "ncurses5-config" or
4351           "ncursesw5-config", according to configuration options.
4352
4353 20061007
4354         + add several GNU Screen terminfo variations with 16- and 256-colors,
4355           and status line (Alain Bench).
4356         + change the way shared libraries (other than libtool) are installed.
4357           Rather than copying the build-tree's libraries, link the shared
4358           objects into the install directory.  This makes the --with-rpath
4359           option work except with $(DESTDIR) (cf: 20000930).
4360
4361 20060930
4362         + fix ifdef in c++/internal.h for QNX 6.1
4363         + test-compiled with (old) egcs-1.1.2, modified configure script to
4364           not unset the $CXX and related variables which would prevent this.
4365         + fix a few terminfo.src typos exposed by improvments to "-f" option.
4366         + improve infocmp/tic "-f" option formatting.
4367
4368 20060923
4369         + make --disable-largefile option work (report by Thomas M Ott).
4370         + updated html documentation.
4371         + add ka2, kb1, kb3, kc2 to vt220-keypad as an extension -TD
4372         + minor improvements to rxvt+pcfkeys -TD
4373
4374 20060916
4375         + move static data from lib_mouse.c into SCREEN struct.
4376         + improve ifdef's for _POSIX_VDISABLE in tset to work with Mac OS X
4377           (report by Michail Vidiassov).
4378         + modify CF_PATH_SYNTAX to ensure it uses the result from --prefix
4379           option (from lynx changes) -TD
4380         + adapt AC_PROG_EGREP check, noting that this is likely to be another
4381           place aggravated by POSIXLY_CORRECT.
4382         + modify configure check for awk to ensure that it is found (prompted
4383           by report by Christopher Parker).
4384         + update config.sub
4385
4386 20060909
4387         + add kon, kon2 and jfbterm terminfo entry (request by Till Maas) -TD
4388         + remove invis capability from klone+sgr, mainly used by linux entry,
4389           since it does not really do this -TD
4390
4391 20060903
4392         + correct logic in wadd_wch() and wecho_wch(), which did not guard
4393           against passing the multi-column attribute into a call on waddch(),
4394           e.g., using data returned by win_wch() (cf: 20041023)
4395           (report by Sadrul H Chowdhury).
4396
4397 20060902
4398         + fix kterm's acsc string -TD
4399         + fix for change to tic/infocmp in 20060819 to ensure no blank is
4400           embedded into a termcap description.
4401         + workaround for 20050806 ifdef's change to allow visbuf.c to compile
4402           when using --with-termlib --with-trace options.
4403         + improve tgetstr() by making the return value point into the user's
4404           buffer, if provided (patch by Miroslav Lichvar (see Redhat #202480)).
4405         + correct libraries needed for foldkeys (report by Stanislav Ievlev)
4406
4407 20060826
4408         + add terminfo entries for xfce terminal (xfce) and multi gnome
4409           terminal (mgt) -TD
4410         + add test/foldkeys.c
4411
4412 20060819
4413         + modify tic and infocmp to avoid writing trailing blanks on terminfo
4414           source output (Debian #378783).
4415         + modify configure script to ensure that if the C compiler is used
4416           rather than the loader in making shared libraries, the $(CFLAGS)
4417           variable is also used (Redhat #199369).
4418         + port hashed-db code to db2 and db3.
4419         + fix a bug in tgetent() from 20060625 and 20060715 changes
4420           (patch/analysis by Miroslav Lichvar (see Redhat #202480)).
4421
4422 20060805
4423         + updated xterm function-keys terminfo to match xterm #216 -TD
4424         + add configure --with-hashed-db option (tested only with FreeBSD 6.0,
4425           e.g., the db 1.8.5 interface).
4426
4427 20060729
4428         + modify toe to access termcap data, e.g., via cgetent() functions,
4429           or as a text file if those are not available.
4430         + use _nc_basename() in tset to improve $SHELL check for csh/sh.
4431         + modify _nc_read_entry() and _nc_read_termcap_entry() so infocmp,
4432           can access termcap data when the terminfo database is disabled.
4433
4434 20060722
4435         + widen the test for xterm kmous a little to allow for other strings
4436           than \E[M, e.g., for xterm-sco functionality in xterm.
4437         + update xterm-related terminfo entries to match xterm patch #216 -TD
4438         + update config.guess, config.sub
4439
4440 20060715
4441         + fix for install-rule in Ada95 to add terminal_interface.ads
4442           and terminal_interface.ali (anonymous posting in comp.lang.ada).
4443         + correction to manpage for getcchar() (report by William McBrine).
4444         + add test/chgat.c
4445         + modify wchgat() to mark updated cells as changed so a refresh will
4446           repaint those cells (comments by Sadrul H Chowdhury and William
4447           McBrine).
4448         + split up dependency of names.c and codes.c in ncurses/Makefile to
4449           work with parallel make (report/analysis by Joseph S Myers).
4450         + suppress a warning message (which is ignored) for systems without
4451           an ldconfig program (patch by Justin Hibbits).
4452         + modify configure script --disable-symlinks option to allow one to
4453           disable symlink() in tic even when link() does not work (report by
4454           Nigel Horne).
4455         + modify MKfallback.sh to use tic -x when constructing fallback tables
4456           to allow extended capabilities to be retrieved from a fallback entry.
4457         + improve leak-checking logic in tgetent() from 20060625 to ensure that
4458           it does not free the current screen (report by Miroslav Lichvar).
4459
4460 20060708
4461         + add a check for _POSIX_VDISABLE in tset (NetBSD #33916).
4462         + correct _nc_free_entries() and related functions used for memory leak
4463           checking of tic.
4464
4465 20060701
4466         + revert a minor change for magic-cookie support from 20060513, which
4467           caused unexpected reset of attributes, e.g., when resizing test/view
4468           in color mode.
4469         + note in clear manpage that the program ignores command-line
4470           parameters (prompted by Debian #371855).
4471         + fixes to make lib_gen.c build properly with changes to the configure
4472           --disable-macros option and NCURSES_NOMACROS (cf:  20060527)
4473         + update/correct several terminfo entries -TD
4474         + add some notes regarding copyright to terminfo.src -TD
4475
4476 20060625
4477         + fixes to build Ada95 binding with gnat-4.1.0
4478         + modify read_termtype() so the term_names data is always allocated as
4479           part of the str_table, a better fix for a memory leak (cf: 20030809).
4480         + reduce memory leaks in repeated calls to tgetent() by remembering the
4481           last TERMINAL* value allocated to hold the corresponding data and
4482           freeing that if the tgetent() result buffer is the same as the
4483           previous call (report by "Matt" for FreeBSD gnu/98975).
4484         + modify tack to test extended capability function-key strings.
4485         + improved gnome terminfo entry (GenToo #122566).
4486         + improved xterm-256color terminfo entry (patch by Alain Bench).
4487
4488 20060617
4489         + fix two small memory leaks related to repeated tgetent() calls
4490           with TERM=screen (report by "Matt" for FreeBSD gnu/98975).
4491         + add --enable-signed-char to simplify Debian package.
4492         + reduce name-pollution in term.h by removing #define's for HAVE_xxx
4493           symbols.
4494         + correct typo in curs_terminfo.3x (Debian #369168).
4495
4496 20060603
4497         + enable the mouse in test/movewindow.c
4498         + improve a limit-check in frm_def.c (John Heasley).
4499         + minor copyright fixes.
4500         + change configure script to produce test/Makefile from data file.
4501
4502 20060527
4503         + add a configure option --enable-wgetch-events to enable
4504           NCURSES_WGETCH_EVENTS, and correct the associated loop-logic in
4505           lib_twait.c (report by Bernd Jendrissek).
4506         + remove include/nomacros.h from build, since the ifdef for
4507           NCURSES_NOMACROS makes that obsolete.
4508         + add entrypoints for some functions which were only provided as macros
4509           to make NCURSES_NOMACROS ifdef work properly:  getcurx(), getcury(),
4510           getbegx(), getbegy(), getmaxx(), getmaxy(), getparx() and getpary(),
4511           wgetbkgrnd().
4512         + provide ifdef for NCURSES_NOMACROS which suppresses most macro
4513           definitions from curses.h, i.e., where a macro is defined to override
4514           a function to improve performance.  Allowing a developer to suppress
4515           these definitions can simplify some application (discussion with
4516           Stanislav Ievlev).
4517         + improve description of memu/meml in terminfo manpage.
4518
4519 20060520
4520         + if msgr is false, reset video attributes when doing an automargin
4521           wrap to the next line.  This makes the ncurses 'k' test work properly
4522           for hpterm.
4523         + correct caching of keyname(), which was using only half of its table.
4524         + minor fixes to memory-leak checking.
4525         + make SCREEN._acs_map and SCREEN._screen_acs_map pointers rather than
4526           arrays, making ACS_LEN less visible to applications (suggested by
4527           Stanislav Ievlev).
4528         + move chunk in SCREEN ifdef'd for USE_WIDEC_SUPPORT to the end, so
4529           _screen_acs_map will have the same offset in both ncurses/ncursesw,
4530           making the corresponding tinfo/tinfow libraries binary-compatible
4531           (cf: 20041016, report by Stanislav Ievlev).
4532
4533 20060513
4534         + improve debug-tracing for EmitRange().
4535         + change default for --with-develop to "yes".  Add NCURSES_NO_HARD_TABS
4536           and NCURSES_NO_MAGIC_COOKIE environment variables to allow runtime
4537           suppression of the related hard-tabs and xmc-glitch features.
4538         + add ncurses version number to top-level manpages, e.g., ncurses, tic,
4539           infocmp, terminfo as well as form, menu, panel.
4540         + update config.guess, config.sub
4541         + modify ncurses.c to work around a bug in NetBSD 3.0 curses
4542           (field_buffer returning null for a valid field).  The 'r' test
4543           appears to not work with that configuration since the new_fieldtype()
4544           function is broken in that implementation.
4545
4546 20060506
4547         + add hpterm-color terminfo entry -TD
4548         + fixes to compile test-programs with HPUX 11.23
4549
4550 20060422
4551         + add copyright notices to files other than those that are generated,
4552           data or adapted from pdcurses (reports by William McBrine, David
4553           Taylor).
4554         + improve rendering on hpterm by not resetting attributes at the end
4555           of doupdate() if the terminal has the magic-cookie feature (report
4556           by Bernd Rieke).
4557         + add 256color variants of terminfo entries for programs which are
4558           reported to implement this feature -TD
4559
4560 20060416
4561         + fix typo in change to NewChar() macro from 20060311 changes, which
4562           broke tab-expansion (report by Frederic L W Meunier).
4563
4564 20060415
4565         + document -U option of tic and infocmp.
4566         + modify tic/infocmp to suppress smacs/rmacs when acsc is suppressed
4567           due to size limit, e.g., converting to termcap format.  Also
4568           suppress them if the output format does not contain acsc and it
4569           was not VT100-like, i.e., a one-one mapping (Novell #163715).
4570         + add configure check to ensure that SIGWINCH is defined on platforms
4571           such as OS X which exclude that when _XOPEN_SOURCE, etc., are
4572           defined (report by Nicholas Cole)
4573
4574 20060408
4575         + modify write_object() to not write coincidental extensions of an
4576           entry made due to it being referenced in a use= clause (report by
4577           Alain Bench).
4578         + another fix for infocmp -i option, which did not ensure that some
4579           escape sequences had comparable prefixes (report by Alain Bench).
4580
4581 20060401
4582         + improve discussion of init/reset in terminfo and tput manpages
4583           (report by Alain Bench).
4584         + use is3 string for a fallback of rs3 in the reset program; it was
4585           using is2 (report by Alain Bench).
4586         + correct logic for infocmp -i option, which did not account for
4587           multiple digits in a parameter (cf: 20040828) (report by Alain
4588           Bench).
4589         + move _nc_handle_sigwinch() to lib_setup.c to make --with-termlib
4590           option work after 20060114 changes (report by Arkadiusz Miskiewicz).
4591         + add copyright notices to test-programs as needed (report by William
4592           McBrine).
4593
4594 20060318
4595         + modify ncurses.c 'F' test to combine the wide-characters with color
4596           and/or video attributes.
4597         + modify test/ncurses to use CTL/Q or ESC consistently for exiting
4598           a test-screen (some commands used 'x' or 'q').
4599
4600 20060312
4601         + fix an off-by-one in the scrolling-region change (cf_ 20060311).
4602
4603 20060311
4604         + add checks in waddchnstr() and wadd_wchnstr() to stop copying when
4605           a null character is found (report by Igor Bogomazov).
4606         + modify progs/Makefile.in to make "tput init" work properly with
4607           cygwin, i.e., do not pass a ".exe" in the reference string used
4608           in check_aliases (report by Samuel Thibault).
4609         + add some checks to ensure current position is within scrolling
4610           region before scrolling on a new line (report by Dan Gookin).
4611         + change some NewChar() usage to static variables to work around
4612           stack garbage introduced when cchar_t is not packed (Redhat #182024).
4613
4614 20060225
4615         + workarounds to build test/movewindow with PDcurses 2.7.
4616         + fix for nsterm-16color entry (patch by Alain Bench).
4617         + correct a typo in infocmp manpage (Debian #354281).
4618
4619 20060218
4620         + add nsterm-16color entry -TD
4621         + updated mlterm terminfo entry -TD
4622         + remove 970913 feature for copying subwindows as they are moved in
4623           mvwin() (discussion with Bryan Christ).
4624         + modify test/demo_menus.c to demonstrate moving a menu (both the
4625           window and subwindow) using shifted cursor-keys.
4626         + start implementing recursive mvwin() in movewindow.c (incomplete).
4627         + add a fallback definition for GCC_PRINTFLIKE() in test.priv.h,
4628           for movewindow.c (report by William McBrine).
4629         + add help-message to test/movewindow.c
4630
4631 20060211
4632         + add test/movewindow.c, to test mvderwin().
4633         + fix ncurses soft-key test so color changes are shown immediately
4634           rather than delayed.
4635         + modify ncurses soft-key test to hide the keys when exiting the test
4636           screen.
4637         + fixes to build test programs with PDCurses 2.7, e.g., its headers
4638           rely on autoconf symbols, and it declares stubs for nonfunctional
4639           terminfo and termcap entrypoints.
4640
4641 20060204
4642         + improved test/configure to build test/ncurses on HPUX 11 using the
4643           vendor curses.
4644         + documented ALTERNATE CONFIGURATIONS in the ncurses manpage, for the
4645           benefit of developers who do not read INSTALL.
4646
4647 20060128
4648         + correct form library Window_To_Buffer() change (cf:  20040516), which
4649           should ignore the video attributes (report by Ricardo Cantu).
4650
4651 20060121
4652         + minor fixes to xmc-glitch experimental code:
4653           + suppress line-drawing
4654           + implement max_attributes
4655           tested with xterm.
4656         + minor fixes for the database iterator.
4657         + fix some buffer limits in c++ demo (comment by Falk Hueffner in
4658           Debian #348117).
4659
4660 20060114
4661         + add toe -a option, to show all databases.  This uses new private
4662           interfaces in the ncurses library for iterating through the list of
4663           databases.
4664         + fix toe from 20000909 changes which made it not look at
4665           $HOME/.terminfo
4666         + make toe's -v option parameter optional as per manpage.
4667         + improve SIGWINCH handling by postponing its effect during newterm(),
4668           etc., when allocating screens.
4669
4670 20060111
4671         + modify wgetnstr() to return KEY_RESIZE if a sigwinch occurs.  Use
4672           this in test/filter.c
4673         + fix an error in filter() modification which caused some applications
4674           to fail.
4675
4676 20060107
4677         + check if filter() was called when getting the screensize.  Keep it
4678           at 1 if so (based on Redhat #174498).
4679         + add extension nofilter().
4680         + refined the workaround for ACS mapping.
4681         + make ifdef's consistent in curses.h for the extended colors so the
4682           header file can be used for the normal curses library.  The header
4683           file installed for extended colors is a variation of the
4684           wide-character configuration (report by Frederic L W Meunier).
4685
4686 20051231
4687         + add a workaround to ACS mapping to allow applications such as
4688           test/blue.c to use the "PC ROM" characters by masking them with
4689           A_ALTCHARSET.  This worked up til 5.5, but was lost in the revision
4690           of legacy coding (report by Michael Deutschmann).
4691         + add a null-pointer check in the wide-character version of
4692           calculate_actual_width() (report by Victor Julien).
4693         + improve test/ncurses 'd' (color-edit) test by allowing the RGB
4694           values to be set independently (patch by William McBrine).
4695         + modify test/configure script to allow building test programs with
4696           PDCurses/X11.
4697         + modified test programs to allow some to work with NetBSD curses.
4698           Several do not because NetBSD curses implements a subset of X/Open
4699           curses, and also lacks much of SVr4 additions.  But it's enough for
4700           comparison.
4701         + update config.guess and config.sub
4702
4703 20051224
4704         + use BSD-specific fix for return-value from cgetent() from CVS where
4705           an unknown terminal type would be reportd as "database not found".
4706         + make tgetent() return code more readable using new symbols
4707           TGETENT_YES, etc.
4708         + remove references to non-existent "tctest" program.
4709         + remove TESTPROGS from progs/Makefile.in (it was referring to code
4710           that was never built in that directory).
4711         + typos in curs_addchstr.3x, some doc files (noticed in OpenBSD CVS).
4712
4713 20051217
4714         + add use_legacy_coding() function to support lynx's font-switching
4715           feature.
4716         + fix formatting in curs_termcap.3x (report by Mike Frysinger).
4717         + modify MKlib_gen.sh to change preprocessor-expanded _Bool back to
4718           bool.
4719
4720 20051210
4721         + extend test/ncurses.c 's' (overlay window) test to exercise overlay(),
4722           overwrite() and copywin() with different combinations of colors and
4723           attributes (including background color) to make it easy to see the
4724           effect of the different functions.
4725         + corrections to menu/m_global.c for wide-characters (report by
4726           Victor Julien).
4727
4728 20051203
4729         + add configure option --without-dlsym, allowing developers to
4730           configure GPM support without using dlsym() (discussion with Michael
4731           Setzer).
4732         + fix wins_nwstr(), which did not handle single-column non-8bit codes
4733           (Debian #341661).
4734
4735 20051126
4736         + move prototypes for wide-character trace functions from curses.tail
4737           to curses.wide to avoid accidental reference to those if
4738           _XOPEN_SOURCE_EXTENDED is defined without ensuring that <wchar.h> is
4739           included.
4740         + add/use NCURSES_INLINE definition.
4741         + change some internal functions to use int/unsigned rather than the
4742           short equivalents.
4743
4744 20051119
4745         + remove a redundant check in lib_color.c (Debian #335655).
4746         + use ld's -search_paths_first option on Darwin to work around odd
4747           search rules on that platform (report by Christian Gennerat, analysis
4748           by Andrea Govoni).
4749         + remove special case for Darwin in CF_XOPEN_SOURCE configure macro.
4750         + ignore EINTR in tcgetattr/tcsetattr calls (Debian #339518).
4751         + fix several bugs in test/bs.c (patch by Stephen Lindholm).
4752
4753 20051112
4754         + other minor fixes to cygwin based on tack -TD
4755         + correct smacs in cygwin (Debian #338234, report by Baurzhan
4756           Ismagulov, who noted that it was fixed in Cygwin).
4757
4758 20051029
4759         + add shifted up/down arrow codes to xterm-new as kind/kri strings -TD
4760         + modify wbkgrnd() to avoid clearing the A_CHARTEXT attribute bits
4761           since those record the state of multicolumn characters (Debian
4762           #316663).
4763         + modify werase to clear multicolumn characters that extend into
4764           a derived window (Debian #316663).
4765
4766 20051022
4767         + move assignment from environment variable ESCDELAY from initscr()
4768           down to newterm() so the environment variable affects timeouts for
4769           terminals opened with newterm() as well.
4770         + fix a memory leak in keyname().
4771         + add test/demo_altkeys.c
4772         + modify test/demo_defkey.c to exit from loop via 'q' to allow
4773           leak-checking, as well as fix a buffer size in winnstr() call.
4774
4775 20051015
4776         + correct order of use-clauses in rxvt-basic entry which made codes for
4777           f1-f4 vt100-style rather than vt220-style (report by Gabor Z Papp).
4778         + suppress configure check for gnatmake if Ada95/Makefile.in is not
4779           found.
4780         + correct a typo in configure --with-bool option for the case where
4781           --without-cxx is used (report by Daniel Jacobowitz).
4782         + add a note to INSTALL's discussion of --with-normal, pointing out
4783           that one may wish to use --without-gpm to ensure a completely
4784           static link (prompted by report by Felix von Leitner).
4785
4786 20051010 5.5 release for upload to ftp.gnu.org
4787
4788 20051008
4789         + document in demo_forms.c some portability issues.
4790
4791 20051001
4792         + document side-effect of werase() which sets the cursor position.
4793         + save/restore the current position in form field editing to make
4794           overlay mode work.
4795
4796 20050924
4797         + correct header dependencies in progs, allowing parallel make (report
4798           by Daniel Jacobowitz).
4799         + modify CF_BUILD_CC to ensure that pre-setting $BUILD_CC overrides
4800           the configure check for --with-build-cc (report by Daniel Jacobowitz).
4801         + modify CF_CFG_DEFAULTS to not use /usr as the default prefix for
4802           NetBSD.
4803         + update config.guess and config.sub from
4804                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
4805
4806 20050917
4807         + modify sed expression which computes path for /usr/lib/terminfo
4808           symbolic link in install to ensure that it does not change unexpected
4809           levels of the path (Gentoo #42336).
4810         + modify default for --disable-lp64 configure option to reduce impact
4811           on existing 64-bit builds.  Enabling the _LP64 option may change the
4812           size of chtype and mmask_t.  However, for ABI 6, it is enabled by
4813           default (report by Mike Frysinger).
4814         + add configure script check for --enable-ext-mouse, bump ABI to 6 by
4815           default if it is used.
4816         + improve configure script logic for bumping ABI to omit this if the
4817           --with-abi-version option was used.
4818         + update address for Free Software Foundation in tack's source.
4819         + correct wins_wch(), which was not marking the filler-cells of
4820           multi-column characters (cf:  20041023).
4821
4822 20050910
4823         + modify mouse initialization to ensure that Gpm_Open() is called only
4824           once.  Otherwise GPM gets confused in its initialization of signal
4825           handlers (Debian #326709).
4826
4827 20050903
4828         + modify logic for backspacing in a multiline form field to ensure that
4829           it works even when the preceding line is full (report by Frank van
4830           Vugt).
4831         + remove comment about BUGS section of ncurses manpage (Debian #325481)
4832
4833 20050827
4834         + document some workarounds for shared and libtool library
4835           configurations in INSTALL (see --with-shared and --with-libtool).
4836         + modify CF_GCC_VERSION and CF_GXX_VERSION macros to accommodate
4837           cross-compilers which emit the platform name in their version
4838           message, e.g.,
4839                 arm-sa1100-linux-gnu-g++ (GCC) 4.0.1
4840           (report by Frank van Vugt).
4841
4842 20050820
4843         + start updating documentation for upcoming 5.5 release.
4844         + fix to make libtool  and libtinfo work together again (cf: 20050122).
4845         + fixes to allow building traces into libtinfo
4846         + add debug trace to tic that shows if/how ncurses will write to the
4847           lower corner of a terminal's screen.
4848         + update llib-l* files.
4849
4850 20050813
4851         + modify initializers in c++ binding to build with old versions of g++.
4852         + improve special case for 20050115 repainting fix, ensuring that if
4853           the first changed cell is not a character that the range to be
4854           repainted is adjusted to start at a character's beginning (Debian
4855           #316663).
4856
4857 20050806
4858         + fixes to build on QNX 6.1
4859         + improve configure script checks for Intel 9.0 compiler.
4860         + remove #include's for libc.h (obsolete).
4861         + adjust ifdef's in curses.priv.h so that when cross-compiling to
4862           produce comp_hash and make_keys, no dependency on wchar.h is needed.
4863           That simplifies the build-cppflags (report by Frank van Vugt).
4864         + move modules related to key-binding into libtinfo to fix linkage
4865           problem caused by 20050430 changes to MKkeyname.sh (report by
4866           Konstantin Andreev).
4867
4868 20050723
4869         + updates/fixes for configure script macros from vile -TD
4870         + make prism9's sgr string agree with the rest of the terminfo -TD
4871         + make vt220's sgr0 string consistent with sgr string, do this for
4872           several related cases -TD
4873         + improve translation to termcap by filtering the 'me' (sgr0) strings
4874           as in the runtime call to tgetent() (prompted by a discussion with
4875           Thomas Klausner).
4876         + improve tic check for sgr0 versus sgr(0), to help ensure that sgr0
4877           resets line-drawing.
4878
4879 20050716
4880         + fix special cases for trimming sgr0 for hurd and vt220 (Debian
4881           #318621).
4882         + split-out _nc_trim_sgr0() from modifications made to tgetent(), to
4883           allow it to be used by tic to provide information about the runtime
4884           changes that would be made to sgr0 for termcap applications.
4885         + modify make_sed.sh to make the group-name in the NAME section of
4886           form/menu library manpage agree with the TITLE string when renaming
4887           is done for Debian (Debian #78866).
4888
4889 20050702
4890         + modify parameter type in c++ binding for insch() and mvwinsch() to
4891           be consistent with underlying ncurses library (was char, is chtype).
4892         + modify treatment of Intel compiler to allow _GNU_SOURCE to be defined
4893           on Linux.
4894         + improve configure check for nanosleep(), checking that it works since
4895           some older systems such as AIX 4.3 have a nonworking version.
4896
4897 20050625
4898         + update config.guess and config.sub from
4899                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
4900         + modify misc/shlib to work in test-directory.
4901         + suppress $suffix in misc/run_tic.sh when cross-compiling.  This
4902           allows cross-compiles to use the host's tic program to handle the
4903           "make install.data" step.
4904         + improve description of $LINES and $COLUMNS variables in manpages
4905           (prompted by report by Dave Ulrick).
4906         + improve description of cross-compiling in INSTALL
4907         + add NCURSES-Programming-HOWTO.html by Pradeep Padala
4908           (see http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/).
4909         + modify configure script to obtain soname for GPM library (discussion
4910           with Daniel Jacobowitz).
4911         + modify configure script so that --with-chtype option will still
4912           compute the unsigned literals suffix for constants in curses.h
4913           (report by Daniel Jacobowitz:
4914         + patches from Daniel Jacobowitz:
4915           + the man_db.renames entry for tack.1 was backwards.
4916           + tack.1 had some 1m's that should have been 1M's.
4917           + the section for curs_inwstr.3 was wrong.
4918
4919 20050619
4920         + correction to --with-chtype option (report by Daniel Jacobowitz).
4921
4922 20050618
4923         + move build-time edit_man.sh and edit_man.sed scripts to top directory
4924           to simplify reusing them for renaming tack's manpage (prompted by a
4925           review of Debian package).
4926         + revert minor optimization from 20041030 (Debian #313609).
4927         + libtool-specific fixes, tested with libtool 1.4.3, 1.5.0, 1.5.6,
4928           1.5.10 and 1.5.18 (all work except as noted previously for the c++
4929           install using libtool 1.5.0):
4930           + modify the clean-rule in c++/Makefile.in to work with IRIX64 make
4931             program.
4932           + use $(LIBTOOL_UNINSTALL) symbol, overlooked in 20030830
4933         + add configure options --with-chtype and --with-mmask-t, to allow
4934           overriding of the non-LP64 model's use of the corresponding types.
4935         + revise test for size of chtype (and mmask_t), which always returned
4936           "long" due to an uninitialized variable (report by Daniel Jacobowitz).
4937
4938 20050611
4939         + change _tracef's that used "%p" format for va_list values to ignore
4940           that, since on some platforms those are not pointers.
4941         + fixes for long-formats in printf's due to largefile support.
4942
4943 20050604
4944         + fixes for termcap support:
4945           + reset pointer to _nc_curr_token.tk_name when the input stream is
4946             closed, which could point to free memory (cf: 20030215).
4947           + delink TERMTYPE data which is used by the termcap reader, so that
4948             extended names data will be freed consistently.
4949           + free pointer to TERMTYPE data in _nc_free_termtype() rather than
4950             its callers.
4951           + add some entrypoints for freeing permanently allocated data via
4952             _nc_freeall() when NO_LEAKS is defined.
4953         + amend 20041030 change to _nc_do_color to ensure that optimization is
4954           applied only when the terminal supports back_color_erase (bce).
4955
4956 20050528
4957         + add sun-color terminfo entry -TD
4958         + correct a missing assignment in c++ binding's method
4959           NCursesPanel::UserPointer() from 20050409 changes.
4960         + improve configure check for large-files, adding check for dirent64
4961           from vile -TD
4962         + minor change to configure script to improve linker options for the
4963           Ada95 tree.
4964
4965 20050515
4966         + document error conditions for ncurses library functions (report by
4967           Stanislav Ievlev).
4968         + regenerated html documentation for ada binding.
4969           see ftp://invisible-island.net/ncurses/patches/gnathtml
4970
4971 20050507
4972         + regenerated html documentation for manpages.
4973         + add $(BUILD_EXEEXT) suffix to invocation of make_keys in
4974           ncurses/Makefile (Gentoo #89772).
4975         + modify c++/demo.cc to build with g++ -fno-implicit-templates option
4976           (patch by Mike Frysinger).
4977         + modify tic to filter out long extended names when translating to
4978           termcap format.  Only two characters are permissible for termcap
4979           capability names.
4980
4981 20050430
4982         + modify terminfo entries xterm-new and rxvt to add strings for
4983           shift-, control-cursor keys.
4984         + workaround to allow c++ binding to compile with g++ 2.95.3, which
4985           has a broken implementation of static_cast<> (patch by Jeff Chua).
4986         + modify initialization of key lookup table so that if an extended
4987           capability (tic -x) string is defined, and its name begins with 'k',
4988           it will automatically be treated as a key.
4989         + modify test/keynames.c to allow for the possibility of extended
4990           key names, e.g., via define_key(), or via "tic -x".
4991         + add test/demo_termcap.c to show the contents of given entry via the
4992           termcap interface.
4993
4994 20050423
4995         + minor fixes for vt100/vt52 entries -TD
4996         + add configure option --enable-largefile
4997         + corrected libraries used to build Ada95/gen/gen, found in testing
4998           gcc 4.0.0.
4999
5000 20050416
5001         + update config.guess, config.sub
5002         + modify configure script check for _XOPEN_SOURCE, disable that on
5003           Darwin whose header files have problems (patch by Chris Zubrzycki).
5004         + modify form library Is_Printable_String() to use iswprint() rather
5005           than wcwidth() for determining if a character is printable.  The
5006           latter caused it to reject menu items containing non-spacing
5007           characters.
5008         + modify ncurses test program's F-test to handle non-spacing characters
5009           by combining them with a reverse-video blank.
5010         + review/fix several gcc -Wconversion warnings.
5011
5012 20050409
5013         + correct an off-by-one error in m_driver() for mouse-clicks used to
5014           position the mouse to a particular item.
5015         + implement test/demo_menus.c
5016         + add some checks in lib_mouse to ensure SP is set.
5017         + modify C++ binding to make 20050403 changes work with the configure
5018           --enable-const option.
5019
5020 20050403
5021         + modify start_color() to return ERR if it cannot allocate memory.
5022         + address g++ compiler warnings in C++ binding by adding explicit
5023           member initialization, assignment operators and copy constructors.
5024           Most of the changes simply preserve the existing semantics of the
5025           binding, which can leak memory, etc., but by making these features
5026           visible, it provides a framework for improving the binding.
5027         + improve C++ binding using static_cast, etc.
5028         + modify configure script --enable-warnings to add options to g++ to
5029           correspond to the gcc --enable-warnings.
5030         + modify C++ binding to use some C internal functions to make it
5031           compile properly on Solaris (and other platforms).
5032
5033 20050327
5034         + amend change from 20050320 to limit it to configurations with a
5035           valid locale.
5036         + fix a bug introduced in 20050320 which broke the translation of
5037           nonprinting characters to uparrow form (report by Takahashi Tamotsu).
5038
5039 20050326
5040         + add ifdef's for _LP64 in curses.h to avoid using wasteful 64-bits for
5041           chtype and mmask_t, but add configure option --disable-lp64 in case
5042           anyone used that configuration.
5043         + update misc/shlib script to account for Mac OS X (report by Michail
5044           Vidiassov).
5045         + correct comparison for wrapping multibyte characters in
5046           waddch_literal() (report by Takahashi Tamotsu).
5047
5048 20050320
5049         + add -c and -w options to tset to allow user to suppress ncurses'
5050           resizing of the terminal emulator window in the special case where it
5051           is not able to detect the true size (report by Win Delvaux, Debian
5052           #300419).
5053         + modify waddch_nosync() to account for locale zn_CH.GBK, which uses
5054           codes 128-159 as part of multibyte characters (report by Wang
5055           WenRui, Debian #300512).
5056
5057 20050319
5058         + modify ncurses.c 'd' test to make it work with 88-color
5059           configuration, i.e., by implementing scrolling.
5060         + improve scrolling in ncurses.c 'c' and 'C' tests, e.g., for 88-color
5061           configuration.
5062
5063 20050312
5064         + change tracemunch to use strict checking.
5065         + modify ncurses.c 'p' test to test line-drawing within a pad.
5066         + implement environment variable NCURSES_NO_UTF8_ACS to support
5067           miscellaneous terminal emulators which ignore alternate character
5068           set escape sequences when in UTF-8 mode.
5069
5070 20050305
5071         + change NCursesWindow::err_handler() to a virtual function (request by
5072           Steve Beal).
5073         + modify fty_int.c and fty_num.c to handle wide characters (report by
5074           Wolfgang Gutjahr).
5075         + adapt fix for fty_alpha.c to fty_alnum.c, which also handled normal
5076           and wide characters inconsistently (report by Wolfgang Gutjahr).
5077         + update llib-* files to reflect internal interface additions/changes.
5078
5079 20050226
5080         + improve test/configure script, adding tests for _XOPEN_SOURCE, etc.,
5081           from lynx.
5082         + add aixterm-16color terminfo entry -TD
5083         + modified xterm-new terminfo entry to work with tgetent() changes -TD
5084         + extended changes in tgetent() from 20040710 to allow the substring of
5085           sgr0 which matches rmacs to be at the beginning of the sgr0 string
5086           (request by Thomas Wolff).  Wolff says the visual effect in
5087           combination with pre-20040710 ncurses is improved.
5088         + fix off-by-one in winnstr() call which caused form field validation
5089           of multibyte characters to ignore the last character in a field.
5090         + correct logic in winsch() for inserting multibyte strings; the code
5091           would clear cells after the insertion rather than push them to the
5092           right (cf: 20040228).
5093         + fix an inconsistency in Check_Alpha_Field() between normal and wide
5094           character logic (report by Wolfgang Gutjahr).
5095
5096 20050219
5097         + fix a bug in editing wide-characters in form library: deleting a
5098           nonwide character modified the previous wide-character.
5099         + update manpage to describe NCURSES_MOUSE_VERSION 2.
5100         + correct manpage description of mouseinterval() (Debian #280687).
5101         + add a note to default_colors.3x explaining why this extension was
5102           added (Debian #295083).
5103         + add traces to panel library.
5104
5105 20050212
5106         + improve editing of wide-characters in form library:  left/right
5107           cursor movement, and single-character deletions work properly.
5108         + disable GPM mouse support when $TERM happens to be prefixed with
5109           "xterm".  Gpm_Open() would otherwise assert that it can deal with
5110           mouse events in this case.
5111         + modify GPM mouse support so it closes the server connection when
5112           the caller disables the mouse (report by Stanislav Ievlev).
5113
5114 20050205
5115         + add traces for callback functions in form library.
5116         + add experimental configure option --enable-ext-mouse, which defines
5117           NCURSES_MOUSE_VERSION 2, and modifies the encoding of mouse events to
5118           support wheel mice, which may transmit buttons 4 and 5.  This works
5119           with xterm and similar X terminal emulators (prompted by question by
5120           Andreas Henningsson, this is also related to Debian #230990).
5121         + improve configure macros CF_XOPEN_SOURCE and CF_POSIX_C_SOURCE to
5122           avoid redefinition warnings on cygwin.
5123
5124 20050129
5125         + merge remaining development changes for extended colors (mostly
5126           complete, does not appear to break other configurations).
5127         + add xterm-88color.dat (part of extended colors testing).
5128         + improve _tracedump() handling of color pairs past 96.
5129         + modify return-value from start_color() to return OK if colors have
5130           already been started.
5131         + modify curs_color.3x list error conditions for init_pair(),
5132           pair_content() and color_content().
5133         + modify pair_content() to return -1 for consistency with init_pair()
5134           if it corresponds to the default-color.
5135         + change internal representation of default-color to allow application
5136           to use color number 255.  This does not affect the total number of
5137           color pairs which are allowed.
5138         + add a top-level tags rule.
5139
5140 20050122
5141         + add a null-pointer check in wgetch() in case it is called without
5142           first calling initscr().
5143         + add some null-pointer checks for SP, which is not set by libtinfo.
5144         + modify misc/shlib to ensure that absolute pathnames are used.
5145         + modify test/Makefile.in, etc., to link test programs only against the
5146           libraries needed, e.g., omit form/menu/panel library for the ones
5147           that are curses-specific.
5148         + change SP->_current_attr to a pointer, adjust ifdef's to ensure that
5149           libtinfo.so and libtinfow.so have the same ABI.  The reason for this
5150           is that the corresponding data which belongs to the upper-level
5151           ncurses library has a different size in each model (report by
5152           Stanislav Ievlev).
5153
5154 20050115
5155         + minor fixes to allow test-compiles with g++.
5156         + correct column value shown in tic's warnings, which did not account
5157           for leading whitespace.
5158         + add a check in _nc_trans_string() for improperly ended strings, i.e.,
5159           where a following line begins in column 1.
5160         + modify _nc_save_str() to return a null pointer on buffer overflow.
5161         + improve repainting while scrolling wide-character data (Eungkyu Song).
5162
5163 20050108
5164         + merge some development changes to extend color capabilities.
5165
5166 20050101
5167         + merge some development changes to extend color capabilities.
5168         + fix manpage typo (FreeBSD report docs/75544).
5169         + update config.guess, config.sub
5170         > patches for configure script (Albert Chin-A-Young):
5171         + improved fix to make mbstate_t recognized on HPUX 11i (cf:
5172           20030705), making vsscanf() prototype visible on IRIX64.  Tested for
5173           on HP-UX 11i, Solaris 7, 8, 9, AIX 4.3.3, 5.2, Tru64 UNIX 4.0D, 5.1,
5174           IRIX64 6.5, Redhat Linux 7.1, 9, and RHEL 2.1, 3.0.
5175         + print the result of the --disable-home-terminfo option.
5176         + use -rpath when compiling with SGI C compiler.
5177
5178 20041225
5179         + add trace calls to remaining public functions in form and menu
5180           libraries.
5181         + fix check for numeric digits in test/ncurses.c 'b' and 'B' tests.
5182         + fix typo in test/ncurses.c 'c' test from 20041218.
5183
5184 20041218
5185         + revise test/ncurses.c 'c' color test to improve use for xterm-88color
5186           and xterm-256color, added 'C' test using the wide-character color_set
5187           and attr_set functions.
5188
5189 20041211
5190         + modify configure script to work with Intel compiler.
5191         + fix an limit-check in wadd_wchnstr() which caused labels in the
5192           forms-demo to be one character short.
5193         + fix typo in curs_addchstr.3x (Jared Yanovich).
5194         + add trace calls to most functions in form and menu libraries.
5195         + update working-position for adding wide-characters when window is
5196           scrolled (prompted by related report by Eungkyu Song).
5197
5198 20041204
5199         + replace some references on Linux to wcrtomb() which use it to obtain
5200           the length of a multibyte string with _nc_wcrtomb, since wcrtomb() is
5201           broken in glibc (see Debian #284260).
5202         + corrected length-computation in wide-character support for
5203           field_buffer().
5204         + some fixes to frm_driver.c to allow it to accept multibyte input.
5205         + modify configure script to work with Intel 8.0 compiler.
5206
5207 20041127
5208         + amend change to setupterm() in 20030405 which would reuse the value
5209           of cur_term if the same output was selected.  This now reuses it only
5210           when setupterm() is called from tgetent(), which has no notion of
5211           separate SCREENs.  Note that tgetent() must be called after initscr()
5212           or newterm() to use this feature (Redhat #140326).
5213         + add a check in CF_BUILD_CC macro to ensure that developer has given
5214           the --with-build-cc option when cross-compiling (report by Alexandre
5215           Campo).
5216         + improved configure script checks for _XOPEN_SOURCE and
5217           _POSIX_C_SOURCE (fix for IRIX 5.3 from Georg Schwarz, _POSIX_C_SOURCE
5218           updates from lynx).
5219         + cosmetic fix to test/gdc.c to recolor the bottom edge of the box
5220           for consistency (comment by Dan Nelson).
5221
5222 20041120
5223         + update wsvt25 terminfo entry -TD
5224         + modify test/ins_wide.c to test all flavors of ins_wstr().
5225         + ignore filler-cells in wadd_wchnstr() when adding a cchar_t array
5226           which consists of multi-column characters, since this function
5227           constructs them (cf: 20041023).
5228         + modify winnstr() to return multibyte character strings for the
5229           wide-character configuration.
5230
5231 20041106
5232         + fixes to make slk_set() and slk_wset() accept and store multibyte
5233           or multicolumn characters.
5234
5235 20041030
5236         + improve color optimization a little by making _nc_do_color() check
5237           if the old/new pairs are equivalent to the default pair 0.
5238         + modify assume_default_colors() to not require that
5239           use_default_colors() be called first.
5240
5241 20041023
5242         + modify term_attrs() to use termattrs(), add the extended attributes
5243           such as enter_horizontal_hl_mode for WA_HORIZONTAL to term_attrs().
5244         + add logic in waddch_literal() to clear orphaned cells when one
5245           multi-column character partly overwrites another.
5246         + improved logic for clearing cells when a multi-column character
5247           must be wrapped to a new line.
5248         + revise storage of cells for multi-column characters to correct a
5249           problem with repainting.  In the old scheme, it was possible for
5250           doupdate() to decide that only part of a multi-column character
5251           should be repainted since the filler cells stored only an attribute
5252           to denote them as fillers, rather than the character value and the
5253           attribute.
5254
5255 20041016
5256         + minor fixes for traces.
5257         + add SP->_screen_acs_map[], used to ensure that mapping of missing
5258           line-drawing characters is handled properly.  For example, ACS_DARROW
5259           is absent from xterm-new, and it was coincidentally displayed the
5260           same as ACS_BTEE.
5261
5262 20041009
5263         + amend 20021221 workaround for broken acs to reset the sgr, rmacs
5264           and smacs strings as well.  Also modify the check for screen's
5265           limitations in that area to allow the multi-character shift-in
5266           and shift-out which seem to work.
5267         + change GPM initialization, using dl library to load it dynamically
5268           at runtime (Debian #110586).
5269
5270 20041002
5271         + correct logic for color pair in setcchar() and getcchar() (patch by
5272           Marcin 'Qrczak' Kowalczyk).
5273         + add t/T commands to ncurses b/B tests to allow a different color to
5274           be tested for the attrset part of the test than is used in the
5275           background color.
5276
5277 20040925
5278         + fix to make setcchar() to work when its wchar_t* parameter is
5279           pointing to a string which contains more data than can be converted.
5280         + modify wget_wstr() and example in ncurses.c to work if wchar_t and
5281           wint_t are different sizes (report by Marcin 'Qrczak' Kowalczyk).
5282
5283 20040918
5284         + remove check in wget_wch() added to fix an infinite loop, appears to
5285           have been working around a transitory glibc bug, and interferes
5286           with normal operation (report by Marcin 'Qrczak' Kowalczyk).
5287         + correct wadd_wch() and wecho_wch(), which did not pass the rendition
5288           information (report by Marcin 'Qrczak' Kowalczyk).
5289         + fix aclocal.m4 so that the wide-character version of ncurses gets
5290           compiled as libncursesw.5.dylib, instead of libncurses.5w.dylib
5291           (adapted from patch by James J Ramsey).
5292         + change configure script for --with-caps option to indicate that it
5293           is no longer experimental.
5294         + change configure script to reflect the fact that --enable-widec has
5295           not been "experimental" since 5.3 (report by Bruno Lustosa).
5296
5297 20040911
5298         + add 'B' test to ncurses.c, to exercise some wide-character functions.
5299
5300 20040828
5301         + modify infocmp -i option to match 8-bit controls against its table
5302           entries, e.g., so it can analyze the xterm-8bit entry.
5303         + add morphos terminfo entry, improve amiga-8bit entry (Pavel Fedin).
5304         + correct translation of "%%" in terminfo format to termcap, e.g.,
5305           using "tic -C" (Redhat #130921).
5306         + modified configure script CF_XOPEN_SOURCE macro to ensure that if
5307           it defines _POSIX_C_SOURCE, that it defines it to a specific value
5308           (comp.os.stratus newsgroup comment).
5309
5310 20040821
5311         + fixes to build with Ada95 binding with gnat 3.4 (all warnings are
5312           fatal, and gnat does not follow the guidelines for pragmas).
5313           However that did find a coding error in Assume_Default_Colors().
5314         + modify several terminfo entries to ensure xterm mouse and cursor
5315           visibility are reset in rs2 string:  hurd, putty, gnome,
5316           konsole-base, mlterm, Eterm, screen (Debian #265784, Debian #55637).
5317           The xterm entries are left alone - old ones for compatibility, and
5318           the new ones do not require this change. -TD
5319
5320 20040814
5321         + fake a SIGWINCH in newterm() to accommodate buggy terminal emulators
5322           and window managers (Debian #265631).
5323         > terminfo updates -TD
5324         + remove dch/dch1 from rxvt because they are implemented inconsistently
5325           with the common usage of bce/ech
5326         + remove khome from vt220 (vt220's have no home key)
5327         + add rxvt+pcfkeys
5328
5329 20040807
5330         + modify test/ncurses.c 'b' test, adding v/V toggles to cycle through
5331           combinations of video attributes so that for instance bold and
5332           underline can be tested.  This made the legend too crowded, added
5333           a help window as well.
5334         + modify test/ncurses.c 'b' test to cycle through default colors if
5335           the -d option is set.
5336         + update putty terminfo entry (Robert de Bath).
5337
5338 20040731
5339         + modify test/cardfile.c to allow it to read more data than can be
5340           displayed.
5341         + correct logic in resizeterm.c which kept it from processing all
5342           levels of window hierarchy (reports by Folkert van Heusden,
5343           Chris Share).
5344
5345 20040724
5346         + modify "tic -cv" to ignore delays when comparing strings.  Also
5347           modify it to ignore a canceled sgr string, e.g., for terminals which
5348           cannot properly combine attributes in one control sequence.
5349         + corrections for gnome and konsole entries (Redhat #122815, patch by
5350           Hans de Goede)
5351         > terminfo updates -TD
5352         + make ncsa-m rmacs/smacs consistent with sgr
5353         + add sgr, rc/sc and ech to syscons entries
5354         + add function-keys to decansi
5355         + add sgr to mterm-ansi
5356         + add sgr, civis, cnorm to emu
5357         + correct/simplify cup in addrinfo
5358
5359 20040717
5360         > terminfo updates -TD
5361         + add xterm-pc-fkeys
5362         + review/update gnome and gnome-rh90 entries (prompted by Redhat
5363           #122815).
5364         + review/update konsole entries
5365         + add sgr, correct sgr0 for kterm and mlterm
5366         + correct tsl string in kterm
5367
5368 20040711
5369         + add configure option --without-xterm-new
5370
5371 20040710
5372         + add check in wget_wch() for printable bytes that are not part of a
5373           multibyte character.
5374         + modify wadd_wchnstr() to render text using window's background
5375           attributes.
5376         + improve tic's check to compare sgr and sgr0.
5377         + fix c++ directory's .cc.i rule.
5378         + modify logic in tgetent() which adjusts the termcap "me" string
5379           to work with ISO-2022 string used in xterm-new (cf: 20010908).
5380         + modify tic's check for conflicting function keys to omit that if
5381           converting termcap to termcap format.
5382         + add -U option to tic and infocmp.
5383         + add rmam/smam to linux terminfo entry (Trevor Van Bremen)
5384         > terminfo updates -TD
5385         + minor fixes for emu
5386         + add emu-220
5387         + change wyse acsc strings to use 'i' map rather than 'I'
5388         + fixes for avatar0
5389         + fixes for vp3a+
5390
5391 20040703
5392         + use tic -x to install terminfo database -TD
5393         + add -x to infocmp's usage message.
5394         + correct field used for comparing O_ROWMAJOR in set_menu_format()
5395           (report/patch by Tony Li).
5396         + fix a missing nul check in set_field_buffer() from 20040508 changes.
5397         > terminfo updates -TD
5398           + make xterm-xf86-v43 derived from xterm-xf86-v40 rather than
5399             xterm-basic -TD
5400           + align with xterm patch #192's use of xterm-new -TD
5401           + update xterm-new and xterm-8bit for cvvis/cnorm strings -TD
5402           + make xterm-new the default "xterm" entry -TD
5403
5404 20040626
5405         + correct BUILD_CPPFLAGS substitution in ncurses/Makefile.in, to allow
5406           cross-compiling from a separate directory tree (report/patch by
5407           Dan Engel).
5408         + modify is_term_resized() to ensure that window sizes are nonzero,
5409           as documented in the manpage (report by Ian Collier).
5410         + modify CF_XOPEN_SOURCE configure macro to make Hurd port build
5411           (Debian #249214, report/patch by Jeff Bailey).
5412         + configure-script mods from xterm, e.g., updates to CF_ADD_CFLAGS
5413         + update config.guess, config.sub
5414         > terminfo updates -TD
5415           + add mlterm
5416           + add xterm-xf86-v44
5417           + modify xterm-new aka xterm-xfree86 to accommodate luit, which
5418             relies on G1 being used via an ISO-2022 escape sequence (report by
5419             Juliusz Chroboczek)
5420           + add 'hurd' entry
5421
5422 20040619
5423         + reconsidered winsnstr(), decided after comparing other
5424           implementations that wrapping is an X/Open documentation error.
5425         + modify test/inserts.c to test all flavors of insstr().
5426
5427 20040605
5428         + add setlocale() calls to a few test programs which may require it:
5429           demo_forms.c, filter.c, ins_wide.c, inserts.c
5430         + correct a few misspelled function names in ncurses-intro.html (report
5431           by Tony Li).
5432         + correct internal name of key_defined() manpage, which conflicted with
5433           define_key().
5434
5435 20040529
5436         + correct size of internal pad used for holding wide-character
5437           field_buffer() results.
5438         + modify data_ahead() to work with wide-characters.
5439
5440 20040522
5441         + improve description of terminfo if-then-else expressions (suggested
5442           by Arne Thomassen).
5443         + improve test/ncurses.c 'd' test, allow it to use external file for
5444           initial palette (added xterm-16color.dat and linux-color.dat), and
5445           reset colors to the initial palette when starting/ending the test.
5446         + change limit-check in init_color() to allow r/g/b component to
5447           reach 1000 (cf: 20020928).
5448
5449 20040516
5450         + modify form library to use cchar_t's rather than char's in the
5451           wide-character configuration for storing data for field buffers.
5452         + correct logic of win_wchnstr(), which did not work for more than
5453           one cell.
5454
5455 20040508
5456         + replace memset/memcpy usage in form library with for-loops to
5457           simplify changing the datatype of FIELD.buf, part of wide-character
5458           changes.
5459         + fix some inconsistent use of #if/#ifdef (report by Alain Guibert).
5460
5461 20040501
5462         + modify menu library to account for actual number of columns used by
5463           multibyte character strings, in the wide-character configuration
5464           (adapted from patch by Philipp Tomsich).
5465         + add "-x" option to infocmp like tic's "-x", for use in "-F"
5466           comparisons.  This modifies infocmp to only report extended
5467           capabilities if the -x option is given, making this more consistent
5468           with tic.  Some scripts may break, since infocmp previous gave this
5469           information without an option.
5470         + modify termcap-parsing to retain 2-character aliases at the beginning
5471           of an entry if the "-x" option is used in tic.
5472
5473 20040424
5474         + minor compiler-warning and test-program fixes.
5475
5476 20040417
5477         + modify tic's missing-sgr warning to apply to terminfo only.
5478         + free some memory leaks in tic.
5479         + remove check in post_menu() that prevented menus from extending
5480           beyond the screen (request by Max J. Werner).
5481         + remove check in newwin() that prevents allocating windows
5482           that extend beyond the screen.  Solaris curses does this.
5483         + add ifdef in test/color_set.c to allow it to compile with older
5484           curses.
5485         + add napms() calls to test/dots.c to make it not be a CPU hog.
5486
5487 20040403
5488         + modify unctrl() to return null if its parameter does not correspond
5489           to an unsigned char.
5490         + add some limit-checks to guard isprint(), etc., from being used on
5491           values that do not fit into an unsigned char (report by Sami Farin).
5492
5493 20040328
5494         + fix a typo in the _nc_get_locale() change.
5495
5496 20040327
5497         + modify _nc_get_locale() to use setlocale() to query the program's
5498           current locale rather than using getenv().  This fixes a case in tin
5499           which relies on legacy treatment of 8-bit characters when the locale
5500           is not initialized (reported by Urs Jansen).
5501         + add sgr string to screen's and rxvt's terminfo entries -TD.
5502         + add a check in tic for terminfo entries having an sgr0 but no sgr
5503           string.  This confuses Tru64 and HPUX curses when combined with
5504           color, e.g., making them leave line-drawing characters in odd places.
5505         + correct casts used in ABSENT_BOOLEAN, CANCELLED_BOOLEAN, matches the
5506           original definitions used in Debian package to fix PowerPC bug before
5507           20030802 (Debian #237629).
5508
5509 20040320
5510         + modify PutAttrChar() and PUTC() macro to improve use of
5511           A_ALTCHARSET attribute to prevent line-drawing characters from
5512           being lost in situations where the locale would otherwise treat the
5513           raw data as nonprintable (Debian #227879).
5514
5515 20040313
5516         + fix a redefinition of CTRL() macro in test/view.c for AIX 5.2 (report
5517           by Jim Idle).
5518         + remove ".PP" after ".SH NAME" in a few manpages; this confuses
5519           some apropos script (Debian #237831).
5520
5521 20040306
5522         + modify ncurses.c 'r' test so editing commands, like inserted text,
5523           set the field background, and the state of insert/overlay editing
5524           mode is shown in that test.
5525         + change syntax of dummy targets in Ada95 makefiles to work with pmake.
5526         + correct logic in test/ncurses.c 'b' for noncolor terminals which
5527           did not recognize a quit-command (cf: 20030419).
5528
5529 20040228
5530         + modify _nc_insert_ch() to allow for its input to be part of a
5531           multibyte string.
5532         + split out lib_insnstr.c, to prepare to rewrite it.  X/Open states
5533           that this function performs wrapping, unlike all of the other
5534           insert-functions.  Currently it does not wrap.
5535         + check for nl_langinfo(CODESET), use it if available (report by
5536           Stanislav Ievlev).
5537         + split-out CF_BUILD_CC macro, actually did this for lynx first.
5538         + fixes for configure script CF_WITH_DBMALLOC and CF_WITH_DMALLOC,
5539           which happened to work with bash, but not with Bourne shell (report
5540           by Marco d'Itri via tin-dev).
5541
5542 20040221
5543         + some changes to adapt the form library to wide characters, incomplete
5544           (request by Mike Aubury).
5545         + add symbol to curses.h which can be used to suppress include of
5546           stdbool.h, e.g.,
5547                 #define NCURSES_ENABLE_STDBOOL_H 0
5548                 #include <curses.h>
5549           (discussion on XFree86 mailing list).
5550
5551 20040214
5552         + modify configure --with-termlib option to accept a value which sets
5553           the name of the terminfo library.  This would allow a packager to
5554           build libtinfow.so renamed to coincide with libtinfo.so (discussion
5555           with Stanislav Ievlev).
5556         + improve documentation of --with-install-prefix, --prefix and
5557           $(DESTDIR) in INSTALL (prompted by discussion with Paul Lew).
5558         + add configure check if the compiler can use -c -o options to rename
5559           its output file, use that to omit the 'cd' command which was used to
5560           ensure object files are created in a separate staging directory
5561           (prompted by comments by Johnny Wezel, Martin Mokrejs).
5562
5563 20040208 5.4 release for upload to ftp.gnu.org
5564         + update TO-DO.
5565
5566 20040207 pre-release
5567         + minor fixes to _nc_tparm_analyze(), i.e., do not count %i as a param,
5568           and do not count %d if it follows a %p.
5569         + correct an inconsistency between handling of codes in the 128-255
5570           range, e.g., as illustrated by test/ncurses.c f/F tests.  In POSIX
5571           locale, the latter did not show printable results, while the former
5572           did.
5573         + modify MKlib_gen.sh to compensate for broken C preprocessor on Mac
5574           OS X, which alters "%%" to "% % " (report by Robert Simms, fix
5575           verified by Scott Corscadden).
5576
5577 20040131 pre-release
5578         + modify SCREEN struct to align it between normal/wide curses flavors
5579           to simplify future changes to build a single version of libtinfo
5580           (patch by Stanislav Ievlev).
5581         + document handling of carriage return by addch() in manpage.
5582         + document special features of unctrl() in manpage.
5583         + documented interface changes in INSTALL.
5584         + corrected control-char test in lib_addch.c to account for locale
5585           (Debian #230335, cf: 971206).
5586         + updated test/configure.in to use AC_EXEEXT and AC_OBJEXT.
5587         + fixes to compile Ada95 binding with Debian gnat 3.15p-4 package.
5588         + minor configure-script fixes for older ports, e.g., BeOS R4.5.
5589
5590 20040125 pre-release
5591         + amend change to PutAttrChar() from 20030614 which computed the number
5592           of cells for a possibly multi-cell character.  The 20030614 change
5593           forced the cell to a blank if the result from wcwidth() was not
5594           greater than zero.  However, wcwidth() called for parameters in the
5595           range 128-255 can give this return value.  The logic now simply
5596           ensures that the number of cells is greater than zero without
5597           modifying the displayed value.
5598
5599 20040124 pre-release
5600         + looked good for 5.4 release for upload to ftp.gnu.org (but see above)
5601         + modify configure script check for ranlib to use AC_CHECK_TOOL, since
5602           that works better for cross-compiling.
5603
5604 20040117 pre-release
5605         + modify lib_get_wch.c to prefer mblen/mbtowc over mbrlen/mbrtowc to
5606           work around core dump in Solaris 8's locale support, e.g., for
5607           zh_CN.GB18030 (report by Saravanan Bellan).
5608         + add includes for <stdarg.h> and <stdio.h> in configure script macro
5609           to make <wchar.h> check work with Tru64 4.0d.
5610         + add terminfo entry for U/Win -TD
5611         + add terminfo entries for SFU aka Interix aka OpenNT (Federico
5612           Bianchi).
5613         + modify tput's error messages to prefix them with the program name
5614           (report by Vincent Lefevre, patch by Daniel Jacobowitz (see Debian
5615           #227586)).
5616         + correct a place in tack where exit_standout_mode was used instead of
5617           exit_attribute_mode (patch by Jochen Voss (see Debian #224443)).
5618         + modify c++/cursesf.h to use const in the Enumeration_Field method.
5619         + remove an ambiguous (actually redundant) method from c++/cursesf.h
5620         + make $HOME/.terminfo update optional (suggested by Stanislav Ievlev).
5621         + improve sed script which extracts libtool's version in the
5622           CF_WITH_LIBTOOL macro.
5623         + add ifdef'd call to AC_PROG_LIBTOOL to CF_WITH_LIBTOOL macro (to
5624           simplify local patch for Albert Chin-A-Young)..
5625         + add $(CXXFLAGS) to link command in c++/Makefile.in (adapted from
5626           patch by Albert Chin-A-Young)..
5627         + fix a missing substitution in configure.in for "$target" needed for
5628           HPUX .so/.sl case.
5629         + resync CF_XOPEN_SOURCE configure macro with lynx; fixes IRIX64 and
5630           NetBSD 1.6 conflicts with _XOPEN_SOURCE.
5631         + make check for stdbool.h more specific, to ensure that including it
5632           will actually define/declare bool for the configured compiler.
5633         + rewrite ifdef's in curses.h relating NCURSES_BOOL and bool.  The
5634           intention of that is to #define NCURSES_BOOL as bool when the
5635           compiler declares bool, and to #define bool as NCURSES_BOOL when it
5636           does not (reported by Jim Gifford, Sam Varshavchik, cf: 20031213).
5637
5638 20040110 pre-release
5639         + change minor version to 4, i.e., ncurses 5.4
5640         + revised/improved terminfo entries for tvi912b, tvi920b (Benjamin C W
5641           Sittler).
5642         + simplified ncurses/base/version.c by defining the result from the
5643           configure script rather than using sprintf (suggested by Stanislav
5644           Ievlev).
5645         + remove obsolete casts from c++/cursesw.h (reported by Stanislav
5646           Ievlev).
5647         + modify configure script so that when configuring for termlib, programs
5648           such as tic are not linked with the upper-level ncurses library
5649           (suggested by Stanislav Ievlev).
5650         + move version.c from ncurses/base to ncurses/tinfo to allow linking
5651           of tic, etc., using libtinfo (suggested by Stanislav Ievlev).
5652
5653 20040103
5654         + adjust -D's to build ncursesw on OpenBSD.
5655         + modify CF_PROG_EXT to make OS/2 build with EXEEXT.
5656         + add pecho_wchar().
5657         + remove <wctype.h> include from lib_slk_wset.c which is not needed (or
5658           available) on older platforms.
5659
5660 20031227
5661         + add -D's to build ncursew on FreeBSD 5.1.
5662         + modify shared library configuration for FreeBSD 4.x/5.x to add the
5663           soname information (request by Marc Glisse).
5664         + modify _nc_read_tic_entry() to not use MAX_ALIAS, but PATH_MAX only
5665           for limiting the length of a filename in the terminfo database.
5666         + modify termname() to return the terminal name used by setupterm()
5667           rather than $TERM, without truncating to 14 characters as documented
5668           by X/Open (report by Stanislav Ievlev, cf:  970719).
5669         + re-add definition for _BSD_TYPES, lost in merge (cf: 20031206).
5670
5671 20031220
5672         + add configure option --with-manpage-format=catonly to address
5673           behavior of BSDI, allow install of man+cat files on NetBSD, whose
5674           behavior has diverged by requiring both to be present.
5675         + remove leading blanks from comment-lines in manlinks.sed script to
5676           work with Tru64 4.0d.
5677         + add screen.linux terminfo entry (discussion on mutt-users mailing
5678           list).
5679
5680 20031213
5681         + add a check for tic to flag missing backslashes for termcap
5682           continuation lines.  ncurses reads the whole entry, but termcap
5683           applications do not.
5684         + add configure option "--with-manpage-aliases" extending
5685           "--with-manpage-aliases" to provide the option of generating ".so"
5686           files rather than symbolic links for manpage aliases.
5687         + add bool definition in include/curses.h.in for configurations with no
5688           usable C++ compiler (cf: 20030607).
5689         + fix pathname of SigAction.h for building with --srcdir (reported by
5690           Mike Castle).
5691
5692 20031206
5693         + folded ncurses/base/sigaction.c into includes of ncurses/SigAction.h,
5694           since that header is used only within ncurses/tty/lib_tstp.c, for
5695           non-POSIX systems (discussion with Stanislav Ievlev).
5696         + remove obsolete _nc_outstr() function (report by Stanislav Ievlev
5697           <inger@altlinux.org>).
5698         + add test/background.c and test/color_set.c
5699         + modify color_set() function to work with color pair 0 (report by
5700           George Andreou <gbandreo@tem.uoc.gr>).
5701         + add configure option --with-trace, since defining TRACE seems too
5702           awkward for some cases.
5703         + remove a call to _nc_free_termtype() from read_termtype(), since the
5704           corresponding buffer contents were already zeroed by a memset (cf:
5705           20000101).
5706         + improve configure check for _XOPEN_SOURCE and related definitions,
5707           adding special cases for Solaris' __EXTENSIONS__ and FreeBSD's
5708           __BSD_TYPES (reports by Marc Glisse <marc.glisse@normalesup.org>).
5709         + small fixes to compile on Solaris and IRIX64 using cc.
5710         + correct typo in check for pre-POSIX sort options in MKkey_defs.sh
5711           (cf: 20031101).
5712
5713 20031129
5714         + modify _nc_gettime() to avoid a problem with arithmetic on unsigned
5715           values (Philippe Blain).
5716         + improve the nanosleep() logic in napms() by checking for EINTR and
5717           restarting (Philippe Blain).
5718         + correct expression for "%D" in lib_tgoto.c (Juha Jarvi
5719           <mooz@welho.com>).
5720
5721 20031122
5722         + add linux-vt terminfo entry (Andrey V Lukyanov <land@long.yar.ru>).
5723         + allow "\|" escape in terminfo; tic should not warn about this.
5724         + save the full pathname of the trace-file the first time it is opened,
5725           to avoid creating it in different directories if the application
5726           opens and closes it while changing its working directory.
5727         + modify configure script to provide a non-empty default for
5728           $BROKEN_LINKER
5729
5730 20031108
5731         + add DJGPP to special case of DOS-style drive letters potentially
5732           appearing in TERMCAP environment variable.
5733         + fix some spelling in comments (reports by Jason McIntyre, Jonathon
5734           Gray).
5735         + update config.guess, config.sub
5736
5737 20031101
5738         + fix a memory leak in error-return from setupterm() (report by
5739           Stanislav Ievlev <inger@altlinux.org>).
5740         + use EXEEXT and OBJEXT consistently in makefiles.
5741         + amend fixes for cross-compiling to use separate executable-suffix
5742           BUILD_EXEEXT (cf: 20031018).
5743         + modify MKkey_defs.sh to check for sort utility that does not
5744           recognize key options, e.g., busybox (report by Peter S Mazinger
5745           <ps.m@gmx.net>).
5746         + fix potential out-of-bounds indexing in _nc_infotocap() (found by
5747           David Krause using some of the new malloc debugging features
5748           under OpenBSD, patch by Ted Unangst).
5749         + modify CF_LIB_SUFFIX for Itanium releases of HP-UX, which use a
5750           ".so" suffix (patch by Jonathan Ward <Jonathan.Ward@hp.com>).
5751
5752 20031025
5753         + update terminfo for xterm-xfree86 -TD
5754         + add check for multiple "tc=" clauses in a termcap to tic.
5755         + check for missing op/oc in tic.
5756         + correct _nc_resolve_uses() and _nc_merge_entry() to allow infocmp and
5757           tic to show cancelled capabilities.  These functions were ignoring
5758           the state of the target entry, which should be untouched if cancelled.
5759         + correct comment in tack/output.c (Debian #215806).
5760         + add some null-pointer checks to lib_options.c (report by Michael
5761           Bienia).
5762         + regenerated html documentation.
5763         + correction to tar-copy.sh, remove a trap command that resulted in
5764           leaving temporary files (cf: 20030510).
5765         + remove contact/maintainer addresses for Juergen Pfeifer (his request).
5766
5767 20031018
5768         + updated test/configure to reflect changes for libtool (cf: 20030830).
5769         + fix several places in tack/pad.c which tested and used the parameter-
5770           and parameterless strings inconsistently, i.e., in pad_rin(),
5771           pad_il(), pad_indn() and pad_dl() (Debian #215805).
5772         + minor fixes for configure script and makefiles to cleanup executables
5773           generated when cross-compiling for DJGPP.
5774         + modify infocmp to omit check for $TERM for operations that do not
5775           require it, e.g., "infocmp -e" used to build fallback list (report by
5776           Egmont Koblinger).
5777
5778 20031004
5779         + add terminfo entries for DJGPP.
5780         + updated note about maintainer in ncurses-intro.html
5781
5782 20030927
5783         + update terminfo entries for gnome terminal.
5784         + modify tack to reset colors after each color test, correct a place
5785           where exit_standout_mode was used instead of exit_attribute_mode.
5786         + improve tack's bce test by making it set colors other than black
5787           on white.
5788         + plug a potential recursion between napms() and _nc_timed_wait()
5789           (report by Philippe Blain).
5790
5791 20030920
5792         + add --with-rel-version option to allow workaround to allow making
5793           libtool on Darwin generate the "same" library names as with the
5794           --with-shared option.  The Darwin ld program does not work well
5795           with a zero as the minor-version value (request by Chris Zubrzycki).
5796         + modify CF_MIXEDCASE_FILENAMES macro to work with cross-compiling.
5797         + modify tack to allow it to run from fallback terminfo data.
5798         > patch by Philippe Blain:
5799         + improve PutRange() by adjusting call to EmitRange() and corresponding
5800           return-value to not emit unchanged characters on the end of the
5801           range.
5802         + improve a check for changed-attribute by exiting a loop when the
5803           change is found.
5804         + improve logic in TransformLine(), eliminating a duplicated comparison
5805           in the clr_bol logic.
5806
5807 20030913
5808         > patch by Philippe Blain:
5809         + in ncurses/tty/lib_mvcur.c,
5810           move the label 'nonlocal' just before the second gettimeofday() to
5811           be able to compute the diff time when 'goto nonlocal' used.
5812           Rename 'msec' to 'microsec' in the debug-message.
5813         + in ncurses/tty/lib_mvcur.c,
5814           Use _nc_outch() in carriage return/newline movement instead of
5815           putchar() which goes to stdout.  Move test for xold>0 out of loop.
5816         + in ncurses/tinfo/setbuf.c,
5817           Set the flag SP->_buffered at the end of operations when all has been
5818           successful (typeMalloc can fail).
5819         + simplify NC_BUFFERED macro by moving check inside _nc_setbuf().
5820
5821 20030906
5822         + modify configure script to avoid using "head -1", which does not
5823           work if POSIXLY_CORRECT (sic) is set.
5824         + modify run_tic.in to avoid using wrong shared libraries when
5825           cross-compiling (Dan Kegel).
5826
5827 20030830
5828         + alter configure script help message to make it clearer that
5829           --with-build-cc does not specify a cross-compiler (suggested by Dan
5830           Kegel <dank@kegel.com>).
5831         + modify configure script to accommodate libtool 1.5, as well as add an
5832           parameter to the "--with-libtool" option which can specify the
5833           pathname of libtool (report by Chris Zubrzycki).  We note that
5834           libtool 1.5 has more than one bug in its C++ support, so it is not
5835           able to install libncurses++, for instance, if $DESTDIR or the option
5836           --with-install-prefix is used.
5837
5838 20030823
5839         > patch by Philippe Blain:
5840         + move assignments to SP->_cursrow, SP->_curscol into online_mvcur().
5841         + make baudrate computation in delay_output() consistent with the
5842           assumption in _nc_mvcur_init(), i.e., a byte is 9 bits.
5843
5844 20030816
5845         + modify logic in waddch_literal() to take into account zh_TW.Big5
5846           whose multibyte sequences may contain "printable" characters, e.g.,
5847           a "g" in the sequence "\247g" (Debian #204889, cf: 20030621).
5848         + improve storage used by _nc_safe_strcpy() by ensuring that the size
5849           is reset based on the initialization call, in case it were called
5850           after other strcpy/strcat calls (report by Philippe Blain).
5851         > patch by Philippe Blain:
5852         + remove an unused ifdef for REAL_ATTR & WANT_CHAR
5853         + correct a place where _cup_cost was used rather than _cuu_cost
5854
5855 20030809
5856         + fix a small memory leak in _nc_free_termtype().
5857         + close trace-file if trace() is called with a zero parameter.
5858         + free memory allocated for soft-key strings, in delscreen().
5859         + fix an allocation size in safe_sprintf.c for the "*" format code.
5860         + correct safe_sprintf.c to not return a null pointer if the format
5861           happens to be an empty string.  This applies to the "configure
5862           --enable-safe-sprintf" option (Redhat #101486).
5863
5864 20030802
5865         + modify casts used for ABSENT_BOOLEAN and CANCELLED_BOOLEAN (report by
5866           Daniel Jacobowitz).
5867         > patch by Philippe Blain:
5868         + change padding for change_scroll_region to not be proportional to
5869           the size of the scroll-region.
5870         + correct error-return in _nc_safe_strcat().
5871
5872 20030726
5873         + correct limit-checks in _nc_scroll_window() (report and test-case by
5874           Thomas Graf <graf@dms.at> cf: 20011020).
5875         + re-order configure checks for _XOPEN_SOURCE to avoid conflict with
5876           _GNU_SOURCE check.
5877
5878 20030719
5879         + use clr_eol in preference to blanks for bce terminals, so select and
5880           paste will have fewer trailing blanks, e.g., when using xterm
5881           (request by Vincent Lefevre).
5882         + correct prototype for wunctrl() in manpage.
5883         + add configure --with-abi-version option (discussion with Charles
5884           Wilson).
5885         > cygwin changes from Charles Wilson:
5886           + aclocal.m4: on cygwin, use autodetected prefix for import
5887             and static lib, but use "cyg" for DLL.
5888           + include/ncurses_dll.h: correct the comments to reflect current
5889             status of cygwin/mingw port.  Fix compiler warning.
5890           + misc/run_tic.in: ensure that tic.exe can find the uninstalled
5891             DLL, by adding the lib-directory to the PATH variable.
5892           + misc/terminfo.src (nxterm|xterm-color): make xterm-color
5893             primary instead of nxterm, to match XFree86's xterm.terminfo
5894             usage and to prevent circular links.
5895             (rxvt): add additional codes from rxvt.org.
5896             (rxvt-color): new alias
5897             (rxvt-xpm): new alias
5898             (rxvt-cygwin): like rxvt, but with special acsc codes.
5899             (rxvt-cygwin-native): ditto.  rxvt may be run under XWindows, or
5900             with a "native" MSWin GUI.  Each takes different acsc codes,
5901             which are both different from the "normal" rxvt's acsc.
5902             (cygwin): cygwin-in-cmd.exe window.  Lots of fixes.
5903             (cygwinDBG): ditto.
5904           + mk-1st.awk: use "cyg" for the DLL prefix, but "lib" for import
5905             and static libs.
5906
5907 20030712
5908         + update config.guess, config.sub
5909         + add triples for configuring shared libraries with the Debian
5910           GNU/FreeBSD packages (patch by Robert Millan <zeratul2@wanadoo.es>).
5911
5912 20030705
5913         + modify CF_GCC_WARNINGS so it only applies to gcc, not g++.  Some
5914           platforms have installed g++ along with the native C compiler, which
5915           would not accept gcc warning options.
5916         + add -D_XOPEN_SOURCE=500 when configuring with --enable-widec, to
5917           get mbstate_t declaration on HPUX 11.11 (report by David Ellement).
5918         + add _nc_pathlast() to get rid of casts in _nc_basename() calls.
5919         + correct a sign-extension in wadd_wch() and wecho_wchar() from
5920           20030628 (report by Tomohiro Kubota).
5921         + work around omission of btowc() and wctob() from wide-character
5922           support (sic) in NetBSD 1.6 using mbtowc() and wctomb() (report by
5923           Gabor Z Papp).
5924         + add portability note to curs_get_wstr.3x (Debian #199957).
5925
5926 20030628
5927         + rewrite wadd_wch() and wecho_wchar() to call waddch() and wechochar()
5928           respectively, to avoid calling waddch_noecho() with wide-character
5929           data, since that function assumes its input is 8-bit data.
5930           Similarly, modify waddnwstr() to call wadd_wch().
5931         + remove logic from waddnstr() which transformed multibyte character
5932           strings into wide-characters.  Rewrite of waddch_literal() from
5933           20030621 assumes its input is raw multibyte data rather than wide
5934           characters (report by Tomohiro Kubota).
5935
5936 20030621
5937         + write getyx() and related 2-return macros in terms of getcury(),
5938           getcurx(), etc.
5939         + modify waddch_literal() in case an application passes bytes of a
5940           multibyte character directly to waddch().  In this case, waddch()
5941           must reassemble the bytes into a wide-character (report by Tomohiro
5942           Kubota <kubota@debian.org>).
5943
5944 20030614
5945         + modify waddch_literal() in case a multibyte value occupies more than
5946           two cells.
5947         + modify PutAttrChar() to compute the number of character cells that
5948           are used in multibyte values.  This fixes a problem displaying
5949           double-width characters (report/test by Mitsuru Chinen
5950           <mchinen@yamato.ibm.com>).
5951         + add a null-pointer check for result of keyname() in _tracechar()
5952         + modify _tracechar() to work around glibc sprintf bug.
5953
5954 20030607
5955         + add a call to setlocale() in cursesmain.cc, making demo display
5956           properly in a UTF-8 locale.
5957         + add a fallback definition in curses.priv.h for MB_LEN_MAX (prompted
5958           by discussion with Gabor Z Papp).
5959         + use macros NCURSES_ACS() and NCURSES_WACS() to hide cast needed to
5960           appease -Wchar-subscript with g++ 3.3 (Debian #195732).
5961         + fix a redefinition of $RANLIB in the configure script when libtool
5962           is used, which broke configure on Mac OS X (report by Chris Zubrzycki
5963           <beren@mac.com>).
5964         + simplify ifdef for bool declaration in curses.h.in (suggested by
5965           Albert Chin-A-Young).
5966         + remove configure script check to allow -Wconversion for older
5967           versions of gcc (suggested by Albert Chin-A-Young).
5968
5969 20030531
5970         + regenerated html manpages.
5971         + modify ifdef's in curses.h.in that disabled use of __attribute__()
5972           for g++, since recent versions implement the cases which ncurses uses
5973           (Debian #195230).
5974         + modify _nc_get_token() to handle a case where an entry has no
5975           description, and capabilities begin on the same line as the entry
5976           name.
5977         + fix a typo in ncurses_dll.h reported by gcc 3.3.
5978         + add an entry for key_defined.3x to man_db.renames.
5979
5980 20030524
5981         + modify setcchar() to allow converting control characters to complex
5982           characters (report/test by Mitsuru Chinen <mchinen@yamato.ibm.com>).
5983         + add tkterm entry -TD
5984         + modify parse_entry.c to allow a terminfo entry with a leading
5985           2-character name (report by Don Libes).
5986         + corrected acsc in screen.teraterm, which requires a PC-style mapping.
5987         + fix trace statements in read_entry.c to use lseek() rather than
5988           tell().
5989         + fix signed/unsigned warnings from Sun's compiler (gcc should give
5990           these warnings, but it is unpredictable).
5991         + modify configure script to omit -Winline for gcc 3.3, since that
5992           feature is broken.
5993         + modify manlinks.sed to add a few functions that were overlooked since
5994           they return function pointers:  field_init, field_term, form_init,
5995           form_term, item_init, item_term, menu_init and menu_term.
5996
5997 20030517
5998         + prevent recursion in wgetch() via wgetnstr() if the connection cannot
5999           be switched between cooked/raw modes because it is not a TTY (report
6000           by Wolfgang Gutjahr <gutw@knapp.com>).
6001         + change parameter of define_key() and key_defined() to const (prompted
6002           by Debian #192860).
6003         + add a check in test/configure for ncurses extensions, since there
6004           are some older versions, etc., which would not compile with the
6005           current test programs.
6006         + corrected demo in test/ncurses.c of wgetn_wstr(), which did not
6007           convert wchar_t string to multibyte form before printing it.
6008         + corrections to lib_get_wstr.c:
6009           + null-terminate buffer passed to setcchar(), which occasionally
6010             failed.
6011           + map special characters such as erase- and kill-characters into
6012             key-codes so those will work as expected even if they are not
6013             mentioned in the terminfo.
6014         + modify PUTC() and Charable() macros to make wide-character line
6015           drawing work for POSIX locale on Linux console (cf: 20021221).
6016
6017 20030510
6018         + make typography for program options in manpages consistent (report
6019           by Miloslav Trmac <mitr@volny.cz>).
6020         + correct dependencies in Ada95/src/Makefile.in, so the builds with
6021           "--srcdir" work (report by Warren L Dodge).
6022         + correct missing definition of $(CC) in Ada95/gen/Makefile.in
6023           (reported by Warren L Dodge <warrend@mdhost.cse.tek.com>).
6024         + fix typos and whitespace in manpages (patch by Jason McIntyre
6025           <jmc@prioris.mini.pw.edu.pl>).
6026
6027 20030503
6028         + fix form_driver() cases for REQ_CLR_EOF, REQ_CLR_EOL, REQ_DEL_CHAR,
6029           REQ_DEL_PREV and REQ_NEW_LINE, which did not ensure the cursor was at
6030           the editing position before making modifications.
6031         + add test/demo_forms and associated test/edit_field.c demos.
6032         + modify test/configure.in to use test/modules for the list of objects
6033           to compile rather than using the list of programs.
6034
6035 20030419
6036         + modify logic of acsc to use the original character if no mapping is
6037           defined, noting that Solaris does this.
6038         + modify ncurses 'b' test to avoid using the acs_map[] array since
6039           20021231 changes it to no longer contain information from the acsc
6040           string.
6041         + modify makefile rules in c++, progs, tack and test to ensure that
6042           the compiler flags (e.g., $CFLAGS or $CCFLAGS) are used in the link
6043           command (report by Jose Luis Rico Botella <informatica@serpis.com>).
6044         + modify soft-key initialization to use A_REVERSE if A_STANDOUT would
6045           not be shown when colors are used, i.e., if ncv#1 is set in the
6046           terminfo as is done in "screen".
6047
6048 20030412
6049         + add a test for slk_color(), in ncurses.c
6050         + fix some issues reported by valgrind in the slk_set() and slk_wset()
6051           code, from recent rewrite.
6052         + modify ncurses 'E' test to use show previous label via slk_label(),
6053           as in 'e' test.
6054         + modify wide-character versions of NewChar(), NewChar2() macros to
6055           ensure that the whole struct is initialized.
6056
6057 20030405
6058         + modify setupterm() to check if the terminfo and terminal-modes have
6059           already been read.  This ensures that it does not reinvoke
6060           def_prog_mode() when an application calls more than one function,
6061           such as tgetent() and initscr() (report by Olaf Buddenhagen).
6062
6063 20030329
6064         + add 'E' test to ncurses.c, to exercise slk_wset().
6065         + correct handling of carriage-return in wgetn_wstr(), used in demo of
6066           slk_wset().
6067         + first draft of slk_wset() function.
6068
6069 20030322
6070         + improved warnings in tic when suppressing items to fit in termcap's
6071           1023-byte limit.
6072         + built a list in test/README showing which externals are being used
6073           by either programs in the test-directory or via internal library
6074           calls.
6075         + adjust include-options in CF_ETIP_DEFINES to avoid missing
6076           ncurses_dll.h, fixing special definitions that may be needed for
6077           etip.h (reported by Greg Schafer <gschafer@zip.com.au>).
6078
6079 20030315
6080         + minor fixes for cardfile.c, to make it write the updated fields to
6081           a file when ^W is given.
6082         + add/use _nc_trace_bufcat() to eliminate some fixed buffer limits in
6083           trace code.
6084
6085 20030308
6086         + correct a case in _nc_remove_string(), used by define_key(), to avoid
6087           infinite loop if the given string happens to be a substring of other
6088           strings which are assigned to keys (report by John McCutchan).
6089         + add key_defined() function, to tell which keycode a string is bound
6090           to (discussion with John McCutchan <ttb@tentacle.dhs.org>).
6091         + correct keybound(), which reported definitions in the wrong table,
6092           i.e., the list of definitions which are disabled by keyok().
6093         + modify demo_keydef.c to show the details it changes, and to check
6094           for errors.
6095
6096 20030301
6097         + restructured test/configure script, make it work for libncursesw.
6098         + add description of link_fieldtype() to manpage (report by
6099           L Dee Holtsclaw <dee@sunbeltsoft.com>).
6100
6101 20030222
6102         + corrected ifdef's relating to configure check for wchar_t, etc.
6103         + if the output is a socket or other non-tty device, use 1 millisecond
6104           for the cost in mvcur; previously it was 9 milliseconds because the
6105           baudrate was not known.
6106         + in _nc_get_tty_mode(), initialize the TTY buffer on error, since
6107           glibc copies uninitialized data in that case, as noted by valgrind.
6108         + modify tput to use the same parameter analysis as tparm() does, to
6109           provide for user-defined strings, e.g., for xterm title, a
6110           corresponding capability might be
6111                 title=\E]2;%p1%s^G,
6112         + modify MKlib_gen.sh to avoid passing "#" tokens through the C
6113           preprocessor.  This works around Mac OS X's preprocessor, which
6114           insists on adding a blank on each side of the token (report/analysis
6115           by Kevin Murphy <murphy@genome.chop.edu>).
6116
6117 20030215
6118         + add configure check for wchar_t and wint_t types, rather than rely
6119           on preprocessor definitions.  Also work around for gcc fixinclude
6120           bug which creates a shadow copy of curses.h if it sees these symbols
6121           apparently typedef'd.
6122         + if database is disabled, do not generate run_tic.sh
6123         + minor fixes for memory-leak checking when termcap is read.
6124
6125 20030208
6126         + add checking in tic for incomplete line-drawing character mapping.
6127         + updated configure script to reflect fix for AC_PROG_GCC_TRADITIONAL,
6128           which is broken in autoconf 2.5x for Mac OS X 10.2.3 (report by
6129           Gerben Wierda <Sherlock@rna.nl>).
6130         + make return value from _nc_printf_string() consistent.  Before,
6131           depending on whether --enable-safe-sprintf was used, it might not be
6132           cached for reallocating.
6133
6134 20030201
6135         + minor fixes for memory-leak checking in lib_tparm.c, hardscroll.c
6136         + correct a potentially-uninitialized value if _read_termtype() does
6137           not read as much data as expected (report by Wolfgang Rohdewald
6138           <wr6@uni.de>).
6139         + correct several places where the aclocal.m4 macros relied on cache
6140           variable names which were incompatible (as usual) between autoconf
6141           2.13 and 2.5x, causing the test for broken-linker to give incorrect
6142           results (reports by Gerben Wierda <Sherlock@rna.nl> and Thomas Esser
6143           <te@dbs.uni-hannover.de>).
6144         + do not try to open gpm mouse driver if standard output is not a tty;
6145           the gpm library does not make this check (bug report for dialog
6146           by David Oliveira <davidoliveira@develop.prozone.ws>).
6147
6148 20030125
6149         + modified emx.src to correspond more closely to terminfo.src, added
6150           emx-base to the latter -TD
6151         + add configure option for FreeBSD sysmouse, --with-sysmouse, and
6152           implement support for that in lib_mouse.c, lib_getch.c
6153
6154 20030118
6155         + revert 20030105 change to can_clear_with(), does not work for the
6156           case where the update is made on cells which are blanks with
6157           attributes, e.g., reverse.
6158         + improve ifdef's to guard against redefinition of wchar_t and wint_t
6159           in curses.h (report by Urs Jansen).
6160
6161 20030111
6162         + improve mvcur() by checking if it is safe to move when video
6163           attributes are set (msgr), and if not, reset/restore attributes
6164           within that function rather than doing it separately in the GoTo()
6165           function in tty_update.c (suggested by Philippe Blain).
6166         + add a message in run_tic.in to explain more clearly what does not
6167           work when attempting to create a symbolic link for /usr/lib/terminfo
6168           on OS/2 and other platforms with no symbolic links (report by John
6169           Polterak).
6170         + change several sed scripts to avoid using "\+" since it is not a BRE
6171           (basic regular expression).  One instance caused terminfo.5 to be
6172           misformatted on FreeBSD (report by Kazuo Horikawa
6173           <horikawa@FreeBSD.org> (see FreeBSD docs/46709)).
6174         + correct misspelled 'wint_t' in curs_get_wch.3x (Michael Elkins).
6175
6176 20030105
6177         + improve description of terminfo operators, especially static/dynamic
6178           variables (comments by Mark I Manning IV <mark4th@earthlink.net>).
6179         + demonstrate use of FIELDTYPE by modifying test/ncurses 'r' test to
6180           use the predefined TYPE_ALPHA field-type, and by defining a
6181           specialized type for the middle initial/name.
6182         + fix MKterminfo.sh, another workaround for POSIXLY_CORRECT misfeature
6183           of sed 4.0
6184         > patch by Philippe Blain:
6185         + optimize can_clear_with() a little by testing first if the parameter
6186           is indeed a "blank".
6187         + simplify ClrBottom() a little by allowing it to use clr_eos to clear
6188           sections as small as one line.
6189         + improve ClrToEOL() by checking if clr_eos is available before trying
6190           to use it.
6191         + use tputs() rather than putp() in a few cases in tty_update.c since
6192           the corresponding delays are proportional to the number of lines
6193           affected: repeat_char, clr_eos, change_scroll_region.
6194
6195 20021231
6196         + rewrite of lib_acs.c conflicts with copying of SCREEN acs_map to/from
6197           global acs_map[] array; removed the lines that did the copying.
6198
6199 20021228
6200         + change some overlooked tputs() calls in scrolling code to use putp()
6201           (report by Philippe Blain).
6202         + modify lib_getch.c to avoid recursion via wgetnstr() when the input
6203           is not a tty and consequently mode-changes do not work (report by
6204           <R.Chamberlin@querix.com>).
6205         + rewrote lib_acs.c to allow PutAttrChar() to decide how to render
6206           alternate-characters, i.e., to work with Linux console and UTF-8
6207           locale.
6208         + correct line/column reference in adjust_window(), needed to make
6209           special windows such as curscr track properly when resizing (report
6210           by Lucas Gonze <lgonze@panix.com>).
6211         > patch by Philippe Blain:
6212         + correct the value used for blank in ClrBottom() (broken in 20000708).
6213         + correct an off-by-one in GoTo() parameter in _nc_scrolln().
6214
6215 20021221
6216         + change several tputs() calls in scrolling code to use putp(), to
6217           enable padding which may be needed for some terminals (patch by
6218           Philippe Blain).
6219         + use '%' as sed substitute delimiter in run_tic script to avoid
6220           problems with pathname delimiters such as ':' and '@' (report by John
6221           Polterak).
6222         + implement a workaround so that line-drawing works with screen's
6223           crippled UTF-8 support (tested with 3.9.13).  This only works with
6224           the wide-character support (--enable-widec); the normal library will
6225           simply suppress line-drawing when running in a UTF-8 locale in screen.
6226
6227 20021214
6228         + allow BUILD_CC and related configure script variables to be
6229           overridden from the environment.
6230         + make build-tools variables in ncurses/Makefile.in consistent with
6231           the configure script variables (report by Maciej W Rozycki).
6232         + modify ncurses/modules to allow
6233                 configure --disable-leaks --disable-ext-funcs
6234           to build (report by Gary Samuelson).
6235         + fix a few places in configure.in which lacked quotes (report by
6236           Gary Samuelson <gary.samuelson@verizon.com>).
6237         + correct handling of multibyte characters in waddch_literal() which
6238           force wrapping because they are started too late on the line (report
6239           by Sam Varshavchik).
6240         + small fix for CF_GNAT_VERSION to ignore the help-message which
6241           gnatmake adds to its version-message.
6242         > Maciej W Rozycki <macro@ds2.pg.gda.pl>:
6243         + use AC_CHECK_TOOL to get proper values for AR and LD for cross
6244           compiling.
6245         + use $cross_compiling variable in configure script rather than
6246           comparing $host_alias and $target alias, since "host" is
6247           traditionally misused in autoconf to refer to the target platform.
6248         + change configure --help message to use "build" rather than "host"
6249           when referring to the --with-build-XXX options.
6250
6251 20021206
6252         + modify CF_GNAT_VERSION to print gnatmake's version, and to allow for
6253           possible gnat versions such as 3.2 (report by Chris Lingard
6254           <chris@stockwith.co.uk>).
6255         + modify #define's for CKILL and other default control characters in
6256           tset to use the system's default values if they are defined.
6257         + correct interchanged defaults for kill and interrupt characters
6258           in tset, which caused it to report unnecessarily (Debian #171583).
6259         + repair check for missing C++ compiler, which is broken in autoconf
6260           2.5x by hardcoding it to g++ (report by Martin Mokrejs).
6261         + update config.guess, config.sub (2002-11-30)
6262         + modify configure script to skip --with-shared, etc., when the
6263           --with-libtool option is given, since they would be ignored anyway.
6264         + fix to allow "configure --with-libtool --with-termlib" to build.
6265         + modify configure script to show version number of libtool, to help
6266           with bug reports.  libtool still gets confused if the installed
6267           ncurses libraries are old, since it ignores the -L options at some
6268           point (tested with libtool 1.3.3 and 1.4.3).
6269         + reorder configure script's updating of $CPPFLAGS and $CFLAGS to
6270           prevent -I options in the user's environment from introducing
6271           conflicts with the build -I options (may be related to reports by
6272           Patrick Ash and George Goffe).
6273         + rename test/define_key.c to test/demo_defkey.c, test/keyok.c to
6274           test/demo_keyok.c to allow building these with libtool.
6275
6276 20021123
6277         + add example program test/define_key.c for define_key().
6278         + add example program test/keyok.c for keyok().
6279         + add example program test/ins_wide.c for wins_wch() and wins_wstr().
6280         + modify wins_wch() and wins_wstr() to interpret tabs by using the
6281           winsch() internal function.
6282         + modify setcchar() to allow for wchar_t input strings that have
6283           more than one spacing character.
6284
6285 20021116
6286         + fix a boundary check in lib_insch.c (patch by Philippe Blain).
6287         + change type for *printw functions from NCURSES_CONST to const
6288           (prompted by comment by Pedro Palhoto Matos <plpm@mega.ist.utl.pt>,
6289           but really from a note on X/Open's website stating that either is
6290           acceptable, and the latter will be used in a future revision).
6291         + add xterm-1002, xterm-1003 terminfo entries to demonstrate changes in
6292           lib_mouse.c (20021026) -TD
6293         + add screen-bce, screen-s entries from screen 3.9.13 (report by
6294           Adam Lazur <zal@debian.org>) -TD
6295         + add mterm terminfo entries -TD
6296
6297 20021109
6298         + split-out useful fragments in terminfo for vt100 and vt220 numeric
6299           keypad, i.e., vt100+keypad, vt100+pfkeys, vt100+fnkeys and
6300           vt220+keypad.  The last as embedded in various entries had ka3 and
6301           kb2 interchanged (report/discussion with Leonard den Ottolander
6302           <leonardjo@hetnet.nl>).
6303         + add check in tic for keypads consistent with vt100 layout.
6304         + improve checks in tic for color capabilities
6305
6306 20021102
6307         + check for missing/empty/illegal terminfo name in _nc_read_entry()
6308           (report by Martin Mokrejs, where $TERM was set to an empty string).
6309         + rewrote lib_insch.c, combining it with lib_insstr.c so both handle
6310           tab and other control characters consistently (report by Philippe
6311           Blain).
6312         + remove an #undef for KEY_EVENT from curses.tail used in the
6313           experimental NCURSES_WGETCH_EVENTS feature.  The #undef confuses
6314           dpkg's build script (Debian #165897).
6315         + fix MKlib_gen.sh, working around the ironically named POSIXLY_CORRECT
6316           feature of GNU sed 4.0 (reported by Ervin Nemeth <airwin@inf.bme.hu>).
6317
6318 20021026
6319         + implement logic in lib_mouse.c to handle position reports which are
6320           generated when XFree86 xterm is initialized with private modes 1002
6321           or 1003.  These are returned to the application as the
6322           REPORT_MOUSE_POSITION mask, which was not implemented.  Tested both
6323           with ncurses 'a' menu (prompted by discussion with Larry Riedel
6324           <Larry@Riedel.org>).
6325         + modify lib_mouse.c to look for "XM" terminfo string, which allows
6326           one to override the escape sequence used to enable/disable mouse
6327           mode.  In particular this works for XFree86 xterm private modes
6328           1002 and 1003.  If "XM" is missing (note that this is an extended
6329           name), lib_mouse uses the conventional private mode 1000.
6330         + correct NOT_LOCAL() macro in lib_mvcur.c to refer to screen_columns
6331           where it used screen_lines (report by Philippe Blain).
6332         + correct makefile rules for the case when both --with-libtool and
6333           --with-gpm are given (report by Mr E_T <troll@logi.net.au>).
6334         + add note to terminfo manpage regarding the differences between
6335           setaf/setab and setf/setb capabilities (report by Pavel Roskin).
6336
6337 20021019
6338         + remove redundant initialization of TABSIZE in newterm(), since it is
6339           already done in setupterm() (report by Philippe Blain).
6340         + add test/inserts.c, to test winnstr() and winsch().
6341         + replace 'sort' in dist.mk with script that sets locale to POSIX.
6342         + update URLs in announce.html.in (patch by Frederic L W Meunier).
6343         + remove glibc add-on files, which are no longer needed (report by
6344           Frederic L W Meunier).
6345
6346 20021012 5.3 release for upload to ftp.gnu.org
6347         + modify ifdef's in etip.h.in to allow the etip.h header to compile
6348           with gcc 3.2 (patch by Dimitar Zhekov <jimmy@is-vn.bg>).
6349         + add logic to setupterm() to make it like initscr() and newterm(),
6350           by checking for $NCURSES_TRACE environment variable and enabling
6351           the debug trace in that case.
6352         + modify setupterm() to ensure that it initializes the baudrate, for
6353           applications such as tput (report by Frank Henigman).
6354         + modify definition of bits used for command-line and library debug
6355           traces to avoid overlap, using new definition TRACE_SHIFT to relate
6356           the two.
6357         + document tput's interpretation of parameterized strings according to
6358           whether parameters are given, etc. (discussion with Robert De Bath).
6359
6360 20021005 pre-release
6361         + correct winnwstr() to account for non-character cells generated when
6362           a double-width character is added (report by Michael Bienia
6363           <michael@vorlon.ping.de>).
6364         + modify _nc_viswbuf2n() to provide better results using wctomb().
6365         + correct logic in _nc_varargs() which broke tracing of parameters for
6366           formats such as "%.*s".
6367         + correct scale factor in linux-c and linux-c-nc terminfo entries
6368           (report Floyd Davidson).
6369         + change tic -A option to -t, add the same option to infocmp for
6370           consistency.
6371         + correct "%c" implementation in lib_tparm.c, which did not map a null
6372           character to a 128 (cf: 980620) (patch by Frank Henigman
6373           <fjhenigman@mud.cgl.uwaterloo.ca>).
6374
6375 20020928 pre-release
6376         + modify MKkey_defs.sh to check for POSIX sort -k option, use that if
6377           it is found, to accommodate newer utility which dropped the
6378           compatibility support for +number options (reported by Andrey A
6379           Chernov).
6380         + modify linux terminfo entry to use color palette feature from
6381           linux-c-nc entry (comments by Tomasz Wasiak and Floyd Davidson).
6382         + restore original color definitions in endwin() if init_color() was
6383           used, and resume those colors on the next doupdate() or refresh()
6384           (report by Tomasz Wasiak <tjwasiak@komputom.com.pl>).
6385         + improve debug-traces by modifying MKlib_gen.sh to generate calls
6386           to returnBool() and returnAttr().
6387         + add/use _nc_visbufn() and _nc_viswbufn() to limit the debug trace
6388           of waddnstr() and similar functions to match the parameters as used.
6389         + add/use _nc_retrace_bool() and _nc_retrace_unsigned().
6390         + correct type used by _nc_retrace_chtype().
6391         + add debug traces to some functions in lib_mouse.c
6392         + modify lib_addch.c to handle non-spacing characters.
6393         + correct parameter of RemAttr() in lib_bkgd.c, which caused the c++
6394           demo's boxes to lose the A_ALTCHARSET flag (broken in 20020629).
6395         + correct width computed in _tracedump(), which did not account for
6396           the attributes (broken in 20010602).
6397         + modify test/tracemunch to replace addresses for windows other than
6398           curscr, newscr and stdscr with window0, window1, etc.
6399
6400 20020921 pre-release
6401         + redid fix for edit_man.sed path.
6402         + workaround for Cygwin bug which makes subprocess writes to stdout
6403           result in core dump.
6404         + documented getbegx(), etc.
6405         + minor fixes to configure script to use '%' consistently as a sed
6406           delimiter rather than '@'.
6407         > patch by Philippe Blain:
6408         + add check in lib_overlay.c to ensure that the windows to be merged
6409           actually overlap, and in copywin(), limit the area to be touched
6410           to the lines given for the destination window.
6411
6412 20020914 pre-release
6413         + modified curses.h so that if the wide-character version is installed
6414           overwriting /usr/include/curses.h, and if it relied on libutf8.h,
6415           then applications that use that header for wide-character support
6416           must define HAVE_LIBUTF8_H.
6417         + modify putwin(), getwin() and dupwin() to allow them to operate on
6418           pads (request by Philippe Blain).
6419         + correct attribute-merging in wborder(), broken in 20020216 (report
6420           by Tomasz Wasiak <tjwasiak@grubasek.komputom.com.pl>).
6421         > patch by Philippe Blain:
6422         + corrected pop-counts in tparam_internal() to '!' and '~' cases.
6423         + use sizeof(NCURSES_CH_T) in one place that used sizeof(chtype).
6424         + remove some unused variables from mvcur test-driver.
6425
6426 20020907 pre-release
6427         + change configure script to allow install of widec-character
6428           (ncursesw) headers to overwrite normal (ncurses) headers, since the
6429           latter is a compatible subset of the former.
6430         + fix path of edit_man.sed in configure script, needed to regenerate
6431           html manpages on Debian.
6432         + fix mismatched enums in vsscanf.c, which caused warning on Solaris.
6433         + update README.emx to reflect current patch used for autoconf.
6434         + change web- and ftp-site to invisible-island.net
6435         > patch by Philippe Blain:
6436         + change case for 'P' in tparam_internal() to indicate that it pops
6437           a variable from the stack.
6438         + correct sense of precision and width in parse_format(), to avoid
6439           confusion.
6440         + modify lib_tparm.c, absorb really_get_space() into get_space().
6441         + modify getwin() and dupwin() to copy the _notimeout, _idlok and
6442           _idcok window fields.
6443         + better fix for _nc_set_type(), using typeMalloc().
6444
6445 20020901 pre-release
6446         + change minor version to 3, i.e., ncurses 5.3
6447         + update config.guess, config.sub
6448         + retest build with each configure option; minor ifdef fixes.
6449         + make keyname() return a null pointer rather than "UNKNOWN STRING" to
6450           match XSI.
6451         + modify handling of wide line-drawing character functions to use the
6452           normal line-drawing characters when not in UTF-8 locale.
6453         + add check/fix to comp_parse.c to suppress warning about missing acsc
6454           string.  This happens in configurations where raw termcap information
6455           is processed; tic already does this and other checks.
6456         + modify tic's check for ich/ich1 versus rmir/smir to only warn about
6457           ich1, to match xterm patch #70 notes.
6458         + moved information for ripped-off lines into SCREEN struct to allow
6459           use in resizeterm().
6460         + add experimental wgetch_events(), ifdef'd with NCURSES_WGETCH_EVENTS
6461           (adapted from patch by Ilya Zakharevich - see ncurses/README.IZ).
6462         + amend check in kgetch() from 20020824 to look only for function-keys,
6463           otherwise escape sequences are not resolved properly.
6464         > patch by Philippe Blain:
6465         + removed redundant assignment to SP->_checkfd from newterm().
6466         + check return-value of setupterm() in restartterm().
6467         + use sizeof(NCURSES_CH_T) in a few places that used sizeof(chtype).
6468         + prevent dupwin() from duplicating a pad.
6469         + prevent putwin() from writing a pad.
6470         + use typeRealloc() or typeMalloc() in preference to direct calls on
6471           _nc_doalloc().
6472
6473 20020824
6474         + add a check in kgetch() for cooked characters in the fifo to avoid
6475           calling fifo_push() when a KEY_RESIZE is available (report/analysis
6476           by Sam Varshavchik <mrsam@courier-mta.com>).
6477         + fix an overlooked case for Redhat #68199 (Philippe Blain).
6478         + ensure clearerr() is called before using ferror() e.g., in
6479           lib_screen.c (report by Philippe Blain).
6480
6481 20020817
6482         + modify lib_screen.c and lib_newwin.c to maintain the SCREEN-specific
6483           pointers for curscr/stdscr/newscr when scr_save() and scr_restore()
6484           modify the global curscr/stdscr/newscr variables.  Fixes Redhat
6485           #68199.
6486         + add checks for null pointer in calls to tparm() and tgoto() based on
6487           FreeBSD bug report.  If ncurses were built with termcap support, and
6488           the first call to tgoto() were a zero-length string, the result would
6489           be a null pointer, which was not handled properly.
6490         + correct a typo in terminfo.head, which gave the octal code for colon
6491           rather than comma.
6492         + remove the "tic -u" option from 20020810, since it did not account
6493           for nested "tc=" clauses, and when that was addressed, was still
6494           unsatisfactory.
6495
6496 20020810
6497         + add tic -A option to suppress capabilities which are commented out
6498           when translating to termcap.
6499         + add tic -u option to provide older behavior of "tc=" clauses.
6500         + modified tic to expand all but the final "tc=" clause in a termcap
6501           entry, to accommodate termcap libraries which do not handle multiple
6502           tc clauses.
6503         + correct typo in curs_inopts.3x regarding CS8/CS7 usage (report by
6504           Philippe Blain).
6505         + remove a couple of redundant uses of A_ATTRIBUTES in expressions
6506           using AttrOf(), which already incorporates that mask (report by
6507           Philippe Blain).
6508         + document TABSIZE variable.
6509         + add NCURSES_ASSUMED_COLORS environment variable, to allow users to
6510           override compiled-in default black-on-white assumption used in
6511           assume_default_colors().
6512         + correct an off-by-one comparison against max_colors in COLORFGBG
6513           logic.
6514         + correct a use of uninitialized memory found by valgrind (reported by
6515           Olaf Buddenhagen <olafBuddenhagen@web.de>).
6516         + modified wresize() to ensure that a failed realloc will not corrupt
6517           the window structure, and to make subwindows fit within the resized
6518           window (completes Debian #87678, Debian #101699)
6519
6520 20020803
6521         + fix an off-by-one in lib_pad.c check for limits of pad (patch by
6522           Philippe Blain).
6523         + revise logic for BeOS in lib_twait.c altered in 20011013 to restore
6524           logic used by lib_getch.c's support for GPM or EMX mouse (report by
6525           Philippe Blain)
6526         + remove NCURSES_CONST from several prototypes in curses.wide, to make
6527           the --enable-const --enable-widec configure options to work together
6528           (report by George Goffe <grgoffe@yahoo.com>).
6529
6530 20020727
6531         + finish no-leak checking in cardfile.c, using this for testing changes
6532           to resizeterm().
6533         + simplify _nc_freeall() using delscreen().
6534
6535 20020720
6536         + check error-return from _nc_set_tty_mode() in _nc_initscr() and
6537           reset_prog_mode() (report/patch by Philippe Blain).
6538         + regenerate configure using patch for autoconf 2.52, to address
6539           problem with identifying C++ bool type.
6540         + correct/improve logic to produce an exit status for errors in tput,
6541           which did not exit with an error when told to put a string not in the
6542           current terminfo entry (report by David Gomez <david@pleyades.net>).
6543         + modify configure script AC_OUTPUT() call to work around defect in
6544           autoconf 2.52 which adds an ifdef'd include to the generated
6545           configure definitions.
6546         + remove fstat() check from scr_init(), which also fixes a missing
6547           include for <sys/stat.h> from 20020713 (reported by David Ellement,
6548           fix suggested by Philippe Blain).
6549         + update curs_scanw.3x manpage to note that XSI curses differs from
6550           SVr4 curses: return-values are incompatible.
6551         + correct several prototypes in manpages which used const
6552           inconsistently with the curses.h file, and removed spurious const's
6553           in a few places from curses.h, e.g., for wbkgd() (report by Glenn
6554           Maynard <glenn@zewt.org>).
6555         + change internal type used by tparm() to long, to work with LP64 model.
6556         + modify nc_alloc.h to allow building with g++, for testing.
6557
6558 20020713
6559         + add resize-handling to cardfile.c test program.
6560         + altered resizeterm() to avoid having it fail when a child window
6561           cannot be resized because it would be larger than its parent.  (More
6562           work must be done on this, but it works well enough to integrate).
6563         + improve a limit-check in lib_refresh.c
6564         + remove check in lib_screen.c relating dumptime to file's modification
6565           times, since that would not necessarily work for remotely mounted
6566           filesystems.
6567         + modify lrtest to simplify debugging changes to resizeterm, e.g.,
6568           t/T commands to enable/disable tracing.
6569         + updated status of multibyte support in TO-DO.
6570         + update contact info in source-files (patch by Juergen Pfeifer).
6571
6572 20020706
6573         + add Caps.hpux11, as an example.
6574         + modify version_filter(), used to implement -R option for tic and
6575           infocmp, to use computed array offsets based on the Caps.* file which
6576           is actually configured, rather than constants which correspond to
6577           the Caps file.
6578         + reorganized lib_raw.c to avoid updating SP and cur_term state if the
6579           functions fail (reported by Philippe Blain).
6580         + add -Wundef to gcc warnings, adjust a few ifdef's to accommodate gcc.
6581
6582 20020629
6583         + correct parameters to setcchar() in ncurses.c (cf: 20020406).
6584         + set locale in most test programs (view.c and ncurses.c were the
6585           only ones).
6586         + add configure option --with-build-cppflags (report by Maksim A
6587           Nikulin <M.A.Nikulin@inp.nsk.su>).
6588         + correct a typo in wide-character logic for lib_bkgnd.c (Philippe
6589           Blain).
6590         + modify lib_wacs.c to not cancel the acsc, smacs, rmacs strings when
6591           in UTF-8 locale.  Wide-character functions use Unicode values, while
6592           narrow-character functions use the terminfo data.
6593         + fix a couple of places in Ada95/samples which did not compile with
6594           gnat 3.14
6595         + modify mkinstalldirs so the DOS-pathname case is locale-independent.
6596         + fix locale problem in MKlib_gen.sh by forcing related variables to
6597           POSIX (C), using same approach as autoconf (set variables only if
6598           they were set before).  Update MKterminfo.sh and MKtermsort.sh to
6599           match.
6600
6601 20020622
6602         + add charset to generated html.
6603         + add mvterm entry, adapted from a FreeBSD bug-report by Daniel Rudy
6604           <dcrudy@pacbell.net> -TD
6605         + add rxvt-16color, ibm+16color entries -TD
6606         + modify check in --disable-overwrite option so that it is used by
6607           default unless the --prefix/$prefix value is not /usr, in attempt to
6608           work around packagers, e.g., for Sun's freeware, who do not read the
6609           INSTALL notes.
6610
6611 20020615
6612         + modify wgetch() to allow returning ungetch'd KEY_RESIZE as a function
6613           key code in get_wch().
6614         + extended resize-handling in test/ncurses 'a' menu to the entire
6615           stack of windows created with 'w' commands.
6616         + improve $COLORFGBG feature by interpreting an out-of-range color
6617           value as an SGR 39 or 49, for foreground/background respectively.
6618         + correct a typo in configure --enable-colorfgbg option, and move it
6619           to the experimental section (cf: 20011208).
6620
6621 20020601
6622         + add logic to dump_entry.c to remove function-key definitions that do
6623           not fit into the 1023-byte limit for generated termcaps.  This makes
6624           hds200 fit.
6625         + more improvements to tic's warnings, including logic to ignore
6626           differences between delay values in sgr strings.
6627         + move definition of KEY_RESIZE into MKkeydefs.sh script, to
6628           accommodate Caps.osf1r5 which introduced a conflicting definition.
6629
6630 20020525
6631         + add simple resize-handling in test/ncurses.c 'a' menu.
6632         + fixes in keyname() and _tracechar() to handle negative values.
6633         + make tic's warnings about mismatches in sgr strings easier to follow.
6634         + correct tic checks for number of parameters in smgbp and smglp.
6635         + improve scoansi terminfo entry, and add scoansi-new entry -TD
6636         + add pcvt25-color terminfo entry -TD
6637         + add kf13-kf48 strings to cons25w terminfo entry (reported by Stephen
6638           Hurd <deuce@lordlegacy.org> in newsgroup lucky.freebsd.bugs) -TD
6639         + add entrypoint _nc_trace_ttymode(), use this to distinguish the
6640           Ottyb and Nttyb members of terminal (aka cur_term), for tracing.
6641
6642 20020523
6643         + correct and simplify logic for lib_pad.c change in 20020518 (reported
6644           by Mike Castle).
6645
6646 20020518
6647         + fix lib_pad.c for case of drawing a double-width character which
6648           falls off the left margin of the pad (patch by Kriang Lerdsuwanakij
6649           <lerdsuwa@users.sourceforge.net>)
6650         + modify configure script to work around broken gcc 3.1 "--version"
6651           option, which adds unnecessary trash to the requested information.
6652         + adjust ifdef's in case SIGWINCH is not defined, e.g., with DJGPP
6653           (reported by Ben Decker <deckerben@freenet.de>).
6654
6655 20020511
6656         + implement vid_puts(), vid_attr(), term_attrs() based on the narrow-
6657           character versions as well.
6658         + implement erasewchar(), killwchar() based on erasechar() and
6659           killchar().
6660         + modify erasechar() and killchar() to return ERR if the value was
6661           VDISABLE.
6662         + correct a bug in wresize() in handling subwindows (based on patch by
6663           Roger Gammans <rgammans@computer-surgery.co.uk>, report by Scott Beck
6664           <scott@gossamer-threads.com>).
6665         + improve test/tclock.c by making the second-hand update more often
6666           if gettimeofday() is available.
6667
6668 20020429
6669         + workaround for Solaris sed with MKlib_gen.sh (reported by Andy
6670           Tsouladze <andyt@mypoints.com>).
6671
6672 20020427
6673         + correct return-value from getcchar(), making it consistent with
6674           Solaris and Tru64.
6675         + reorder loops that generate makefile rules for different models vs
6676           subsets so configure --with-termlib works again.  This was broken by
6677           logic added to avoid duplicate rules in changes to accommodate cygwin
6678           dll's (reported by George.R.Goffe@seagate.com).
6679         + update config.guess, config.sub
6680
6681 20020421
6682         + modify ifdef's in write_entry.c to allow use of symbolic links on
6683           platforms with no hard links, e.g., BeOS.
6684         + modify a few includes to allow compile with BeOS, which has stdbool.h
6685           with a conflicting definition for 'bool' versus its OS.h definition.
6686         + amend MKlib_gen.sh to work with gawk, which defines 'func' as an
6687           alias for 'function'.
6688
6689 20020420
6690         + correct form of prototype for ripoffline().
6691         + modify MKlib_gen.sh to test that all functions marked as implemented
6692           can be linked.
6693
6694 20020413
6695         + add manpages: curs_get_wstr.3x, curs_in_wchstr.3x
6696         + implement wgetn_wstr().
6697         + implement win_wchnstr().
6698         + remove redefinition of unget_wch() in lib_gen.c (reported by
6699           Jungshik Shin <jshin@jtan.com>).
6700
6701 20020406
6702         + modified several of the test programs to allow them to compile with
6703           vendor curses implementations, e.g., Solaris, AIX -TD
6704
6705 20020323
6706         + modified test/configure to allow configuring against ncursesw.
6707         + change WACS_xxx definition to use address, to work like Tru64 curses.
6708
6709 20020317
6710         + add 'e' and 'm' toggles to 'a', 'A' tests in ncurses.c to demonstrate
6711           effect of echo/noecho and meta modes.
6712         + add 'A' test to ncurses.c to demonstrate wget_wch() and related
6713           functions.
6714         + add manpage: curs_get_wch.3x
6715         + implement unget_wch().
6716         + implement wget_wch().
6717
6718 20020310
6719         + regenerated html manpages.
6720         + add manpages: curs_in_wch.3x, curs_ins_wch.3x, curs_ins_wstr.3x
6721         + implement wins_wch().
6722         + implement win_wch().
6723         + implement wins_nwstr(), wins_wstr().
6724
6725 20020309
6726         + add manpages: curs_addwstr.3x, curs_winwstr.3x
6727         + implement winnwstr(), winwstr().
6728
6729 20020223
6730         + add manpages: curs_add_wchstr.3x, curs_bkgrnd.3x
6731         + document wunctrl, key_name.
6732         + implement key_name().
6733         + remove const's in lib_box.c incorrectly leftover after splitting off
6734           lib_box_set.c
6735         + update llib-lncurses, llib-ncursesw, fix configure script related to
6736           these.
6737
6738 20020218
6739         + remove quotes on "SYNOPSIS" in man/curs_box_set.3x, which resulted
6740           in spurious symlinks on install.
6741
6742 20020216
6743         + implement whline_set(), wvline_set(), add manpage curs_border_set.
6744         + add subtest 'b' to 'F' and 'f' in ncurses.c to demonstrate use of
6745           box() and box_set() functions.
6746         + add subtest 'u' to 'F' in ncurses.c, to demonstrate use of addstr()
6747           given UTF-8 string equivalents of WACS_xxx symbols.
6748         + minor fixes to several manpages based on groff -ww output.
6749         + add descriptions of external variables of termcap interface to
6750           the manpage (report by Bruce Evans <bde@zeta.org.au>).
6751         > patches by Bernhard Rosenkraenzer:
6752         + correct configure option --with-bool, which was executed as
6753           --with-ospeed.
6754         + add quotes for parameters of --with-bool and --with-ospeed configure
6755           options.
6756         > patch by Sven Verdoolaege (report by Gerhard Haering
6757           <haering_linux@gmx.de>):
6758         + correct typos in definitions of several wide-character macros:
6759           waddwstr, wgetbkgrnd, mvaddwstr, mvwadd_wchnstr, mvwadd_wchnstr,
6760           mvwaddwstr.
6761         + pass $(CPPFLAGS) to MKlib_gen.sh, thereby fixing a missing definition
6762           of _XOPEN_SOURCE_EXTENDED, e.g., on Solaris
6763
6764 20020209
6765         + implement wide-acs characters for UTF-8 locales.  When in UTF-8
6766           locale, ignore narrow version of acs.  Add 'F' test to test/ncurses.c
6767           to demonstrate.
6768         + correct prototype in keybound manpage (noted from a Debian mailing
6769           list item).
6770
6771 20020202
6772         + add several cases to the wscanw() example in testcurs.c, showing the
6773           format.
6774         + implement a simple vsscanf() fallback function which uses the %n
6775           conversion to help parse the input data (prompted by discussion with
6776           Albert Chin-A-Young).
6777         + modify mk-1st.awk and test/Makefile.in to add $(LDFLAGS) when making
6778           shared libraries, and to use $(CFLAGS) when linking test programs
6779           (patch by Albert Chin-A-Young).
6780         + add a call to _nc_keypad() in keypad() to accommodate applications
6781           such as nvi, which use curses for output but not for input (fixes
6782           Debian #131263, cf: 20011215).
6783         + add entrypoints to resizeterm.c which provide better control over the
6784           process:  is_term_resized() and resize_term().  The latter restores
6785           the original design of resizeterm() before KEY_RESIZE was added in
6786           970906.  Do this to accommodate 20010922 changes to view.c, but allow
6787           for programs with their own sigwinch handler, such as lynx (reported
6788           by Russell Ruby <russ@math.orst.edu>).
6789
6790 20020127
6791         + fix a typo in change to mk-1st.awk, which broke the shared-library
6792           makefile rules (reported by Martin Mokrejs).
6793
6794 20020126
6795         + update config.guess, config.sub
6796         + finish changes needed to build dll's on cygwin.
6797         + fix a typo in mvwchat() macro (reported by Cy <yam@homerow.net).
6798
6799 20020119
6800         + add case in lib_baudrate.c for B921600 (patch by Andrey A Chernov).
6801         + correct missing sed-editing stage in manpage installs which is used
6802           to rename manpages, broken in 20010324 fix for Debian #89939 (Debian
6803           #78866).
6804         + remove -L$(libdir) from linker flags, probably not needed any more
6805           since HPUX is handled properly (reported by Niibe Yutaka
6806           <gniibe@m17n.org>).
6807         + add configure check for mbstate_t, needed for wide-character
6808           configuration.  On some platforms we must include <wchar.h> to
6809           define this (reported by Daniel Jacobowitz).
6810         + incorporate some of the changes needed to build dll's on cygwin.
6811
6812 20020112a
6813         + workaround for awk did not work with mawk, adjusted shell script.
6814
6815 20020112
6816         + add Caps.osf1r5, as an example.
6817         + modify behavior of can_clear_with() so that if an application is
6818           running in a non-bce terminals with default colors enabled, it
6819           returns true, allowing the user to select/paste text without picking
6820           up extraneous trailing blanks (adapted from patch by Daniel
6821           Jacobowitz <dmj+@andrew.cmu.edu>).
6822         + modify generated curses.h to ifdef-out prototypes for extensions if
6823           they are disabled, and to define curses_version() as a string in that
6824           case.  This is needed to make the programs such as tic build in that
6825           configuration.
6826         + modified generated headers.sh to remove a gzip'd version of the
6827           target file if it exists, in case non-gzip'd manpages are installed
6828           into a directory where gzip'd ones exist.  In that case, the latter
6829           would be found.
6830         + corrected a redundant initialization of signal handlers from 20010922
6831           changes.
6832         + clarified bug-reporting address in terminfo.src (report by John H
6833           DuBois III <spcecdt@armory.com>).
6834         > several fixes from Robert Joop:
6835         + do not use "-v" option of awk in MKkey_defs.sh because it does not
6836           work with SunOS nawk.
6837         + modify definitions for libutf8 in curses.h to avoid redefinition
6838           warnings for mblen
6839         + quoted references to compiler in shell command in misc/Makefile, in
6840           case it uses multiple tokens.
6841
6842 20011229
6843         + restore special case from 20010922 changes to omit SA_RESTART when
6844           setting up SIGWINCH handler, which is needed to allow wgetch() to be
6845           interrupted by that signal.
6846         + updated configure macro CF_WITH_PATHLIST, to omit some double quotes
6847           not needed with autoconf 2.52
6848         + revert configure script to autoconf 2.13 patched with
6849                 autoconf-2.13-19990117.patch.gz (or later)
6850           from
6851                 ftp://invisible-island.net/autoconf/
6852           because autoconf 2.52 macro AC_PROG_AWK does not work on HPUX 11.0
6853           (report by David Ellement <ellement@sdd.hp.com>).  This also fixes a
6854           different problem configuring with Mac OS X (reported by Marc Smith
6855           <marc.a.smith@home.com>).
6856
6857 20011222
6858         + modify include/edit_cfg.h to eliminate BROKEN_LINKER symbol from
6859           term.h
6860         + move prototype for _nc_vsscanf() into curses.h.in to omit
6861           HAVE_VSSCANF symbol from curses.h, which was dependent upon the
6862           ncurses_cfg.h file which is not installed.
6863         + use ACS_LEN rather than SIZEOF(acs_map) in trace code of lib_acs.c,
6864           to work with broken linker configuration, e.g., cygwin (report by
6865           Robert Joop <rj@rainbow.in-berlin.de>).
6866         + make napms() call _nc_timed_wait() rather than poll() or select(),
6867           to work around broken implementations of these on cygwin.
6868
6869 20011218
6870         + drop configure macro CF_WIDEC_SHIFT, since that was rendered obsolete
6871           by Sven Verdoolaege's rewrite of wide-character support.  This makes
6872           libncursesw incompatible again, but makes the header files almost the
6873           same as in the narrow-character configuration.
6874         + simplify definitions that combine wide/narrow versions of bkgd, etc.,
6875           to eliminate differences between the wide/narrow versions of curses.h
6876         + correct typo in configure macro CF_FUNC_VSSCANF
6877         + correct location of call to _nc_keypad() from 20011215 changes which
6878           prevented keypad() from being disabled (reported by Lars Hecking).
6879
6880 20011215
6881         + rewrote ncurses 'a' test to exercise wgetch() and keypad() functions
6882           better, e.g., by adding a 'w' command to create new windows which
6883           may have different keypad() settings.
6884         + corrected logic of keypad() by adding internal screen state to track
6885           whether the terminal's keypad-mode has been set.  Use this in
6886           wgetch() to update the keypad-mode according to whether the
6887           associated window's keypad-mode has been set with keypad().  This
6888           corrects a related problem restoring terminal state after handling
6889           SIGTSTP (reported by Mike Castle).
6890         + regenerate configure using patch for autoconf 2.52
6891                 autoconf-2.52-patch.gz
6892           at
6893                 ftp://invisible-island.net/autoconf/
6894         + update config.guess, config.sub from
6895                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
6896         + minor changes to quoting in configure script to allow it to work
6897           with autoconf 2.52
6898
6899 20011208
6900         + modify final checks in lib_setup.c for line and col values, making
6901           them independent.
6902         + modify acs_map[] if configure --broken-linker is specified, to make
6903           it use a function rather than an array (prompted by an incorrect
6904           implementation in cygwin package).
6905         + correct spelling of configure option --enable-colorfgbg, which
6906           happened to work if --with-develop was set (noted in cygwin package
6907           for ncurses).
6908         + modify ifdef for genericerror() to compile with SUNWspro Sun WorkShop
6909           6 update 1 C++ 5.2 (patch by Sullivan N Beck <sbeck@cise.ufl.edu>).
6910         + add configure checks to see if ncurses' fallback vsscanf() will
6911           compile either of the special cases for FILE structs, and if not,
6912           force it to the case which simply returns an error (report by
6913           Sullivan N Beck <sbeck@cise.ufl.edu> indicates that Solaris 8 with
6914           64-bits does not allow access to FILE's fields).
6915         + modify ifdef's for c++/cursesw.cc to use the fallback vsscanf() in
6916           the ncurses library if no better substitute for this can be found
6917           in the C++ runtime.
6918         + modify the build to name dynamic libraries according to the
6919           convention used on OS X and Darwin.  Rather than something like
6920           libncurses.dylib.5.2, Darwin would name it libncurses.  5.dylib.
6921           There are a few additional minor fixes, such as setting the library
6922           version and compatibility version numbers (patch by Jason Evans
6923           <jevans@apple.com>).
6924         + use 'sh' to run mkinstalldirs, to work around problems with buggy
6925           versions of 'make' on OS/2 (report by John Polterak <jp@eyup.org>).
6926         + correct typo in manpage description of curs_set() (Debian #121548).
6927         + replace the configure script existence-check for mkstemp() by one
6928           that checks if the function works, needed for older glibc and
6929           AmigaOS.
6930
6931 20011201
6932         + modify script that generates fallbacks.c to compile a temporary
6933           copy of the terminfo source in case the host does not contain all of
6934           the entries requested for fallbacks (request by Greg Roelofs).
6935         + modify configure script to accommodate systems such as Mac OS X whose
6936           <stdbool.h> header defines a 'bool' type inconsistent with ncurses,
6937           which normally makes 'bool' consistent with C++.  Include <stdbool.h>
6938           from curses.h to force consistent usage, define a new type
6939           NCURSES_BOOL and related that to the exported 'bool' as either a
6940           typedef or definition, according to whether <stdbool.h> is present
6941           (based on a bug report for tin 1.5.9 by Aaron Adams <adamsa@mac.com>).
6942
6943 20011124
6944         + added/updated terminfo entries for M$ telnet and KDE konsole -TD
6945
6946 20011117
6947         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
6948           (Benjamin C W Sittler).
6949         + add putty terminfo entry -TD
6950         + if configuring for wide-curses, define _XOPEN_SOURCE_EXTENDED, since
6951           this may not otherwise be defined to make test/view.c compile.
6952
6953 20011110
6954         + review/correct several missing/generated items in curses.wide, sorted
6955           the lists to make subsequent diff's easier to track.
6956
6957 20011103
6958         + add manual pages for add_wch(), echo_wchar(), getcchar(),
6959           mvadd_wch(), mvwadd_wch(), setcchar(), wadd_wch() and wecho_wchar().
6960         + implement wecho_wchar()
6961         + modify _tracedump() to handle wide-characters by mapping them to '?'
6962           and control-characters to '.', to make the trace file readable.  Also
6963           dynamically allocate the buffer used by _tracedump() for formatting
6964           the results.
6965         + modify T_CALLED/T_RETURN macros to ease balancing call/return lines
6966           in a trace by using curly braces.
6967         + implement _nc_viscbuf(), for tracing cchar_t arrays.
6968         + correct trace-calls in setcchar() and getcchar() functions, which
6969           traced the return values but not the entry to each function.
6970         + correct usage message in test/view.c, which still mentioned -u flag.
6971
6972 20011027
6973         + modify configure script to allow building with termcap only, or with
6974           fallbacks only.  In this case, we do not build tic and toe.
6975         + add configure --with-termpath option, to override default TERMPATH
6976           value of /etc/termcap:/usr/share/misc/termcap.
6977         + cosmetic change to tack: make menu descriptions agree with menu
6978           titles.
6979
6980 20011020
6981         + rewrote limit-checks in wscrl() and associated _nc_scroll_window(),
6982           to ensure that if the parameter of wscrl() is larger than the size of
6983           the scrolling region, then the scrolling region will be cleared
6984           (report by Ben Kohlen <bckohlen@yahoo.com>).
6985         + add trace/varargs.c, using this to trace parameters in lib_printw.c
6986         + implement _tracecchar_t2() and _tracecchar_t().
6987         + split-out trace/visbuf.c
6988         + correct typo in lib_printw.c changes from 20010922 (report by Mike
6989           Castle).
6990
6991 20011013
6992         + modify run_tic.sh to check if the build is a cross-compile.  In that
6993           case, do not use the build's tic to install the terminfo database
6994           (report by Rafael Rodriguez Velilla <rrv@tid.es>).
6995         + modify mouse click resolution so that mouseinterval(-1) will disable
6996           it, e.g., to handle touchscreens via a slow connection (request by
6997           Byron Stanoszek <gandalf@winds.org>).
6998         + correct mouseinterval() default value shown in curs_mouse.3x
6999         + remove conflicting definition of mouse_trafo() (reported by Lars
7000           Hecking, using gcc 2.95.3).
7001
7002 20011001
7003         + simpler fix for signal_name(), to replace the one overlooked in
7004           20010929 (reported by Larry Virden).
7005
7006 20010929
7007         + add -i option to view.c, to test ncurses' check for non-default
7008           signal handler for SIGINT, etc.
7009         + add cases for shared-libraries on Darwin/OS X (patch by Rob Braun
7010           <bbraun@synack.net>).
7011         + modify tset to restore original I/O modes if an error is encountered.
7012           Also modify to use buffered stderr consistently rather than mixing
7013           with write().
7014         + change signal_name() function to use if-then-else rather than case
7015           statement, since signal-values aren't really integers (reported by
7016           Larry Virden).
7017         + add limit checks in wredrawln(), fixing a problem where lynx was
7018           repainting a pad which was much larger than the screen.
7019
7020 20010922
7021         + fix:  PutRange() was counting the second part of a wide character as
7022           part of a run, resulting in a cursor position that was one too far
7023           (patch by Sven Verdoolaege).
7024         + modify resizeterm() to not queue a KEY_RESIZE if there was no
7025           SIGWINCH, thereby separating the two styles of SIGWINCH handling
7026           in test/view.c
7027         + simplified lib_tstp.c, modify it to use SA_RESTART flag for SIGWINCH.
7028         + eliminate several static buffers in the terminfo compiler, using
7029           allocated buffers.
7030         + modify MKkeyname.awk so that keyname() does not store its result into
7031           a static buffer that is overwritten by the next call.
7032         + reorganize the output of infocmp -E and -e options to compile cleanly
7033           with gcc -Wwrite-strings warnings.
7034         + remove redefinition of chgat/wchgat/mvwchgat from curses.wide
7035
7036 20010915
7037         + add label to test/view.c, showing the name of the last key or signal
7038           that made the screen repaint, to make it clearer when a sigwinch
7039           does this.
7040         + use ExitProgram() consistently in the test-programs to make it
7041           simpler to test leaks with dmalloc, etc.
7042         + move hashtab static data out of hashmap.c into SCREEN struct.
7043         + make NO_LEAK code compile with revised WINDOWLIST structs.
7044
7045 20010908
7046         + modify tgetent() to check if exit_attribute_mode resets the alternate
7047           character set, and if so, attempt to adjust the copy of the termcap
7048           "me" string which it will return to eliminate that part.  In
7049           particular, 'screen' would lose track of line-drawing characters
7050           (report by Frederic L W Meunier <0@pervalidus.net>, analysis by
7051           Michael Schroeder).
7052
7053 20010901
7054         + specify DOCTYPE in html manpages.
7055         + add missing macros for several "generated" functions:  attr_get(),
7056           attr_off(), attr_on(), attr_set(), chgat(), mvchgat(), mvwchgat() and
7057           mouse_trafo().
7058         + modify view.c to agree with non-experimental status of ncurses'
7059           sigwinch handler:
7060           + change the sense of the -r option, making it default to ncurses'
7061             sigwinch handler.
7062           + add a note explaining what functions are unsafe in a signal
7063             handler.
7064           + add a -c option, to set color display, for testing.
7065         + unset $data variable in MKterminfo.sh script, to address potential
7066           infinite loop if shell malfunction (report by Samuel Mikes
7067           <smikes@cubane.com>, for bash 2.05.0 on a Linux 2.0.36 system).
7068         + change kbs in mach terminfo entries to ^?  (Marcus Brinkmann
7069           <Marcus.Brinkmann@ruhr-uni-bochum.de>).
7070         + correct logic for COLORFGBG environment variable: if rxvt is compiled
7071           with xpm support, the variable has three fields, making it slightly
7072           incompatible with itself.  In either case, the background color is
7073           the last field.
7074
7075 20010825
7076         + move calls to def_shell_mode() and def_prog_mode() before loop with
7077           callbacks in lib_set_term.c, since the c++ demo otherwise initialized
7078           the tty modes before saving them (patch by John David Anglin
7079           <dave@hiauly1.hia.nrc.ca>).
7080         + duplicate logic used to initialize trace in newterm(), in initscr()
7081           to avoid confusing trace of initscr().
7082         + simplify allocation of WINDOW and WINDOWLIST structs by making the
7083           first a part of the second rather than storing a pointer.  This saves
7084           a call to malloc for each window (discussion with Philippe Blain).
7085         + remove unused variable 'used_ncv' from lib_vidattr.c (Philippe
7086           Blain).
7087         + modify c++/Makefile.in to accommodate archive programs that are
7088           different for C++ than for C, and add cases for vendor's C++
7089           compilers on Solaris and IRIX (report by Albert Chin-A-Young).
7090         + correct manpage description of criteria for deciding if the terminal
7091           supports xterm mouse controls.
7092         + add several configure script options to aid with cross-compiling:
7093           --with-build-cc, --with-build-cflags, --with-build-ldflags, and
7094           --with-build-libs (request by Greg Roelofs).
7095         + change criteria for deciding if configure is cross-compiling from
7096           host/build mismatch to host/target mismatch (request by Greg Roelofs
7097           <greg.roelofs@philips.com>).
7098         + correct logic for infocmp -e and -E options which writes the data for
7099           the ext_Names[] array.  This is needed if one constructs a fallback
7100           table for a terminfo entry which uses extended termcap names, e.g.,
7101           AX in a color xterm.
7102         + fix undefined NCURSES_PATHSEP when configure --disable-database
7103           option is given.
7104
7105 20010811
7106         + fix for VALID_BOOLEAN() macro when char is not signed.
7107         + modify 'clean' rule for C++ binding to work with Sun compiler, which
7108           caches additional information in a subdirectory of the objects.
7109         + added llib-ncursesw.
7110
7111 20010804
7112         + add Caps.keys example for experimental extended function keys
7113           (adapted from a patch by Ilya Zakharevich).
7114         + correct parameter types of vidputs() and vidattr() to agree with
7115           header files (report by William P Setzer).
7116         + fix typos in several man-pages (patch by William P Setzer).
7117         + remove unneeded ifdef for __GNUG__ in CF_CPP_VSCAN_FUNC configure
7118           macro, which made ncurses C++ binding fail to build with other
7119           C++ compilers such as HPUX 11.x (report by Albert Chin-A-Young).
7120         + workaround for bug in HPUX 11.x C compiler: add a blank after
7121           NCURSES_EXPORT macro in form.h (report by Albert Chin-A-Young)
7122         + ignore blank lines in Caps* files in MKkey_defs.sh script (report by
7123           Albert Chin-A-Young).
7124         + correct definition of key_end in Caps.aix4, which left KEY_END
7125           undefined (report by Albert Chin-A-Young).
7126         + remove a QNX-specific fallback prototype for vsscanf(), which is
7127           obsolete with QNX RTP.
7128         + review/fix some of the T() and TR() macro calls, having noticed that
7129           there was no data for delwin() in a trace of dialog because there was
7130           no returnVoid call for wtimeout().  Also, traces in lib_twait.c are
7131           now selected under TRACE_IEVENT rather than TRACE_CALLS.
7132
7133 20010728
7134         + add a _nc_access() check before opening files listed via $TERMPATH.
7135         + using modified man2html, regenerate some of the html manpages to fix
7136           broken HREF's where the link was hyphenated.
7137
7138 20010721
7139         + add some limit/pointer checks to -S option of tputs.
7140         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
7141           (Benjamin C W Sittler).
7142         + add a note in curs_termcap.3x regarding a defect in the XSI
7143           description of tgetent (based on a discussion with Urs Jansen
7144           regarding the HPUX 11.x implementation, whose termcap interface is
7145           not compatible with existing termcap programs).
7146         + modify manhtml rule in dist.mk to preserve copyright notice on the
7147           generated files, as well as to address HTML style issues reported by
7148           tidy and weblint.  Regenerated/updated corresponding html files.
7149         + comment out use of Protected_Character and related rarely used
7150           attributes in ncurses Ada95 test/demo to compile with wide-character
7151           configuration.
7152
7153 20010714
7154         + implement a simple example in C++ demo to test scanw().
7155         + corrected stdio function used to implement scanw() in cursesw.cc
7156         + correct definition of RemAttr() macro from 20010602 changes, which
7157           caused C++ SillyDemo to not show line-drawing characters.
7158         + modify C++ binding, adding getKey() which can be overridden by user
7159           to substitute functions other than getch() for keyboard processing
7160           of forms and menus (patch by Juergen Pfeifer).
7161
7162 20010707
7163         + fix some of the trace calls which needed modification to work with
7164           new wide-character structures.
7165         + modify magic-cookie code in tty_update.c to compile with new
7166           wide-character structures (report by <George.R.Goffe@seagate.com>).
7167         + ensure that _XOPEN_SOURCE_EXTENDED is defined in curses.priv.h if
7168           compiling for wide-character configuration.
7169         + make addwnstr() handle non-spacing characters (patch by Sven
7170           Verdoolaege).
7171
7172 20010630
7173         + add configure check to define _GNU_SOURCE, needed to prop up glibc
7174           header files.
7175         + split-out include/curses.wide to solve spurious redefinitions caused
7176           by defining _GNU_SOURCE, and move includes for <signal.h> before
7177           <curses.h> to work around misdefinition of ERR in glibc 2.1.3 header
7178           file.
7179         + extended ospeed change to NetBSD and OpenBSD -TD
7180         + modify logic in lib_baudrate.c for ospeed, for FreeBSD to make it
7181           work properly for termcap applications (patch by Andrey A Chernov).
7182
7183 20010623
7184         + correct an overlooked CharOf/UChar instance (reports by Eugene Lee
7185           <eugene@anime.net>, Sven Verdoolaege).
7186         + correct unneeded ifdef for wunctrl() (reported by Sven Verdoolaege)
7187
7188 20010618
7189         + change overlooked several CharOf/UChar instances.
7190         > several patches from Sven Verdoolaege:
7191         + correct a typo in wunctrl(), which made it appear that botwc() was
7192           needed (no such function: use btowc()).
7193         + reimplement wide-character demo in test/view.c, using new functions.
7194         + implement getcchar(), setcchar(), wadd_wchnstr() and related macros.
7195         + fix a syntax problem with do/if/while in PUTC macro (curses.priv.h).
7196
7197 20010616
7198         + add parentheses in macros for malloc in test.priv.h, fixes an
7199           expression in view.c (report by Wolfgang Gutjahr <gutw@knapp.co.at>).
7200         + add Caps.uwin, as an example.
7201         + change the way curses.h is generated, making the list of function
7202           key definitions extracted from the Caps file.
7203         + add #undef's before possible redefinition of ERR and OK in curses.h
7204         + modify logic in tic, toe, tput and tset which checks for basename of
7205           argv[0] to work properly on systems such as OS/2 which have
7206           case-independent filenames and/or program suffixes, e.g., ".ext".
7207
7208 20010609
7209         + add a configure check, if --enable-widec is specified, for putwc(),
7210           which may be in libutf8.
7211         + remove some unnecessary text from curs_extend.3x and
7212           default_colors.3x which caused man-db to make incorrect symbolic
7213           links (Debian #99550).
7214         + add configure check if cast for _IO_va_list is needed to compile
7215           C++ vscan code (Debian #97945).
7216         > several patches from Sven Verdoolaege:
7217         + correct code that used non-standard auto-initialization of a struct,
7218           which gcc allows (report by Larry Virden).
7219         + use putwc() in PUTC() macro.
7220         + make addstr() work for the special case where the codeset is
7221           non-stateful (eg. UTF-8), as well as stateful codesets.
7222
7223 20010603
7224         + correct loop expression in NEXT_CHAR macro for lib_addstr.c changes
7225           from 20010602 (report by Mike Castle).
7226
7227 20010602
7228         + modify mvcur() to avoid emitting newline characters when nonl() mode
7229           is set.  Normally this is not a problem since the actual terminal
7230           mode is set to suppress nl/crlf translations, however it is useful to
7231           allow the caller to manipulate the terminal mode to avoid staircasing
7232           effects after spawning a process which writes messages (for lynx
7233           2.8.4) -TD
7234         > several patches from Sven Verdoolaege <skimo@kotnet.org>:
7235         + remove redundant type-conversion in fifo_push()
7236         + correct definition of addwstr() macro in curses.h.in
7237         + remove _nc_utf8_outch()
7238         + rename most existing uses of CharOf() to UChar(), e.g., where it is
7239           used to prevent sign-extension in ctype macros.
7240         + change some chtype's to attr_t's where the corresponding variables
7241           are used to manipulate attributes.
7242         + UpdateAttr() was applied to both attributes (attr_t) and characters
7243           (chtype).  Modify macro and calls to it to make these distinct.
7244         + add CharEq() macro, use in places where wide-character configuration
7245           implementation uses a struct for cchar_t.
7246         + moved struct ldat into curses.priv.h, to hide implementation details.
7247         + change CharOf() macro to use it for masking A_CHARTEXT data from
7248           chtype's.
7249         + add L() macro to curses.priv.h, for long-character literals.
7250         + replace several assignments from struct ldat entries to chtype or
7251           char values with combinations of CharOf() and AttrOf() macros.
7252         + add/use intermediate ChAttrOf() and ChCharOf() macros where we know
7253           we are using chtype data.
7254         + add/use lowlevel attribute manipulation macros AddAttr(), RemAttr()
7255           and SetAttr().
7256         + add/use SetChar() macro, to change a cchar_t based on a character and
7257           attributes.
7258         + convert most internal use of chtype to NCURSES_CH_T, to simplify use
7259           of cchar_t for wide-character configuration.  Similarly, use ARG_CH_T
7260           where a pointer would be more useful.
7261         + add stubs for tracing cchar_t values.
7262         + add/use macro ISBLANK()
7263         + add/use constructors for cchar_t's: NewChar(), NewChar2().
7264         + add/use macros CHREF(), CHDEREF(), AttrOfD(), CharOfD() to facilitate
7265           passing cchar_t's by address.
7266         + add/use PUTC_DATA, PUTC() macros.
7267         + for wide-character configuration, move the window background data to
7268           the end of the WINDOW struct so that whether _XOPEN_SOURCE_EXTENDED
7269           is defined or not, the offsets in the struct will not change.
7270         + modify addch() to work with wide-characters.
7271         + mark several wide-character functions as generated in curses.h.in
7272         + implement wunctrl(), wadd_wch(), wbkgrndset(), wbkgrnd(),
7273           wborder_set() and waddnwstr().
7274
7275 20010526
7276         + add experimental --with-caps=XXX option to customize to similar
7277           terminfo database formats such as AIX 4.x
7278         + add Caps.aix4 as an example.
7279         + modify Caps to add columns for the the KEY_xxx symbols.
7280         + modify configure --with-widec to suppress overwrite of libcurses.so
7281           and curses.h
7282         + add checks to toe.c to avoid being confused by files and directories
7283           where we would expect the reverse, e.g., source-files in the
7284           top-level terminfo levels as is the case for AIX.
7285
7286 20010519
7287         + add top-level 'depend' rule for the C sources, assuming that the
7288           makedepend program is available.  As a side-effect, this makes
7289           the generated sources, as in "make sources" (prompted by a report
7290           by Mike Castle that "make -j" fails because the resulting parallel
7291           processes race to generate ncurses/names.c).
7292         + modify configure script so that --disable-overwrite option's action
7293           to add a symbolic link for libcurses applies to the static library as
7294           well as the shared library when both are configured (report by Felix
7295           Natter <f.natter@ndh.net>).
7296         + add ELKS terminfo entries (Federico Bianchi
7297           <bianchi@www.arte.unipi.it>)
7298         + add u6 (CSR) to Eterm (Michael Jennings).
7299
7300 20010512
7301         + modify test/ncurses.c to work with xterm-256color, which has fewer
7302           color pairs than colors*colors (report by David Ellement
7303           <ellement@sdd.hp.com>).
7304
7305 20010505
7306         + corrected screen.xterm-xfree86 entry.
7307         + update comment in Caps regarding IBM (AIX) function-key definitions.
7308
7309 20010421
7310         + modify c++/Makefile.in to link with libncurses++w.a when configured
7311           for wide-characters (patch by Sven Verdoolaege).
7312         + add check in _nc_trace_buf() to refrain from freeing a null pointer.
7313         + improve CF_PROG_INSTALL macro using CF_DIRNAME.
7314         + update config.guess, config.sub from autoconf 2.49e (alpha).
7315
7316 20010414
7317         + add secondary check in tic.c, similar_sgr() to see if the reason
7318           for mismatch was that the individual capabilities used a time-delay
7319           while sgr did not.  Used this to cleanup mismatches, e.g., in vt100,
7320           and remove time-delay from Apple_Terminal entries.
7321         + add Apple_Terminal terminfo entries (Benjamin C W Sittler
7322           <bsittler@iname.com>).
7323         + correct definitions of shifted editing keys for xterm-xfree86 -TD
7324         + fix a bug in test/bs.c from 20010407 (patch by Erik Sigra).
7325         + prevent relative_move() from doing an overwrite if it detects 8-bit
7326           characters when configured for UTF-8 (reported by Sven Verdoolaege
7327           <skimo@kotnet.org>).
7328
7329 20010407
7330         + add configure checks for strstream.h vscan function, and similar
7331           stdio-based function which may be used in C++ binding for gcc 3.0
7332           (reports by George Goffe, Lars Hecking, Mike Castle).
7333         + rewrite parts of configure.in which used changequote().  That feature
7334           is broken in the latest autoconf alphas (e.g., 2.49d).
7335         + add a missing pathname for ncurses_dll.h, needed when building in
7336           a directory outside the source tree (patch by Sven Verdoolaege
7337           <skimo@kotnet.org>).
7338         > fix 2 bugs in test/bs.c Erik Sigra <sigra@home.se>:
7339         + no ships were ever placed in the last row or in the last column.
7340           This made the game very easy to win, because you never had to waste
7341           any shots there, but the computer did.
7342         + the squares around a sunken ship that belonged to the player were not
7343           displayed as already hit by the computer, like it does for the
7344           player.
7345
7346 20010331
7347         + add some examples of customizing screen's terminfo:
7348           screen.xterm-xfree86, screen.xterm-r6, screen.teraterm -TD
7349         + modify screen's terminfo entry to match the khome/kend in screen
7350           3.09.08 (Debian #92215).
7351         + correct a memory leak in forms library (report by Stefan Vogtner
7352           <stefan@vogtner.de>) (patch by Juergen Pfeifer).
7353
7354 20010324
7355         + change symbols used to guard against repeated includes to begin
7356           consistently with "NCURSES_" rather than a leading underscore.  There
7357           are other symbols defined in the header files which begin with a
7358           leading underscore, but they are part of the legacy interface.
7359         + reorder includes in c++ binding so that rcs identifiers can be
7360           compiled-in.
7361         + add .cc.ii rule to c++ makefile, to get preprocessor output for
7362           debugging.
7363         + correct configure script handling of @keyword@ substitutions when the
7364           --with-manpage-renames option is given (cf: 20000715, fixes Debian
7365           #89939).
7366         + report stack underflow/overflow in tparm() when tic -cv option is
7367           given.
7368         + remove spurious "%|" operator from xterm-xfree86 terminfo entry,
7369           (reported by Adam Costello <amc@cs.berkeley.edu>, Debian #89222).
7370
7371 20010310
7372         + cleanup of newdemo.c, fixing some ambiguous expressions noted by gcc
7373           2.95.2, and correcting some conflicting color pair initializations.
7374         + add missing copyright notice for cursesw.h
7375         + review, make minor fixes for use of '::' for referring to C-language
7376           interface from C++ binding.
7377         + modify configure check for g++ library slightly to accommodate
7378           nonstandard version number, e.g., <vendor>-2.7 (report by Ronald Ho
7379           <rho@mipos2.intel.com>).
7380         + add configure check for c++ <sstream> header, replace hardcoded
7381           ifdef.
7382         + workaround for pre-release of gcc 3.0 libstdc++, which has dropped
7383           vscan from strstreambuf to follow standard, use wrapper for C vscanf
7384           instead (report by George Goffe <grgoffe@excite.com> and Matt Taggart
7385           <taggart@carmen.fc.hp.com>, fixes Debian .
7386
7387 20010303
7388         + modify interface of _nc_get_token() to pass 'silent' parameter to it,
7389           to make quieter loading of /etc/termcap (patch by Todd C Miller).
7390         + correct a few typos in curs_slk.3x and curs_outopts.3x manpages
7391           (patch by Todd C Miller).
7392
7393 20010224
7394         + compiler-warning fixes (reported by Nelson Beebe).
7395
7396 20010210
7397         + modify screen terminfo entry to use new 3.9.8 feature allowing xterm
7398           mouse controls -TD
7399
7400 20010203
7401         + broaden patterns used to match OS/2 EMX in configure script to cover
7402           variant used in newer config.guess/config.sub
7403         + remove changequote() calls from configure script, since this feature
7404           is broken in the autoconf 2.49c alpha, maintainers decline to fix.
7405         + remove macro callPutChar() from tty_update.c, since this is no longer
7406           needed (reported by Philippe Blain).
7407         + add a null-pointer check in tic.c to handle the case when the input
7408           file is really empty.  Modify the next_char() function in comp_scan.c
7409           to allow arbitrarily long lines, and incidentally supply a newline to
7410           files that do not end in a newline.  These changes improve tic's
7411           recovery from attempts to read binary files, e.g., its output from
7412           the terminfo database (reported by Bernhard Rosenkraenzer).
7413
7414 20010127
7415         + revert change to c++/demo.cc from 20001209, which changed definition
7416           of main() apparently to accommodate cygwin linker, but broke the demo
7417           program.
7418         + workaround for broken egcs 2.91.66 which calls member functions
7419           (i.e., lines() and colors() of NCursesWindow before calling its
7420           constructor.  Add calls to initialize() in a few constructors which
7421           did not do this already.
7422         + use the GNAT preprocessor to make the necessary switch between TRACE
7423           and NO_TRACE configurations (patch by Juergen Pfeifer).
7424         > patches by Bernhard Rosenkraenzer:
7425         + modify kterm terminfo entry to use SCS sequence to support alternate
7426           character set (it does not work with SI/SO).
7427         + --with-ospeed=something didn't work.  configure.in checked for a
7428           $enableval where it should check for $withval.  Also,
7429           ncurses/llib-lncurses still had a hardcoded short.
7430
7431 20010114
7432         + correction to my merge of Tom Riddle's patch that broke tic in some
7433           conditions (reported by Enoch Wexler <enoch@wexler.co.il>) -TD
7434
7435 20010113
7436         + modify view.c to test halfdelay().  Like other tests, this recognizes
7437           the 's' and space commands for stopping/starting polled input, shows
7438           a freerunning clock in the header.  If given a parameter to 's', that
7439           makes view.c use halfdelay() with that parameter rather than
7440           nodelay().
7441         + fix to allow compile with the experimental configure option
7442           --disable-hashmap.
7443         + modify postprocess_termcap() to avoid overwriting key_backspace,
7444           key_left, key_down when processing a non-base entry (report/patch by
7445           Tom Riddle).
7446         + modify _nc_wrap_entry(), adding option to reallocate the string
7447           table, needed in _nc_merge_entry() when merging termcap entries.
7448           (adapted from report/patch by Tom Riddle <ftr@oracom.com>).
7449         + modify a few configure script macros to keep $CFLAGS used only for
7450           compiler options, preprocessor options in $CPPFLAGS.
7451
7452 20001230
7453         + correct marker positions in lrtest.c after receiving a sigwinch.
7454         + fix ifdef's in ncurses.c to build against pre-5.2 for testing.
7455         + fixes to tclock for resizing behavior, redundant computation (report
7456           and patch by A M Kuchling <akuchlin@mems-exchange.org>).
7457
7458 20001216
7459         + improved scoansi terminfo entry -TD
7460         + modify configure script and makefile in Ada95/src to compile a stub
7461           for the trace functions when ncurses does not provide those.
7462
7463 20001209
7464         + add ncurses_dll.h and related definitions to support generating DLL's
7465           with cygwin (adapted from a patch by Charles Wilson
7466           <cwilson@ece.gatech.edu>, changed NCURSES_EXPORT macro to make it
7467           work with 'indent') -TD
7468
7469 20001202
7470         + correct prototypes for some functions in curs_termcap.3x, matching
7471           termcap.h, which matches X/Open.
7472         > patch by Juergen Pfeifer:
7473         + a revised version of the Ada enhancements sent in by "H.
7474           Nanosecond", aka Eugene V Melaragno <aldomel@ix.netcom.com>.  This
7475           patch includes
7476           - small fixes to the existing ncurses binding
7477           - addition of some more low-level functions to the binding, including
7478             termcap and terminfo functions
7479           - An Ada implementation of the "ncurses" test application originally
7480             written in C.
7481
7482 20001125
7483         + modify logic in lib_setup.c to allow either lines or columns value
7484           from terminfo to be used if the screen size cannot be determined
7485           dynamically rather than requiring both (patch by Ehud Karni
7486           <ehud@unix.simonwiesel.co.il>).
7487         + add check in lib_tgoto.c's is_termcap() function to reject null or
7488           empty strings (reported by Valentin Nechayev <netch@netch.kiev.ua> to
7489           freebsd-bugs).
7490         + add definition from configure script that denotes the path-separator,
7491           which is normally a colon.  The path-separator is a semicolon on
7492           OS/2 EMX and similar systems which may use a colon within pathnames.
7493         + alter logic to set default for --disable-overwrite option to set it
7494           to 'yes' if the --prefix/$prefix value is not /usr/local, thereby
7495           accommodating the most common cause of problems: gcc's nonstandard
7496           search rules.  Other locations such as /usr/local/ncurses will
7497           default to overwriting (report by Lars Hecking <lhecking@nmrc.ie>).
7498
7499 20001118
7500         + modify default for --disable-overwrite configure option to disable
7501           if the --prefix or $prefix value is not /usr.
7502         + add cygwin to systems for which ncurses is installed by default into
7503           /usr rather than /usr/local.
7504
7505 20001111
7506         + minor optimization in comp_error.c and lib_termname.c, using
7507           strncat() to replace strncpy() (patch by Solar Designer).
7508         + add a use_terminfo_vars() check for $HOME/.termcap, and check for
7509           geteuid() to use_terminfo_vars() (patch by Solar Designer
7510           <solar@false.com>).
7511         + improved cygwin terminfo entry, based on patch by
7512           <ernie_boyd@yahoo.com>.
7513         + modify _nc_write_entry() to allow for the possibility that linking
7514           aliases on a filesystem that ignores case would not succeed because
7515           the source and destination differ only by case, e.g., NCR260VT300WPP0
7516           on cygwin (report by Neil Zanella).
7517         + fix a typo in the curs_deleteln.3x man page (patch by Bernhard
7518           Rosenkraenzer <bero@redhat.de>).
7519
7520 20001104
7521         + add configure option --with-ospeed to assist packagers in transition
7522           to 5.3 change to ospeed type.
7523         + add/use CharOf() macro to suppress sign-extension of char type on
7524           platforms where this is a problem in ctype macros, e.g., Solaris.
7525         + change trace output to binary format.
7526         + correct a missing quote adjustment in CF_PATH_SYNTAX autoconf
7527           macro, for OS/2 EMX configuration.
7528         + rearrange a few configure macros, moving preprocessor options to
7529           $CPPFLAGS (a now-obsolete version of autoconf did not consistently
7530           use $CPPFLAGS in both the compile and preprocessor checks).
7531         + add a check in relative_move() to guard against buffer overflow in
7532           the overwrite logic.
7533
7534 20001028
7535         + add message to configure script showing g++ version.
7536         + resync config.guess, config.sub
7537         + modify lib_delwin.c, making it return ERR if the window did not exist
7538           (suggested by Neil Zanella).
7539         + add cases for FreeBSD 3.1 to tdlint and makellib scripts, used this
7540           to test/review ncurses library.  (Would use lclint, but it doesn't
7541           work).
7542         + reorganized knight.c to avoid forward references.  Correct screen
7543           updates when backtracking, especially to the first cell.  Add F/B/a
7544           commands.
7545
7546 20001021 5.2 release for upload to ftp.gnu.org
7547         + update generated html files from manpages.
7548         + modify dist.mk to use edit_man.sh to substitute autoconf'd variables
7549           in html manpages.
7550         + fix an uninitialized pointer in read_termcap.c (report by Todd C
7551           Miller, from report/patch by Philip Guenther <guenther@gac.edu>).
7552         + correct help-message and array limit in knight.c (patch by Brian
7553           Raiter <breadbox@muppetlabs.com>).
7554         > patch by Juergen Pfeifer:
7555         + fix to avoid warning by GNAT-3.13p about use of inconsistent casing
7556           for some identifiers defined in the standard package.
7557         + cosmetic change to forms/fty_enum.c
7558
7559 20001014
7560         + correct an off-by-one position in test/railroad.c which could cause
7561           wrapping at the right margin.
7562         + test/repair some issues with libtool configuration.  Make
7563           --disable-echo force libtool --silent.  (Libtool does not work for
7564           OS/2 EMX, works partly for SCO - libtool is still very specific to
7565           gcc).
7566         + change default of --with-manpage-tbl to "no", since for most of the
7567           platforms which do have tbl installed, the system "man" program
7568           understands how to run tbl automatically.
7569         + minor improvement to force_bar() in comp_parse.c (Bernhard
7570           Rosenkraenzer <bero@redhat.de>).
7571         + modify lib_tparm.c to use get_space() before writing terminating
7572           null character, both for consistency as well as to ensure that if
7573           save_char() was called immediately before, that the allocated memory
7574           is enough (patch by Sergei Ivanov).
7575         + add note about termcap ML capability which is duplicated between two
7576           different capabilities:  smgl and smglr (reported by Sergei Ivanov
7577           <svivanov@pdmi.ras.ru>).
7578         + correct parameter counts in include/Caps for dclk as well as some
7579           printer-specific capabilities: csnm, defc, scs, scsd, smgtp, smglp.
7580         > patch by Johnny C Lam <lamj@stat.cmu.edu>:
7581         + add support for building with libtool (apparently version 1.3.5,
7582           since old versions do not handle -L../lib), using new configure
7583           option --with-libtool.
7584         + add configure option --with-manpage-tbl, which causes the manpages to
7585           be preprocessed by tbl(1) prior to installation,
7586         + add configure option --without-curses-h, which causes the
7587           installation process to install curses.h as ncurses.h and make
7588           appropriate changes to headers and manpages.
7589
7590 20001009
7591         + correct order of options/parameters in run_tic.in invocation of tic,
7592           which did not work with standard getopt() (reported by Ethan
7593           Butterfield <primus@veris.org>).
7594         + correct logic for 'reverse' variable in lib_vidattr.c, which was
7595           setting it true without checking if newmode had A_REVERSE set, e.g.,
7596           using $TERM=ansi on OS/2 EMX (see 20000917).
7597         > patch by Todd C Miller:
7598         + add a few missing use_terminfo_vars() and fixes up _nc_tgetent().
7599           Previously, _nc_cgetset() would still get called on cp so the
7600           simplest thing is to set cp to NULL if !use_terminfo_vars().
7601         + added checks for an empty $HOME environment variable.
7602         > patches for OS/2 EMX (Ilya Zakharevich):
7603         + modify convert_configure.pl to support INSTALL.  Change compiler
7604           options in that script to use multithreading, needed for the mouse.
7605         + modify OS/2 mouse support, retrying as a 2-button mouse if code fails
7606           to set up a 3-button mouse.
7607         + improve code for OS/2 mouse support, using _nc_timed_wait() to
7608           replace select() call.
7609
7610 20001007
7611         + change type of ospeed variable back to short to match its use in
7612           legacy applications (reported by Andrey A Chernov).
7613         + add case to configure script for --enable-rpath on IRIX (patch by
7614           Albert Chin-A-Young).
7615         + minor fix to position_check() function, to ensure it gets the whole
7616           cursor report before decoding.
7617         + add configure option --disable-assumed-color, to allow pre-5.1
7618           convention of default colors used for color-pair 0 to be configured
7619           (see assume_default_colors()).
7620         + rename configure option --enable-hashmap --disable-hashmap, and
7621           reorder the configure options, splitting the experimental and
7622           development
7623         + add configure option --disable-root-environ, which tells ncurses to
7624           disregard $TERMINFO and similar environment variables if the current
7625           user is root, or running setuid/setgid (based on discussion with
7626           several people).
7627         + modified misc/run_tic.in to use tic -o, to eliminate dependency on
7628           $TERMINFO variable for installs.
7629         + add table entry for plab_norm to tput, so it passes in strings
7630           for that capability.
7631         + modify parse_format() in lib_tparm.c to ignore precision if it is
7632           longer than 10000 (report by Jouko Pynnonen).
7633         + rewrote limit checks in lib_mvcur.c using new functions
7634           _nc_safe_strcat(), etc.  Made other related changes to check lengths
7635           used for strcat/strcpy (report by Jouko Pynnonen
7636           <jouko@solutions.fi>).
7637
7638 20000930
7639         + modify several descriptions, including those for setaf, setab, in
7640           include/Caps to indicate that the entries are parameterized.  This
7641           information is used to tell which strings are translated when
7642           converting to termcap.  Fixes a problem where the generated termcap
7643           would contain a spurious "%p1" for the terminfo "%p1%d".
7644         + modify ld -rpath options (e.g., Linux, and Solaris) to use an
7645           absolute pathname for the build tree's lib directory (prompted by
7646           discussion with Albert Chin-A-Young).
7647         + modify "make install.man" and "make uninstall.man" to include tack's
7648           man-page.
7649         + various fixes for install scripts used to support configure --srcdir
7650           and --with-install-prefix (reported by Matthew Clarke
7651           <Matthew_Clarke@mindlink.bc.ca>).
7652         + make configure script checks on variables $GCC and $GXX consistently
7653           compare against 'yes' rather than test if they are nonnull, since
7654           either may be set to the corresponding name of the C or C++ compiler
7655           (report/patch by Albert Chin-A-Young).
7656
7657 20000923
7658         + modify rs2 capability in xterm-r6 and similar where cursor
7659           save/restore bracketed the sequence for resetting video attributes.
7660           The cursor restore would undo that (report by John Hawkinson
7661           <jhawk@MIT.EDU> (see NetBSD misc/11052)).
7662         + using parameter check added to tic, corrected 27 typos in
7663           terminfo.src -TD
7664         + modify tic to verify that its inputs are really files, in case
7665           someone tries to read a directory (or /dev/zero).
7666         + add a check for empty buffers returned by fgets() in comp_scan.c
7667           next_char() function, in case tic is run on a non-text file (fixes
7668           a core dump reported by Aaron Campbell <aaron@cs.dal.ca>).
7669         + add to railroad.c some code exercising tgoto(), providing an
7670           alternate form of display if the terminal supports cursor addressing.
7671         + split-out tgoto() again, this time into new file lib_tgoto.c, and
7672           implement a conventional BSD-style tgoto() which is used if the
7673           capability string does not contain terminfo-style padding or
7674           parameters (requested by Andrey A Chernov).
7675         + add check to tic which reports capabilities that do not reference
7676           the expected number of parameters.
7677         + add error checking to infocmp's -v and -m options to ensure that
7678           the option value is indeed a number.
7679         + some cleanup of logic in _nc_signal_handler() to verify if SIGWINCH
7680           handler is setup.  Separated the old/new sigaction data for SIGTSTP
7681           from the other signals.
7682
7683 20000917
7684         + add S0, E0 extensions to screen's terminfo entry, which is another
7685           way to solve the misconfiguration issue -TD
7686         + completed special case for tgoto from 20000916
7687
7688 20000916
7689         + update xterm terminfo entries to match XFree86 xterm patch #146 -TD
7690         + add Matrix Orbital terminfo entries (from Eric Z Ayers
7691           <eric@ale.org>).
7692         + add special case to lib_tparm.c to allow 'screen' program to use a
7693           termcap-style parameter "%." to tgoto() for switching character sets.
7694         + use LN_S substitution in run_tic.in, to work on OS/2 EMX which has
7695           no symbolic links.
7696         + updated notes in README.emx regarding autoconf patches.
7697         + replace a lookup table in lib_vidattr.c used to decode no_color_video
7698           with a logic expression (suggested by Philippe Blain).
7699         + add a/A toggle to ncurses.c 'b' test, which clears/sets alternate
7700           character set attribute from the displayed text.
7701         + correct inequality in parameter analysis of rewritten lib_tparm.c
7702           which had the effect of ignoring p9 in set_attributes (sgr), breaking
7703           alternate character set (reported by Piotr Majka <charvel@link.pl>).
7704         + correct ifdef'ing for GCC_PRINTF, GCC_SCANF which would not compile
7705           with Sun WorkShop compilers since these tokens were empty (cf:
7706           20000902, reported by Albert Chin-A-Young).
7707
7708 20000909
7709         + correct an uninitialized parameter to open_tempfile() in tic.c which
7710           made "tic -I" give an ambiguous error message about tmpnam.
7711         + add special case in lib_vidattr.c to reset underline and standout for
7712           devices that have no sgr0 defined (patch by Don Lewis
7713           <Don.Lewis@tsc.tdk.com>).  Note that this will not work for bold
7714           mode, since there is no exit-bold-mode capability.
7715         + improved patch for Make_Enum_Type (patch by Juergen Pfeifer).
7716         + modify tparm to disallow arithmetic on strings, analyze the varargs
7717           list to read strings as strings and numbers as numbers.
7718         + modify tparm's internal function spop() to treat a null pointer as
7719           an empty string.
7720         + modify tput program so it can be renamed or invoked via a link as
7721           'reset' or 'init', producing the same effect as 'tput reset' or 'tput
7722           init'.
7723         + add private entrypoint _nc_basename(), use to consolidate related
7724           code in progs, as well as accommodating OS/2 EMX pathnames.
7725         + remove NCURSES_CONST line from edit_cfg.sh to compensate for its
7726           removal (except via AC_SUBST) from configure.in, making
7727           --enable-const work again (reported by Juergen Pfeifer).
7728         + regen'd configure to pick up "hpux*" change from 20000902.
7729
7730 20000902
7731         + modify tset.c to check for transformed "reset" program name, if any.
7732         + add a check for null pointer in Make_Enum_Type() (reported by Steven
7733           W Orr <steveo@world.std.com>).
7734         + change functions _nc_parse_entry() and postprocess_termcap() to avoid
7735           using strtok(), because it is non-reentrant (reported by Andrey A
7736           Chernov <ache@nagual.pp.ru>).
7737         + remove "hpux10.*" case from CF_SHARED_OPTS configure script macro.
7738           This differed from the "hpux*" case by using reversed symbolic
7739           links, which made the 5.1 version not match the configuration of
7740           5.0 shared libraries (reported by Albert Chin-A-Young).
7741         + correct a dependency in Ada95/src/Makefile.in which prevented
7742           building with configure --srcdir (patch by H Nanosecond
7743           <aldomel@ix.netcom.com>).
7744         + modify ifdef's in curses.h.in to avoid warning if GCC_PRINTF or
7745           GCC_SCANF was not previously defined (reported by Pavel Roskin
7746           <proski@gnu.org>).
7747         + add MKncurses_def.sh to generate fallback definitions for
7748           ncurses_cfg.h, to quiet gcc -Wundef warnings, modified ifdef's in
7749           code to consistently use "#if" rather than "#ifdef".
7750
7751 20000826
7752         + add QNX qansi entries to terminfo -TD
7753         + add os2 entry to misc/emx.src (<jmcoopr@webmail.bmi.net>).
7754         + add configure option --with-database to allow specifying a different
7755           terminfo source-file to install.  On OS/2 EMX, this defaults to
7756           misc/emx.src
7757         + change misc/run_tic.sh to derive it from misc/run_tic.in, to simplify
7758           setting .exe extension on OS/2 EMX.
7759         + add .exe extension in Ada95/gen/Makefile.in,
7760           Ada95/samples/Makefile.in, for OS/2 EMX (reported by
7761           <jmcoopr@webmail.bmi.net>).
7762         + add configure check for filesystems (such as OS/2 EMX) which do not
7763           distinguish between upper/lowercase filenames, use this to fix tags
7764           rules in makefiles.
7765         + initialize fds[] array to 0's in _nc_timed_wait(); apparently poll()
7766           only sets the revents members of that array when there is activity
7767           corresponding to the related file (report by Glenn Cooper
7768           <gcooper@qantas.com.au>, using Purify on Solaris 5.6).
7769         + change configure script to use AC_CANONICAL_SYSTEM rather than
7770           AC_CANONICAL_HOST, which means that configure --target will set
7771           a default program-prefix.
7772         + add note on cross-compiling to INSTALL (which does not rely on the
7773           AC_CANONICAL_* macros).
7774
7775 20000819
7776         + add cases for EMX OS/2 to config.guess, config.sub
7777         + new version of config.guess, config.sub from lynx 2.8.4dev.7
7778         + add definitions via transform.h to allow tic and tput to check for
7779           the transformed aliases rather than the original infotocap, etc.
7780         + simplify transform-expressions in progs/Makefile.in, make the
7781           uninstall rule work for transformed program names.
7782         + change symbol used by --install-prefix configure option from
7783           INSTALL_PREFIX to DESTDIR (the latter has become common usage
7784           although the name is misleading).
7785         + modify programs to use curses_version() string to report the version
7786           of ncurses with which they are compiled rather than the
7787           NCURSES_VERSION string.  The function returns the patch level in
7788           addition to the major and minor version numbers.
7789
7790 20000812
7791         + modify CF_MAN_PAGES configure macro to make transformed program names
7792           a parameter to that macro rather than embedding them in the macro.
7793         + newer config.guess, config.sub (reference version used in lynx
7794           2.8.4dev.7).
7795         + add configure option --with-default-terminfo-dir=DIR to allow
7796           specifying the default terminfo database directory (request by Albert
7797           Chin-A-Young).
7798         + minor updates for terminfo.src from FreeBSD termcap change-history.
7799         + correct notes in README and INSTALL regarding documentation files
7800           that were moved from misc directory to doc (report by Rich Kulawiec
7801           <rsk@gsp.org>).
7802         + change most remaining unquoted parameters of 'test' in configure
7803           script to use quotes, for instance fixing a problem in the
7804           --disable-database option (reported by Christian Mondrup
7805           <scancm@biobase.dk>).
7806         + minor adjustments to work around some of the incompatibilities/bugs
7807           in autoconf 2.29a alpha.
7808         + add -I/usr/local/include when --with-ncurses option is used in
7809           test/configure script.
7810         + correct logic in adjust_cancels(), which did not check both
7811           alternatives when reclassifying an extended name between boolean,
7812           number and string, causing an infinite loop in tic.
7813
7814 20000730
7815         + correct a missing backslash in curses.priv.h
7816
7817 20000729
7818         + change handling of non_dest_scroll_region in tty_update.c to clear
7819           text after it is shifted in rather than before shifting out.  Also
7820           correct row computation (reported by Ruediger Kuhlmann
7821           <uck4@rz.uni-karlsruhe.de>).
7822         + add/use new trace function to display chtype values from winch() and
7823           getbkgd().
7824         + add trace mask TRACE_ATTRS, alter several existing _tracef calls that
7825           trace attribute changes under TRACE_CALLS to use this.
7826         + modify MKlib_gen.sh so that functions returning chtype will call
7827           returnChar().
7828         + add returnChar() trace, for functions returning chtype.
7829         + change indent.pro to line up parenthesis.
7830
7831 20000722
7832         + fix a heap problem with the c++ binding (report by
7833           <alexander_liberson@ninewest.com>, patch by Juergen Pfeifer).
7834         + minor adjustment to ClrToEOL() to handle an out-of-bounds parameter.
7835         + modify the check for big-core to force a couple of memory accesses,
7836           which may work as needed for older/less-capable machines (if not,
7837           there's still the explicit configure option).
7838         > fixes based on diff's for Amiga and BeOS found at
7839           http://www.mathematik.uni-karlsruhe.de/~kuhlmann/cross/ncurses/
7840         + alter definition of NCURSES_CONST to make it non-empty.
7841         + add amiga-vnc terminfo entry.
7842         + redefine 'TEXT' in menu.h for AMIGA, since it is reported to have
7843           an (unspecified) symbol conflict.
7844         + replaced case-statement in _nc_tracebits() for CSIZE with a table to
7845           simplify working around implementations that define random
7846           combinations of the related macros to zero.
7847         + modify configure test for tcgetattr() to allow for old
7848           implementations, e.g., on BeOS, which only defined it as a macro.
7849         > patches by Bruno Haible:
7850         + when checking LC_ALL/LC_CTYPE/LANG environment variables for UTF-8
7851           locale, ignore those which are set to an empty value, as per SUSV2.
7852         + encode 0xFFFD in UTF-8 with 3 bytes, not 2.
7853         + modify _nc_utf8_outch() to avoid sign-extension when checking for
7854           out-of-range value.
7855
7856 20000715
7857         + correct manlinks.sed script to avoid using ERE "\+", which is not
7858           understood by older versions of sed (patch by Albert Chin-A-Young).
7859         + implement configure script options that transform installed program
7860           names, e.g., --program-prefix, including the manpage names and cross
7861           references (patch by Albert Chin-A-Young <china@thewrittenword.com>).
7862         + correct several mismatches between manpage filename and ".TH"
7863           directives, renaming dft_fgbg.3x to default_colors.3x and
7864           menu_attribs.3x to menu_attributes.3x (report by Todd C Miller).
7865         + correct missing includes for <string.h> in several places, including
7866           the C++ binding.  This is not noted by gcc unless we use the
7867           -fno-builtin option (reported by Igor Schein <igor@txc.com>).
7868         + modified progs/tset.c and tack/sysdep.c to build with sgttyb
7869           interface if neither termio or termios is available.  Tested this
7870           with FreeBSD 2.1.5 (which does have termios - but the sgttyb does
7871           work).
7872
7873 20000708 5.1 release for upload to ftp.gnu.org
7874         + document configure options in INSTALL.
7875         + add man-page for ncurses trace functions.
7876         + correct return value shown in curs_touch.3x for is_linetouched() and
7877           is_wintouched(), in curs_initscr.3x for isendwin(), and in
7878           curs_termattr.3x for has_ic() and has_il().
7879         + add prototypes for touchline() and touchwin(), adding them to the
7880           list of generated functions.
7881         + modify fifo_push() to put ERR into the fifo just like other values to
7882           return from wgetch().  It was returning without doing that, making
7883           end-of-file condition incorrectly return a 0 (reported by Todd C
7884           Miller).
7885         + uncomment CC_SHARED_OPTS for progs and tack (see 971115), since they
7886           are needed for SCO OpenServer.
7887         + move _nc_disable_period from free_ttype.c to comp_scan.c to appease
7888           dynamic loaders on SCO and IRIX64.
7889         + add "-a" option to test/ncurses.c to invoke assume_default_colors()
7890           for testing.
7891         + correct assignment in assume_default_colors() which tells ncurses
7892           whether to use default colors, or the assumed ones (reported by Gary
7893           Funck <gary@Intrepid.Com>).
7894         + review/correct logic in mk-1st.awk for making symbolic links for
7895           shared libraries, in particular for FreeBSD, etc.
7896         + regenerate misc/*.def files for OS/2 EMX dll's.
7897         + correct quoting of values for CC_SHARED_OPTS in aclocal.m4 for
7898           cases openbsd2*, openbsd*, freebsd* and netbsd* (patch by Peter
7899           Wemm) (err in 20000610).
7900         + minor updates to release notes, as well as adding/updating URLs for
7901           examples cited in announce.html
7902         > several fixes from Philippe Blain <philippe.blain2@freesbee.fr>:
7903         + correct placement of ifdef for NCURSES_XNAMES in function
7904           _nc_free_termtype(), fixes a memory leak.
7905         + add a call to _nc_synchook() to the end of function whline() like
7906           that in wvline() (difference was in 1.9.4).
7907         + make ClearScreen() a little faster by moving two instances of
7908           UpdateAttr() out of for-loops.
7909         + simplify ClrBottom() by eliminating the tstLine data, using for-loops
7910           (cf: 960428).
7911
7912 20000701 pre-release
7913         + change minor version to 1, i.e., ncurses 5.1
7914         + add experimental configure option --enable-colorfgbg to check for
7915           $COLORTERM variable as set by rxvt/aterm/Eterm.
7916         + add Eterm terminfo entry (Michael Jennings <mej@valinux.com>).
7917         + modify manlinks.sed to pick aliases from the SYNOPSIS section, and
7918           several manpages so manlinks.sed can find aliases for creating
7919           symbolic links.
7920         + add explanation to run_tic.sh regarding extended terminal
7921           capabilities.
7922         + change message format for edit_cfg.sh, since some people interpret
7923           it as a warning.
7924         + correct unescaped '$' in sysv5uw7*|unix_sv* rule for CF_SHARED_OPTS
7925           configure macro (report by Thanh Ma <Thanh.Ma@casi-rusco.com>).
7926         + correct logic in lib_twait.c as used by lib_mouse.c for GPM mouse
7927           support when poll() is used rather than select() (prompted by
7928           discussion with David Allen <DAllen24@aol.com>).
7929
7930 20000624 pre-release
7931         + modify TransformLine() to check for cells with different color pairs
7932           that happen to render the same display colors.
7933         + apply $NCURSES_NO_PADDING to cost-computation in mvcur().
7934         + improve cost computation in PutRange() by accounting for the use
7935           of parm_right_cursor in mvcur().
7936         + correct cost computation in EmitRange(), which was not using the
7937           normalized value for cursor_address.
7938         + newer config.guess, config.sub (reference version used in TIN 1.5.6).
7939
7940 20000617
7941         + update config.guess, config.sub (reference version used in PCRE 3.2).
7942         + resync changes to gnathtml against version 1.22, regenerated html
7943           files under doc/html/ada using this (1.22.1.1).
7944         + regenerated html files under doc/html/man after correcting top and
7945           bottom margin options for man2html in dist.mk
7946         + minor fixes to test programs ncurses 'i' and testcurs program to make
7947           the subwindow's background color cover the subwindow.
7948         + modify configure script so AC_MSG_ERROR is temporarily defined to a
7949           warning in AC_PROG_CXX to make it recover from a missing C++ compiler
7950           without requiring user to add --without-cxx option (adapted from
7951           comment by Akim Demaille <akim@epita.fr> to autoconf mailing list).
7952         + modify headers.sh to avoid creating temporary files in the build
7953           directory when installing headers (reported by Sergei Pokrovsky
7954           <pok@nbsp.nsk.su>)
7955
7956 20000610
7957         + regenerated the html files under doc/html/ada/files and
7958           doc/html/ada/funcs with a slightly-improved gnathtml.
7959         + add kmous capability to linux terminfo entry to allow it to use
7960           xterm-style events provided by gpm patch by Joerg Schoen.
7961         + make the configure macro CF_SHARED_OPTS a little smarter by testing
7962           if -fPIC is supported by gcc rather than -fpic.  The former option
7963           allows larger symbol tables.
7964         + update config.guess and config.sub (patches by
7965           Kevin Buettner <kev@primenet.com> (for elf64_ia64),
7966           Bernd Kuemmerlen <bkuemmer@mevis.de> (for MacOS X)).
7967         + add warning for 'tic -cv' about use of '^?' in terminfo source, which
7968           is an extension.
7969
7970 20000527
7971         + modify echo() behavior of getch() to match Solaris curses for
7972           carriage return and backspace (reported by Neil Zanella).
7973         + change _nc_flush() to a function.
7974         + modify delscreen() to check if the output stream has been closed, and
7975           if so, free the buffer allocated for setbuf (this provides an
7976           ncurses-specific way to avoid a memory leak when repeatedly calling
7977           newterm reported by Chipp C <at_1@zdnetonebox.com>).
7978         + correct typo in curs_getch.3x manpage regarding noecho (reported by
7979           David Malone <dwmalone@maths.tcd.ie>).
7980         + add a "make libs" rule.
7981         + make the Ada95 interface build with configure --enable-widec.
7982         + if the configure --enable-widec option is given, append 'w' to names
7983           of the generated libraries (e.g., libncursesw.so) to avoid conflict
7984           with existing ncurses libraries.
7985
7986 20000520
7987         + modify view.c to make a rudimentary viewer of UTF-8 text if ncurses
7988           is configured with the experimental wide-character support.
7989         + add a simple UTF-8 output driver to the experimental wide-character
7990           support.  If any of the environment variables LC_ALL, LC_CTYPE or
7991           LANG contain the string "UTF-8", this driver will be used to
7992           translate the output to UTF-8.  This works with XFree86 xterm.
7993         + modify configure script to allow building shared libraries on BeOS
7994           (from a patch by Valeriy E Ushakov).
7995         + modify lib_addch.c to allow repeated update to the lower-right
7996           corner, rather than displaying only the first character written until
7997           the cursor is moved.  Recent versions of SVr4 curses can update the
7998           lower-right corner, and behave this way (reported by Neil Zanella).
7999         + add a limit-check in _nc_do_color(), to avoid using invalid color
8000           pair value (report by Brendan O'Dea <bod@compusol.com.au>).
8001
8002 20000513
8003         + the tack program knows how to use smcup and rmcup but the "show caps
8004           that can be tested" feature did not reflect this knowledge.  Correct
8005           the display in the menu tack/test/edit/c (patch by Daniel Weaver).
8006         + xterm-16color does allow bold+colors, removed ncv#32 from that
8007           terminfo entry.
8008
8009 20000506
8010         + correct assignment to SP->_has_sgr_39_49 in lib_dft_fgbg.c, which
8011           broke check for screen's AX capability (reported by Valeriy E Ushakov
8012           <uwe@ptc.spbu.ru>).
8013         + change man2html rule in dist.mk to workaround bug in some
8014           man-programs that ignores locale when rendering hyphenation.
8015         + change web- and ftp-site to dickey.his.com
8016
8017 20000429
8018         + move _nc_curr_token from parse_entry.c to comp_scan.c, to work around
8019           problem linking tack on MacOS X DP3.
8020         + include <sys/time.h> in lib_napms.c to compile on MacOS X DP3
8021           (reported by Gerben Wierda <wierda@holmes.nl>).
8022         + modify lib_vidattr.c to check for ncv fixes when pair-0 is not
8023           default colors.
8024         + add -d option to ncurses.c, to turn on default-colors for testing.
8025         + add a check to _nc_makenew() to ensure that newwin() and newpad()
8026           calls do not silently fail by passing too-large limits.
8027         + add symbol NCURSES_SIZE_T to use rather than explicit 'short' for
8028           internal window and pad sizes.  Note that since this is visible in
8029           the WINDOW struct, it would be an ABI change to make this an 'int'
8030           (prompted by a question by Bastian Trompetter
8031           <btrompetter@firemail.de>, who attempted to create a 96000-line pad).
8032
8033 20000422
8034         + add mgterm terminfo entry from NetBSD, minor adjustments to sun-ss5,
8035           aixterm entries -TD
8036         + modify tack/ansi.c to make it more tolerant of bad ANSI replies.  An
8037           example of an illegal ANSI resonse can be found using Microsoft's
8038           Telnet client.  A correct display can be found using a VT-4xx
8039           terminal or XFree86 xterm with:
8040                 XTerm*VT100*decTerminalID:  450
8041           (patch by Daniel Weaver).
8042         + modify gdc.c to recognize 'q' for quit, 's' for single-step and ' '
8043           for resume.  Add '-n' option to force gdc's standard input to
8044           /dev/null, to both illustrate the use of newterm() for specifying
8045           alternate inputs as well as for testing signal handling.
8046         + minor fix for configure option --with-manpage-symlinks, for target
8047           directories that contain a period ('.') (reported by Larry Virden).
8048
8049 20000415
8050         + minor additions to beterm entry (feedback from Rico Tudor) -TD
8051         + corrections/updates for some IBM terminfo entries -TD
8052         + modify _nc_screen_wrap() so that when exiting curses mode with
8053           non-default colors, the last line on the screen will be cleared to
8054           the screen's default colors (request by Alexander V Lukyanov).
8055         + modify ncurses.c 'r' example to set nonl(), allowing control/M to be
8056           read for demonstrating the REQ_NEW_LINE operation (prompted by a
8057           question by Tony L Keith <tlkeith@keithconsulting.com>).
8058         + modify ncurses.c 'r' example of field_info() to work on Solaris 2.7,
8059           documented extension of ncurses which allows a zero pointer.
8060         + modify fmt_complex() to avoid buffer overflow in case of excess
8061           recursion, and to recognize "%e%?" as a synonym for else-if, which
8062           means that it will not recur for that special case.
8063         + add logic to support $TERMCAP variable in case the USE_GETCAP symbol
8064           is defined (patch by Todd C Miller).
8065         + modify one of the m4 files used to generate the Ada95 sources,
8066           to avoid using the token "symbols" (patch by Juergen Pfeifer).
8067
8068 20000408
8069         + add terminfo entries bsdos-pc-m, bsdos-pc-mono (Jeffrey C Honig)
8070         + correct spelling error in terminfo entry name:  bq300-rv was given as
8071           bg300-rv in esr's version.
8072         + modify redrawwin() macro so its parameter is fully parenthesized
8073           (fixes Debian #61088).
8074         + correct formatting error in dump_entry() which set incorrect column
8075           value when no newline trimming was needed at the end of an entry,
8076           before appending "use=" clauses (cf: 960406).
8077
8078 20000401
8079         + add configure option --with-manpage-symlinks
8080         + change unctrl() to render C1 characters (128-159) as ~@, ~A, etc.
8081         + change makefiles so trace() function is provided only if TRACE is
8082           defined, e.g., in the debug library.  Modify related calls to
8083           _tracechar() to use unctrl() instead.
8084
8085 20000325
8086         + add screen's AX capability (for ECMA SGR 39 and 49) to applicable
8087           terminfo entries, use presence of this as a check for a small
8088           improvement in setting default colors.
8089         + improve logic in _nc_do_color() implementing assume_default_colors()
8090           by passing in previous color pair info to eliminate redundant call to
8091           set_original_colors().  (Part of this is from a patch by Alexander
8092           V Lukyanov).
8093         + modify warning in _nc_trans_string() about a possibly too-long string
8094           to do this once only rather than for each character past the
8095           threshold (600).  Change interface of _nc_trans_string() to allow
8096           check for buffer overflow.
8097         + correct use of memset in _nc_read_entry_source() to initialize ENTRY
8098           struct each time before reading new data into it, rather than once
8099           per loop (cf:  990301).  This affects multi-entry in-core operations
8100           such as "infocmp -Fa".
8101
8102 20000319
8103         + remove a spurious pointer increment in _nc_infotocap() changes from
8104           20000311.  Add check for '.' in format of number, since that also
8105           is not permitted in termcap.
8106         + correct typo in rxvt-basic terminfo from temporary change made while
8107           integrating 20000318.
8108
8109 20000318
8110         + revert part of the vt220 change (request by Todd C Miller).
8111         + add ansi-* terminfo entries from ESR's version.
8112         + add -a option to tic and infocmp, which retains commented-out
8113           capabilities during source translation/comparison, e.g., captoinfo
8114           and infotocap.
8115         + modify cardfile.c to display an empty card if no input data file is
8116           found, fixes a core dump in that case (reported by Bruno Haible).
8117         + correct bracketing in CF_MATH_LIB configure macro, which gave wrong
8118           result for OS/2 EMX.
8119         + supply required parameter for _nc_resolve_uses() call in
8120           read_termcap.c, overlooked in 20000311 (reported by Todd C Miller).
8121         > patches by Bruno Haible <haible@ilog.fr>:
8122         + fix a compiler warning in fty_enum.c
8123         + correct LIB_PREFIX expression for DEPS_CURSES in progs, tack
8124           makefiles, which resulted in redundant linking (cf: 20000122).
8125
8126 20000311
8127         + make ifdef's for BROKEN_LINKER consistent (patch by Todd C Miller).
8128         + improved tack/README (patch by Daniel Weaver).
8129         + modify tput.c to ensure that unspecified parameters are passed to
8130           tparm() as 0's.
8131         + add a few checks in infocmp to guard against buffer overflow when
8132           displaying string capabilities.
8133         + add check for zero-uses in infocmp's file_comparison() function
8134           before calling _nc_align_termtype().  Otherwise one parameter is
8135           indexed past the end of the uses-array.
8136         + add an option -q to infocmp to specify the less verbose output,
8137           keeping the existing format as the default, though not retaining the
8138           previous behavior that made the -F option compare each entry to
8139           itself.
8140         + adapted patch by ESR to make infocmp -F less verbose -TD
8141           (the submitted patch was unusable because it did not compile
8142           properly)
8143           + modify write_entry.c to ensure that absent or cancelled booleans
8144             are written as FALSE, for consistency with infocmp which now
8145             assumes this.  Note that for the small-core configuration, tic
8146             may not produce the same result as before.
8147           + change some private library interfaces used by infocmp, e.g.,
8148             _nc_resolve_uses().
8149           + add a check in _nc_infotocap() to ensure that cm-style capabilities
8150             accept only %d codes when converting the format from terminfo to
8151             termcap.
8152           + modify ENTRY struct to separate the data in 'parent' into the name
8153             and link values (the original idea to merge both into 'parent' was
8154             not good).
8155           + discard repair_acsc(tterm);
8156         > patch by Juergen Pfeifer:
8157         + drop support for gnat 3.10
8158         + move generated documentation and html files under ./doc directory,
8159           adding makefile rules for this to dist.mk
8160
8161 20000304
8162         + correct conflicting use of tparm() in 20000226 change to tic, which
8163           made it check only one entry at a time.
8164         + fix errors in ncurses-intro.html and hackguide.html shown by Dave
8165           Raggett's tidy.
8166         + make the example in ncurses-intro.html do something plausible, and
8167           corrected misleading comment (reported by Neil Zanella).
8168         + modify pnoutrefresh() to set newscr->_leaveok as wnoutrefresh() does,
8169           to fix a case where the cursor position was not updated as in
8170           Solaris  (patch by David Mosberger <davidm@hpl.hp.com>).
8171         + add a limit-check for wresize() to ensure that a subwindow does not
8172           address out of bounds.
8173         + correct offsets used for subwindows in wresize() (patch by Michael
8174           Andres <ma@suse.de>).
8175         + regenerate html'ized manual pages with man2html 3.0.1 (patch by
8176           Juergen Pfeifer).  This generated a file with a space in its name,
8177           which I removed.
8178         + fix a few spelling errors in tack.
8179         + modify tack/Makefile.in to match linker options of progs/Makefile.in;
8180           otherwise it does not build properly for older HPUX shared library
8181           configurations.
8182         + add several terminfo entries from esr's "11.0".
8183
8184 20000226
8185         + make 'tput flash' work properly for xterm by flushing output in
8186           delay_output() when using napms(), and modifying xterm's terminfo to
8187           specify no padding character.  Otherwise, xterm's reported baud rate
8188           can mislead ncurses into producing too few padding characters
8189           (Debian #58530).
8190         + add a check to tic for consistency between sgr and the separate
8191           capabilities such as smso, use this to check/correct several
8192           terminfo entries (Debian #58530).
8193         + add a check to tic if cvvis is the same as cnorm, adjusted several
8194           terminfo entries to remove the conflict (Debian #58530).
8195         + correct prototype shown in attr_set()/wattr_set() manpages (fixes
8196           Debian #53962).
8197         + minor clarification for curs_set() and leaveok() manpages.
8198         + use mkstemp() for creating temporary file for tic's processing of
8199           $TERMCAP contents (fixes Debian #56465).
8200         + correct two errors from integrating Alexander's changes:  did not
8201           handle the non-bce case properly in can_erase_with() (noted by
8202           Alexander), and left fg/bg uninitialized in the pair-zero case of
8203           _nc_do_color() (reported by Dr Werner Fink <werner@suse.de> and
8204           Ismael Cordeiro <ismael@cordeiro.com>).
8205
8206 20000219
8207         + store default-color code consistently as C_MASK, even if given as
8208           -1 for convenience (adapted from patches by Alexander V Lukyanov).
8209         > patches by Alexander V Lukyanov:
8210         + change can_clear_with() macro to accommodate logic for
8211           assume_default_colors(), making most of the FILL_BCE logic
8212           unnecessary.  Made can_clear_with() an inline function to make it
8213           simpler to read.
8214
8215 20000212
8216         + corrected form of recent copyright dates.
8217         + minor corrections to xterm-xf86-v333 terminfo entry -TD
8218         > patches by Alexander V Lukyanov:
8219         + reworded dft_fgbg.3x to avoid assuming that the terminal's default
8220           colors are white on black.
8221         + fix initialization of tstLine so that it is filled with current blank
8222           character in any case.  Previously it was possible to have it filled
8223           with old blank.  The wrong over-optimization was introduced in 991002
8224           patch.  (it is not very critical as the only bad effect is not using
8225           clr_eos for clearing if blank has changed).
8226
8227 20000205
8228         + minor corrections/updates to several terminfo entries: rxvt-basic,
8229           vt520, vt525, ibm5151, xterm-xf86-v40 -TD
8230         + modify ifdef's for poll() to allow it to use <sys/poll.h>, thereby
8231           allowing poll() to be used on Linux.
8232         + add CF_FUNC_POLL macro to check if poll() is able to select from
8233           standard input.  If not we will not use it, preferring select()
8234           (adapted from patch by Michael Pakovic <mpakovic@fdn.com>).
8235         + update CF_SHARED_OPTS macro for SCO Unixware 7.1 to allow building
8236           shared libraries (reported/tested by Thanh <thanhma@mediaone.net>).
8237         + override $LANGUAGE in build to avoid incorrect ordering of keynames.
8238         + correct CF_MATH_LIB parameter, must be sin(x), not sqrt(x).
8239
8240 20000122
8241         + resync CF_CHECK_ERRNO and CF_LIB_PREFIX macros from tin and xterm -TD
8242         + modify CF_MATH_LIB configure macro to parameterize the test function
8243           used, for reuse in dialog and similar packages.
8244         + correct tests for file-descriptors in OS/2 EMX mouse support.  A
8245           negative value could be used by FD_SET, causing the select() call
8246           to wait indefinitely.
8247
8248 20000115
8249         + additional fixes for non-bce terminals (handling of delete_character)
8250           to work when assume_default_colors() is not specified.
8251         + modify warning message from _nc_parse_entry() regarding extended
8252           capability names to print only if tic/infocmp/toe have the -v flag
8253           set, and not at all in ordinary user applications.  Otherwise, this
8254           warning would be shown for screen's extended capabilities in programs
8255           that use the termcap interface (reported by Todd C Miller).
8256         + modify use of _nc_tracing from programs such as tic so their debug
8257           level is not in the same range as values set by trace() function.
8258         + small panel header cleanup (patch by Juergen Pfeifer).
8259         + add 'railroad' demo for termcap interface.
8260         + modify 'tic' to write its usage message to stderr (patch by Todd C
8261           Miller).
8262
8263 20000108
8264         + add prototype for erase() to curses.h.in, needed to make test
8265           programs build with c++/g++.
8266         + add .c.i and .c.h suffix rules to generated makefiles, for debugging.
8267         + correct install rule for tack.1; it assumed that file was in the
8268           current directory (reported by Mike Castle <dalgoda@ix.netcom.com>).
8269         + modify terminfo/termcap translation to suppress acsc before trying
8270           sgr if the entry would be too large (patch by Todd C Miller).
8271         + document a special case of incompatiblity between ncurses 4.2 and
8272           5.0, add a section for this in INSTALL.
8273         + add TRACE_DATABASE flag for trace().
8274
8275 20000101
8276         + update mach, add mach-color terminfo entries based on Debian diffs
8277           for ncurses 5.0 -TD
8278         + add entries for xterm-hp, xterm-vt220, xterm-vt52 and xterm-noapp
8279           terminfo entries -TD
8280         + change OTrs capabilities to rs2 in terminfo.src -TD
8281         + add obsolete and extended capabilities to 'screen' terminfo -TD
8282         + corrected conversion from terminfo rs2 to termcap rs (cf: 980704)
8283         + make conversion to termcap ug (underline glitch) more consistently
8284           applied.
8285         + fix out-of-scope use of 'personal[]' buffer in 'toe' (this error
8286           was in the original pre-1.9.7 version, when $HOME/.terminfo was
8287           introduced).
8288         + modify 'toe' to ignore terminfo directories to which it has no
8289           permissions.
8290         + modify read_termtype(), fixing 'toe', which could dump core when it
8291           found an incomplete entry such as "dumb" because it did not
8292           initialize its buffer for _nc_read_file_entry().
8293         + use -fPIC rather than -fpic for shared libraries on Linux, not
8294           needed for i386 but some ports (from Debian diffs for 5.0) -TD
8295         + use explicit VALID_NUMERIC() checks in a few places that had been
8296           overlooked, and add a check to ensure that init_tabs is nonzero,
8297           to avoid divide-by-zero (reported by Todd C Miller).
8298         + minor fix for CF_ANSI_CC_CHECK configure macro, for HPUX 10.x (from
8299           tin) -TD
8300
8301 19991218
8302         + reorder tests during mouse initialization to allow for gpm to run in
8303           xterm, or for xterm to be used under OS/2 EMX.  Also drop test for
8304           $DISPLAY in favor of kmous=\E[M or $TERM containing "xterm" (report
8305           by Christian Weisgerber <naddy@mips.rhein-neckar.de>).
8306         + modify raw() and noraw() to clear/restore IEXTEN flag which affects
8307           stty lnext on systems such as FreeBSD (report by Bruce Evans
8308           <bde@zeta.org.au>, via Jason Evans <jasone@canonware.com>).
8309         + fix a potential (but unlikely) buffer overflow in failed() function
8310           of tset.c (reported by Todd C Miller).
8311         + add manual-page for ncurses extensions, documented curses_version(),
8312           use_extended_names().
8313
8314 19991211
8315         + treat as untranslatable to termcap those terminfo strings which
8316           contain non-decimal formatting, e.g., hexadecimal or octal.
8317         + correct commented-out capabilities that cannot be translated to
8318           termcap, which did not check if a colon must be escaped.
8319         + correct termcap translation for "%>" and "%+", which did not check
8320           if a colon must be escaped, for instance.
8321         + use save_string/save_char for _nc_captoinfo() to eliminate fixed
8322           buffer (originally for _nc_infotocap() in 960301 -TD).
8323         + correct expression used for terminfo equivalent of termcap %B,
8324           adjust regent100 entry which uses this.
8325         + some cleanup and commenting of ad hoc cases in _nc_infotocap().
8326         + eliminate a fixed-buffer in tic, used for translating comments.
8327         + add manpage for infotocap
8328
8329 19991204
8330         + add kvt and gnome terminfo entries -TD
8331         + correct translation of "%%" by infotocap, which was emitted as "%".
8332         + add "obsolete" termcap strings to terminfo.src
8333         + modify infocmp to default to showing obsolete capabilities rather
8334           than terminfo only.
8335         + modify write_entry.c so that if extended names (i.e., configure
8336           --enable-tcap-names) are active, then tic will also write "obsolete"
8337           capabilities that are present in the terminfo source.
8338         + modify tic so that when running as captoinfo or infotocap, it
8339           initializes the output format as in -C and -I options, respectively.
8340         + improve infocmp and tic -f option by splitting long strings that do
8341           not have if-then-else construct, but do have parameters, e.g., the
8342           initc for xterm-88color.
8343         + refine MKtermsort.sh slightly by using bool for the *_from_termcap
8344           arrays.
8345
8346 19991127
8347         + additional fixes for non-bce terminals (handling of clear_screen,
8348           clr_eol, clr_eos, scrolling) to work when assume_default_colors() is
8349           not specified.
8350         + several small changes to xterm terminfo entries -TD.
8351         + move logic for _nc_windows in lib_freeall.c inside check for nonnull
8352           SP, since it is part of that struct.
8353         + remove obsolete shlib-versions, which was unintentionally re-added
8354           in 970927.
8355         + modify infocmp -e, -E options to ensure that generated fallback.c
8356           type for Booleans agrees with term.h (reported by Eric Norum
8357           <eric@cls.usask.ca>).
8358         + correct configure script's use of $LIB_PREFIX, which did not work
8359           for installing the c++ directory if $libdir did not end with "/lib"
8360           (reported by Huy Le <huyle@ugcs.caltech.edu>).
8361         + modify infocmp so -L and -f options work together.
8362         + modify the initialization of SP->_color_table[] in start_color() so
8363           that color_content() will return usable values for COLORS greater
8364           than 8.
8365         + modify ncurses 'd' test in case COLORS is greater than 16, e.g., for
8366           xterm-88color, to limit the displayed/computed colors to 16.
8367         > patch by Juergen Pfeifer:
8368         + simplify coding of the panel library according to suggestions by
8369           Philippe Blain.
8370         + improve macro coding for a few macros in curses.priv.h
8371
8372 19991113
8373         + modify treatment of color pair 0 so that if ncurses is configured
8374           to support default colors, and they are not active, then ncurses
8375           will set that explicitly, not relying on orig_colors or orig_pair.
8376         + add new extension, assume_default_colors() to provide better control
8377           over the use of default colors.
8378         + modify test programs to use more-specific ifdef's for existence of
8379           wresize(), resizeterm() and use_default_colors().
8380         + modify configure script to add specific ifdef's for some functions
8381           that are included when --enable-ext-funcs is in effect, so their
8382           existence can be ifdef'd in the test programs.
8383         + reorder some configure options, moving those extensions that have
8384           evolved from experimental status into a new section.
8385         + change configure --enable-tcap-names to enable this by default.
8386
8387 19991106
8388         + install tack's manpage (reported by Robert Weiner
8389           <robert@progplus.com>)
8390         + correct worm.c's handling of KEY_RESIZE (patch by Frank Heckenbach).
8391         + modify curses.h.in, undef'ing some symbols to avoid conflict with C++
8392           STL (reported by Matt Gerassimoff <mgeras@ticon.net>)
8393
8394 19991030
8395         + modify linux terminfo entry to indicate that dim does not mix with
8396           color (reported by Klaus Weide <kweide@enteract.com>).
8397         + correct several typos in terminfo entries related to missing '['
8398           in CSI's -TD
8399         + fix several compiler warnings in c++ binding (reported by Tim
8400           Mooney for alphaev56-dec-osf4.0f
8401         + rename parameter of _nc_free_entries() to accommodate lint.
8402         + correct lint rule for tack, used incorrect list of source files.
8403         + add case to config.guess, config.sub for Rhapsody.
8404         + improve configure tests for libg++ and libstdc++ by omitting the
8405           math library (which is missing on Rhapsody), and improved test for
8406           the math library itself (adapted from path by Nelson H. F. Beebe).
8407         + explicitly initialize to zero several data items which were
8408           implicitly initialized, e.g., cur_term.  If not explicitly
8409           initialized, their storage type is C (common), and causes problems
8410           linking on Rhapsody 5.5 using gcc 2.7.2.1 (reported by Nelson H. F.
8411           Beebe).
8412         + modify Ada95 binding to not include the linker option for Ada
8413           bindings in the Ada headers, but in the Makefiles instead (patch by
8414           Juergen Pfeifer).
8415
8416 19991023 5.0 release for upload to ftp.gnu.org
8417         + effective with release of 5.0, change NCURSES_VERSION_PATCH to
8418           4-digit year.
8419         + add function curses_version(), to return ncurses library version
8420           (request by Bob van der Poel).
8421         + remove rmam, smam from cygwin terminfo entry.
8422         + modify FreeBSD cons25 terminfo entry to add cnorm and cvvis, as well
8423           as update ncv to indicate that 'dim' conflicts with colors.
8424         + modify configure script to use symbolic links for FreeBSD shared
8425           libraries by default.
8426         + correct ranf() function in rain and worm programs to ensure it does
8427           not return 1.0
8428         + hide the cursor in hanoi.c if it is running automatically.
8429         + amend lrtest.c to account for optimizations that exploit margin
8430           wrapping.
8431         + add a simple terminfo demo, dots.c
8432         + modify SIGINT/SIGQUIT handler to set a flag used in _nc_outch() to
8433           tell it to use write() rather than putc(), since the latter is not
8434           safe in a signal handler according to POSIX.
8435         + add/use internal macros _nc_flush() and NC_OUTPUT to hide details
8436           of output-file pointer in ncurses library.
8437         + uncomment CC_SHARED_OPTS (see 971115), since they are needed for SCO
8438           OpenServer.
8439         + correct CC_SHARED_OPTS for building shared libraries for SCO
8440           OpenServer.
8441         + remove usleep() from alternatives in napms(), since it may interact
8442           with alarm(), causing a process to be interrupted by SIGALRM (with
8443           advice from Bela Lubkin).
8444         + modify terminal_interface-curses-forms.ads.m4 to build/work with
8445           GNAT 3.10 (patch by Juergen Pfeifer).
8446         + remove part of CF_GPP_LIBRARY configure-script macro, which did not
8447           work with gcc 2.7.2.3
8448         + minor fix to test/tclock.c to avoid beeping more than once per second
8449         + add 's' and ' ' decoding to test/rain.c
8450
8451 991016  pre-release
8452         + corrected BeOS code for lib_twait.c, making nodelay() function work.
8453
8454 991009  pre-release
8455         + correct ncurses' value for cursor-column in PutCharLR(), which was
8456           off-by-one in one case (patch by Ilya Zakharevich).
8457         + fix some minor errors in position_check() debugging code, found while
8458           using this to validate the PutCharLR() patch.
8459         + modify firework, lrtest, worm examples to be resizable, and to
8460           recognize 'q' for quit, 's' for single-step and ' ' for resume.
8461         + restore reverted change to  terminal_interface-curses-forms.ads.m4,
8462           add a note on building with gnat 3.10p to Ada95/TODO.
8463         + add a copy of the standalone configure script for the test-directory
8464           to simplify testing on SCO and Solaris.
8465
8466 991002  pre-release
8467         + minor fixes for _nc_msec_cost(), color_content(), pair_content(),
8468           _nc_freewin(), ClrBottom() and onscreen_mvcur() (analysis by Philippe
8469           Blain, comments by Alexander V Lukyanov).
8470         + simplify definition of PANEL and eliminate internal functions
8471           _nc_calculate_obscure(), _nc_free_obscure() and _nc_override(),
8472           (patch by Juergen Pfeifer, analysis by Philippe Blain
8473           <bledp@voila.fr>)).
8474         + change renaming of dft_fgbg.3x to use_default_colors.3ncurses in
8475           man_db.renames, since Debian is not concerned with 14-character
8476           filename limitation (Debian bug report by Josip Rodin
8477           <joy@cibalia.gkvk.hr>).
8478         + corrected scoansi terminfo entry by testing with scoterm and console.
8479         + revert change from 990614 to terminal_interface-curses-forms.ads.m4,
8480           since this does not work for gnat 3.10p
8481         + modify tclock example to be resizable (if ncurses' sigwinch handler
8482           is used), and in color.
8483         + use $(CC) rather than 'gcc' in MK_SHARED_LIB symbols, used for Linux
8484           shared library rules.
8485
8486 990925  pre-release
8487         + add newer NetBSD console terminfo entries
8488         + add amiga-8bit terminfo entry (from Henning 'Faroul' Peters
8489           <Faroul@beyond.kn-bremen.de>)
8490         + remove -lcurses -ltermcap from configure script's check for the gpm
8491           library, since they are not really necessary (a properly configured
8492           gpm library has no dependency on any curses library), and if the
8493           curses library is not installed, this would cause the test to fail.
8494         + modify tic's -C option so that terminfo "use=" clauses are translated
8495           to "tc=" clauses even when running it as captoinfo.
8496         + modify CF_STDCPP_LIBRARY configure macro to perform its check only
8497           for GNU C++, since that library conflicts with SGI's libC on IRIX-6.2
8498         + modify CF_SHARED_OPTS configure macro to support build on NetBSD with
8499           ELF libraries (patch by Bernd Ernesti <bernd@arresum.inka.de>).
8500         + correct a problem in libpanel, where the _nc_top_panel variable was
8501           not set properly when bottom_panel() is called to hide a panel which
8502           is the only one on the stack (report/analysis by Michael Andres
8503           <ma@suse.de>, patch by Juergen Pfeifer).
8504
8505 990918  pre-release
8506         + add acsc string to HP 70092 terminfo entry (patch by Joerg Wunsch
8507           <j@interface-business.de>).
8508         + add top-level uninstall.data and uninstall.man makefile rules.
8509         + correct logic of CF_LINK_FUNCS configure script, from BeOS changes so
8510           that hard-links work on Unix again.
8511         + change default value of cf_cv_builtin_bool to 1 (suggested by
8512           Jeremy Buhler), making it less likely that a conflicting declaration
8513           of bool will be seen when compiling with C++.
8514
8515 990911  pre-release
8516         + improved configure checks for builtin.h
8517         + minor changes to C++ binding (remove static initializations, and make
8518           configure-test for parameter initializations) for features not
8519           allowed by vendor's C++ compilers (reported by Martin Mokrejs, this
8520           applies to SGI, though I found SCO has the same characteristics).
8521         + corrected quoting of ETIP_xxx definitions which support old versions
8522           of g++, e.g., those using -lg++
8523         + remove 'L' code from safe_sprintf.c, since 'long double' is not
8524           widely portable.  safe_sprintf.c is experimental, however, and
8525           exists mainly as a fallback for systems without snprintf (reported
8526           by Martin Mokrejs <mmokrejs@natur.cuni.cz>, for IRIX 6.2)
8527         + modify definition of _nc_tinfo_fkeys in broken-linker configuration
8528           so that it is not unnecessarily made extern (Jeffrey C Honig).
8529
8530 990904  pre-release
8531         + move definition for builtin.h in configure tests to specific check
8532           for libg++, since qt uses the same filename incompatibly.
8533         + correct logic of lib_termcap.c tgetstr function, which did not copy
8534           the result to the buffer parameter.  Testing shows Solaris does
8535           update this, though of course tgetent's buffer is untouched (reported
8536           in Peter Edwards <peter.edwards@ireland.com> in
8537           mpc.lists.freebsd.current newsgroup.
8538         + corrected beterm terminfo entry, which lists some capabilities which
8539           are not actually provided by the BeOS Terminal.
8540         + add special logic to replace select() calls on BeOS, whose select()
8541           function works only for sockets.
8542         + correct missing escape in mkterm.h.awk.in, which caused part
8543           of the copyright noticed to be omitted (reported by Peter
8544           Wemm <peter@netplex.com.au>).
8545         > several small changes to make the c++ binding and demo work on OS/2
8546           EMX (related to a clean reinstall of EMX):
8547         + correct library-prefix for c++ binding; none is needed.
8548         + add $x suffix to make_hash and make_keys so 'make distclean' works.
8549         + correct missing $x suffix for tack, c++ demo executables.
8550         + split CF_CXX_LIBRARY into CF_GPP_LIBRARY (for -lg++) and
8551           CF_STDCPP_LIBRARY (for -lstdc++)
8552
8553 990828  pre-release
8554         + add cygwin terminfo entry -TD
8555         + modify CF_PROG_EXT configure macro to set .exe extension for cygwin.
8556         + add configure option --without-cxx-binding, modifying the existing
8557           --without-cxx option to check only for the C++ compiler
8558           characteristics.  Whether or not the C++ binding is needed, the
8559           configure script checks for the size/type of bool, to make ncurses
8560           match.  Otherwise C++ applications cannot use ncurses.
8561
8562 990821  pre-release
8563         + updated configure macros CF_MAKEFLAGS, CF_CHECK_ERRNO
8564         + minor corrections to beterm terminfo entry.
8565         + modify lib_setup.c to reject values of $TERM which have a '/' in
8566           them.
8567         + add ifdef's to guard against CS5, CS6, CS7, CS8 being zero, as more
8568           than one is on BeOS.  That would break a switch statement.
8569         + add configure macro CF_LINK_FUNCS to detect and work around BeOS's
8570           nonfunctional link().
8571         + improved configure macros CF_BOOL_DECL and CF_BOOL_SIZE to detect
8572           BeOS's bool, which is declared as an unsigned char.
8573
8574 990814  pre-release
8575         + add ms-vt100 terminfo entry -TD
8576         + minor fixes for misc/emx.src, based on testing with tack.
8577         + minor fix for test/ncurses.c, test 'a', in case ncv is not set.
8578
8579 990731  pre-release
8580         + minor correction for 'screen' terminfo entry.
8581         + clarify description of errret values for setupterm in manpage.
8582         + modify tput to allow it to emit capabilities for hardcopy terminals
8583           (patch by Goran Uddeborg <goeran@uddeborg.pp.se>).
8584         + modify the 'o' (panel) test in ncurses.c to show the panels in color
8585           or at least in bold, to test Juergen's change to wrefresh().
8586         > patches by Juergen Pfeifer:
8587         + Fixes a problem using wbkgdset() with panels.  It has actually
8588           nothing to with panels but is a problem in the implementation of
8589           wrefresh().  Whenever a window changes its background attribute to
8590           something different than newscr's background attribute, the whole
8591           window is touched to force a copy to newscr.  This is an unwanted
8592           side-effect of wrefresh() and it is actually not necessary.  A
8593           changed background attribute affects only further outputs of
8594           background it doesn't mean anything to the current content of the
8595           window.  So there is no need to force a copy.  (reported by Frank
8596           Heckenbach <frank@g-n-u.de>).
8597         + an upward compatible enhancement of the NCursesPad class in the C++
8598           binding.  It allows one to add a "viewport" window to a pad and then
8599           to use panning to view the pad through the viewport window.
8600
8601 990724  pre-release
8602         + suppress a call to def_prog_mode() in the SIGTSTP handler if the
8603           signal was received while not in curses mode, e.g., endwin() was
8604           called in preparation for spawning a shell command (reported by Frank
8605           Heckenbach <frank@g-n-u.de>)
8606         + corrected/enhanced xterm-r5, xterm+sl, xterm+sl-twm terminfo entries.
8607         + change test for xterm mouse capability:  it now checks only if the
8608           user's $DISPLAY variable is set in conjunction with the kmous
8609           capability being present in the terminfo.  Before, it checked if any
8610           of "xterm", "rxvt" or "kterm" were substrings of the terminal name.
8611           However, some emulators which are incompatible with xterm in other
8612           ways do support the xterm mouse capability.
8613         + reviewed and made minor changes in ncurses to quiet g++ warnings
8614           about shadowed or uninitialized variables.  g++ incorrectly warns
8615           about uninitialized variables because it does not take into account
8616           short-circuit expression evaluation.
8617         + change ncurses 'b' test to start in color pair 0 and to show in the
8618           right margin those attributes which are suppressed by no_color_video,
8619           i.e., "(NCV)".
8620         + modify ifdef's in curses.h so that __attribute__ is not redefined
8621           when compiling with g++, but instead disabled the macros derived for
8622           __attribute__ since g++ does not consistently recognize the same
8623           keywords as gcc (reported by Stephan K Zitz <zitz@erf.net>).
8624         + update dependencies for term.h in ncurses/modules (reported by
8625           Ilya Zakharevich).
8626
8627 990710  pre-release
8628         + modify the form demo in ncurses.c to illustrate how to manipulate the
8629           field appearance, e.g, for highlighting or translating the field
8630           contents.
8631         + correct logic in write_entry from split-out of home_terminfo in
8632           980919, which prevented update of $HOME/.terminfo (reported by Philip
8633           Spencer <pspencer@fields.utoronto.ca>).
8634
8635 990703  pre-release
8636         + modify linux terminfo description to make use of kernel 2.2.x mods
8637           that support cursor style, e.g., to implement cvvis (patch by Frank
8638           Heckenbach <frank@g-n-u.de>)
8639         + add special-case in setupterm to retain previously-saved terminal
8640           settings in cur_term, which happens when curses and termcap calls are
8641           mixed (from report by Bjorn Helgaas <helgaas@dhc.net>).
8642         + suppress initialization of key-tries in _nc_keypad() if we are only
8643           disabling keypad mode, e.g., in endwin() called when keypad() was
8644           not.
8645         + modify the Ada95 makefile to ensure that always the Ada files from
8646           the development tree are used for building and not the eventually
8647           installed ones (patch by Juergen Pfeifer).
8648
8649 990626  pre-release
8650         + use TTY definition in tack/sysdep.c rather than struct termios
8651           (reported by Philippe De Muyter).
8652         + add a fallback for strstr, used in lib_mvcur.c and tack/edit.c,
8653           not present on sysV68 (reported by Philippe De Muyter).
8654         + correct definition in comp_hash.c to build with configure
8655           --with-rcs-ids option.
8656
8657 990619  pre-release
8658         + modified ifdef's for sigaction and sigvec to ensure we do not try to
8659           handle SIGTSTP if neither is available (from report by Philippe De
8660           Muyter).
8661         > patch by Philippe De Muyter:
8662         + in tic.c, use `unlink' if `remove' is not available.
8663         + use only `unsigned' as fallback value for `speed_t'.  Some files used
8664           `short' instead.
8665
8666 990616  pre-release
8667         + fix some compiler warnings in tack.
8668         + add a check for predefined bool type in CC, based on report that
8669           BeOS predefines a bool type.
8670         + correct logic for infocmp -e option, i.e., the configure
8671           --with-fallbacks option, which I'd not updated when implementing
8672           extended names (cf:  990301).  The new implementation adds a "-E"
8673           option to infocmp -TD
8674         > patch by Juergen Pfeifer:
8675         + introduce the private type Curses_Bool in the Ada95 binding
8676           implementation.  This is to clearly represent the use of "bool" also
8677           in the binding.  It should have no effect on the generated code.
8678         + improve the man page for field_buffer() to tell the people, that the
8679           whole buffer including leading/trailing spaces is returned.  This is
8680           a common source of confusion, so it's better to document it clearly.
8681
8682 990614  pre-release
8683         > patch by Juergen Pfeifer:
8684         + use pragma PreElaborate in several places.
8685         + change a few System.Address uses to more specific types.
8686         + change interface version-number to 1.0
8687         + regenerate Ada95 HTML files.
8688
8689 990612  pre-release
8690         + modify lib_endwin.c to avoid calling reset_shell_mode(), return ERR
8691           if it appears that curses was never initialized, e.g., by initscr().
8692           For instance, this guards against setting the terminal modes to
8693           strange values if endwin() is called after setupterm().  In the same
8694           context, Solaris curses will dump core.
8695         + modify logic that avoids a conflict in lib_vidattr.c between sgr0 and
8696           equivalent values in rmso or rmul by ensuring we do not modify the
8697           data which would be returned by the terminfo or termcap interfaces
8698           (reported by Brad Pepers <brad@linuxcanada.com>, cf:  960706).
8699         + add a null-pointer check for SP in lib_vidattr.c to logic that checks
8700           for magic cookies.
8701         + improve fallback declaration of 'bool' when the --without-cxx option
8702           is given, by using a 'char' on i386 and related hosts (prompted by
8703           discussion with Alexander V Lukyanov).
8704
8705 990605  pre-release
8706         + include time.h in lib_napms.c if nanosleep is used (patch by
8707           R Lindsay Todd <toddr@rpi.edu>).
8708         + add an "#undef bool" to curses.h, in case someone tries to define it,
8709           e.g., perl.
8710         + add check to tparm to guard against divide by zero (reported by Aaron
8711           Campbell <aaron@ug.cs.dal.ca>).
8712
8713 990516  pre-release
8714         + minor fix to build tack on CLIX (mismatched const).
8715         > patch by Juergen Pfeifer:
8716         + change Juergen's old email address with new one in the files where it
8717           is referenced.  The Ada95 HTML pages are regenerated.
8718         + update MANIFEST to list the tack files.
8719
8720 990509  pre-release
8721         + minor fixes to make 'tack' build/link on NeXT (reported by Francisco
8722           A. Tomei Torres).
8723
8724 990417  pre-release
8725         + add 'tack' program (which is GPL'd), updating it to work with the
8726           modified TERMTYPE struct and making a fix to support setaf/setab
8727           capabilities.  Note that the tack program is not part of the
8728           ncurses libraries, but an application which can be distributed with
8729           ncurses.  The configure script will ignore the directory if it is
8730           omitted, however.
8731         + modify gpm mouse support so that buttons 2 and 3 are used for
8732           select/paste only when shift key is pressed, making them available
8733           for use by an application (patch by Klaus Weide).
8734         + add complete list of function keys to scoansi terminfo entry - TD
8735
8736 990410  pre-release
8737         + add a simple test program cardfile.c to illustrate how to read form
8738           fields, and showing forms within panels.
8739         + change shared-library versioning for the Hurd to be like Linux rather
8740           than *BSD (patch by Mark Kettenis <kettenis@wins.uva.nl>).
8741         + add linux-lat terminfo entry.
8742         + back-out _nc_access check in read_termcap.c (both incorrect and
8743           unnecessary, except to guard against a small window where the file's
8744           ownership may change).
8745
8746 990403  pre-release
8747         + remove conflicting _nc_free_termtype() function from test module
8748           lib_freeall.c
8749         + use _nc_access check in read_termcap.c for termpaths[] array (noted
8750           by Jeremy Buhler, indicating that Alan Cox made a similar patch).
8751         > patch by Juergen Pfeifer:
8752         + modify menu creation to not inherit status flag from the default menu
8753           which says that the associated marker string has been allocated and
8754           should be freed (bug reported by Marek Paliwoda"
8755           <paliwoda@kki.net.pl>)
8756
8757 990327  pre-release (alpha.gnu.org:/gnu/ncurses-5.0-beta1.tar.gz)
8758         + minor fixes to xterm-xfree86 terminfo entry - TD.
8759         + split up an expression in configure script check for ldconfig to
8760           workaround limitation of BSD/OS sh (reported by Jeff Haas
8761           <jmh@mail.msen.com>).
8762         + correct a typo in man/form_hook.3x (Todd C Miller).
8763
8764 990318  pre-release
8765         + parenthesize and undef 'index' symbol in c++ binding and demo, to
8766           accommodate its definition on NeXT (reported by Francisco A. Tomei
8767           Torres).
8768         + add sigismember() to base/sigaction.c compatibility to link on NeXT
8769           (reported by Francisco A. Tomei Torres).
8770         + further refinements to inequality in hashmap.c to cover a case with
8771           ^U in nvi (patch by Alexander V Lukyanov).
8772
8773 990316  pre-release
8774         + add fallback definition for getcwd, to link on NeXT.
8775         + add a copy of cur_term to tic.c to make it link properly on NeXT
8776           (reported by Francisco A. Tomei Torres).
8777         + change inequality in hashmap.c which checks the distance traveled by
8778           a chunk so that ^D command in nvi (scrolls 1/2 screen) will use
8779           scrolling logic (patch by Alexander V Lukyanov, reported by Jeffrey
8780           C Honig).
8781
8782 990314  pre-release
8783         + modify lib_color.c to handle a special case where the curscr
8784           attributes have been made obsolete (patch by Alexander V Lukyanov).
8785         + update BSD/OS console terminfo entries to use klone+sgr and
8786           klone+color (patch by Jeffrey C Honig).
8787         + update glibc addon configure script for extended capabilities.
8788         + correct a couple of warnings in the --enable-const configuration.
8789         + make comp_hash build properly with _nc_strdup(), on NeXT (reported by
8790           Francisco A. Tomei Torres <francisco.tomei@cwix.com>).
8791
8792 990313  pre-release
8793         + correct typos in linux-c initc string - TD
8794         + add 'crt' terminfo entry, update xterm-xfree86 entry - TD
8795         + remove a spurious argument to tparm() in lib_sklrefr.c (patch by
8796           Alexander V Lukyanov).
8797
8798 990307  pre-release
8799         + back-out change to wgetch because it causes a problem with ^Z
8800           handling in lynx (reported by Kim DeVaughn).
8801
8802 990306  pre-release
8803         + add -G option to tic and infocmp, to reverse the "-g" option.
8804         + recode functions in name_match.c to avoid use of strncpy, which
8805           caused a 4-fold slowdown in tic (cf: 980530).
8806         + correct a few warnings about sign-extension in recent changes.
8807         > patch by Juergen Pfeifer:
8808         + fixes suggested by Jeff Bradbury <jibradbury@lucent.com>:
8809           + improved parameter checking in new_fieldtype().
8810           + fixed a typo in wgetch() timeout handling.
8811           + allow slk_init() to be called per newterm call.  The internal SLK
8812             state is stored in the SCREEN struct after every newterm() and then
8813             reset for the next newterm.
8814           + fix the problem that a slk_refresh() refreshes stdscr if the
8815             terminal has true SLKs.
8816         + update HTML documentation for Ada binding.
8817
8818 990301  pre-release
8819         + remove 'bool' casts from definitions of TRUE/FALSE so that statements
8820           such as "#if TRUE" work.  This was originally done to allow for a C++
8821           compiler which would warn of implicit conversions between enum and
8822           int, but is not needed for g++ (reported by Kim DeVaughn).
8823         + add use_extended_names() function to allow applications to suppress
8824           read of the extended capabilities.
8825         + add configure option --enable-tcap-names to support logic which
8826           allows ncurses' tic to define new (i.e., extended) terminal
8827           capabilities.  This is activated by the tic -x switch.  The infocmp
8828           program automatically shows or compares extended capabilities.
8829           Note:  This changes the Strings and similar arrays in the TERMTYPE
8830           struct so that applications which manipulate it must be recompiled.
8831         + use macros typeMalloc, typeCalloc and typeRealloc consistently
8832           throughout ncurses library.
8833         + add _nc_strdup() to doalloc.c.
8834         + modify define_key() to allow multiple strings to be bound to the
8835           same keycode.
8836         + correct logic error in _nc_remove_string, from 990220.
8837         > patch for Ada95 binding (Juergen Pfeifer):
8838         + regenerate some of the html documentation
8839         + minor cleanup in terminal_interface-curses.adb
8840
8841 990220  pre-release
8842         + resolve ambiguity of kend/kll/kslt and khome/kfnd/kich1 strings in
8843           xterm and ncsa terminfo entries by removing the unneeded ones.  Note
8844           that some entries will return kend & khome versus kslt and kfnd, for
8845           PC-style keyboards versus strict vt220 compatiblity - TD
8846         + add function keybound(), which returns the definition associated with
8847           a given keycode.
8848         + modify define_key() to undefine the given string when no keycode is
8849           given.
8850         + modify keyok() so it works properly if there is more than one string
8851           defined for a keycode.
8852         + add check to tic to warn about terminfo descriptions that contain
8853           more than one key assigned to the same string.  This is shown only if
8854           the verbose (-v) option is given.  Moved related logic (tic -v) from
8855           comp_parse.c into the tic program.
8856         + add/use _nc_trace_tries() to show the function keys that will be
8857           recognized.
8858         + rename init_acs to _nc_init_acs (request by Alexander V Lukyanov).
8859         > patch for Ada95 binding (Juergen Pfeifer):
8860         + remove all the *_adabind.c from ncurses, menu and form projects.
8861           Those little helper routines have all been implemented in Ada and are
8862           no longer required.
8863         + The option handling routines in menu and form have been made more
8864           save.  They now make sure that the unused bits in options are always
8865           zero.
8866         + modify configuration scripts to
8867           + use gnatmake as default compiler name.  This is a safer choice than
8868             gcc, because some GNAT implementations use other names for the
8869             compilerdriver to avoid conflicts.
8870           + use new default installation locations for the Ada files according
8871             to the proposed GNU Ada filesystem standard (for Linux).
8872         + simplify the Makefiles for the Ada binding
8873         + rename ada_include directory to src.
8874
8875 990213
8876         + enable sigwinch handler by default.
8877         + disable logic that allows setbuf to be turned off/on, because some
8878           implementations will overrun the buffer after it has been disabled
8879           once.
8880
8881 990206
8882         + suppress sc/rc capabilities from terminal description if they appear
8883           in smcup/rmcup.  This affects only scrolling optimization, to fix a
8884           problem reported by several people with xterm's alternate screen,
8885           though the problem is more general.
8886         > patch for Ada95 binding (Juergen Pfeifer):
8887         + removed all pragma Preelaborate() stuff, because the just released
8888           gnat-3.11p complains on some constructs.
8889         + fixed some upper/lower case notations because gnat-3.11p found
8890           inconsistent use.
8891         + used a new method to generate the HTML documentation of the Ada95
8892           binding.  This invalidates nearly the whole ./Ada95/html subtree.
8893           Nearly all current files in this subtree are removed
8894
8895 990130
8896         + cache last result from _nc_baudrate, for performance (suggested by
8897           Alexander V Lukyanov).
8898         + modify ClrUpdate() function to workaround a problem in nvi, which
8899           uses redrawwin in SIGTSTP handling.  Jeffrey C Honig reported that
8900           ncurses repainted the screen with nulls before resuming normal
8901           operation (patch by Alexander V Lukyanov).
8902         + generalize is_xterm() function a little by letting xterm/rxvt/kterm
8903           be any substring rather than the prefix.
8904         + modify lib_data.c to initialize SP.  Some linkers, e.g., IBM's, will
8905           not link a module if the only symbols exported from the module are
8906           uninitialized ones (patch by Ilya Zakharevich).  Ilya says that he
8907           has seen messages claiming this behavior conforms to the standard.)
8908         + move call on _nc_signal_handler past _nc_initscr, to avoid a small
8909           window where Nttyb hasn't yet been filled (reported by Klaus Weide).
8910         + modify lib_tstp.c to block SIGTTOU when handling SIGTSTP, fixes a
8911           problem where ncurses applications which were run via a shell script
8912           would hang when given a ^Z.  Also, check if the terminal's process
8913           group is consistent, i.e., a shell has not taken ownership of it,
8914           before deciding to save the current terminal settings in the SIGTSTP
8915           handler (patch by Klaus Weide).
8916         + correct spelling of ACS_ names in curs_border.3x (reported by Bob van
8917           der Poel <bvdpoel@kootenay.com>).
8918         + correct a couple of typos in the macros supporting the configure
8919           --with-shlib-version option.
8920
8921 990123
8922         + modify fty_regex.c to compile on HAVE_REGEXPR_H_FUNCS machine (patch
8923           by Kimio Ishii <ishii@csl.sony.co.jp>).
8924         + rename BSDI console terminfo entries:  bsdos to bsdos-pc-nobold, and
8925           bsdos-bold to bsdos-pc (patch by Jeffrey C Honig).
8926         + modify tput to accept termcap names as an alternative to terminfo
8927           names (patch by Jeffrey C Honig).
8928         + correct a typo in term.7 (Todd C Miller).
8929         + add configure --with-shlib-version option to allow installing shared
8930           libraries named according to release or ABI versions.  This
8931           parameterizes some existing logic in the configure script, and is
8932           intended for compatiblity upgrades on Digital Unix, which used
8933           versioned libraries in ncurses 4.2, but no longer does (cf:  980425).
8934         + resync configure script against autoconf 2.13 + patches
8935         + minor improvements for teraterm terminfo entry based on the program's
8936           source distribution.
8937
8938 990116
8939         + change default for configure --enable-big-core to assume machines do
8940           have enough memory to resolve terminfo.src in-memory.
8941         + correct name of ncurses library in TEST_ARGS when configuring with
8942           debug library.
8943         + minor fixes to compile ncurses library with broken-linker with g++.
8944         + add --enable-broken-linker configure option, default to environment
8945           variable $BROKEN_LINKER (request by Jeffrey C Honig).
8946         + change key_names[] array to static since it is not part of the curses
8947           interface (reported by Jeffrey C Honig <jch@bsdi.com>).
8948
8949 990110
8950         + add Tera Term terminfo entry - TD
8951
8952 990109
8953         + reviewed/corrected macros in curses.h as per XSI document.
8954         + provide support for termcap PC variable by copying it from terminfo
8955           data and using it as the padding character in tputs (reported by
8956           Alexander V Lukyanov).
8957         + corrected iris-ansi and iris-ansi-ap terminfo entries for kent and
8958           kf9-kf12 capabilities, as well as adding kcbt.
8959         + document the mouse handling mechanism in menu_driver and make a small
8960           change in menu_driver's return codes to provide more consistency
8961           (patch by Juergen Pfeifer).
8962         + add fallback definition for NCURSES_CONST to termcap.h.in (reported
8963           by Uchiyama Yasushi <uch@nop.or.jp>).
8964         + move lib_restart.c to ncurses/base, since it uses curses functions
8965           directly, and therefore cannot be used in libtinfo.so
8966         + rename micro_char_size to micro_col_size, adding #define to retain
8967           old name.
8968         + add set_a_attributes and set_pglen_inch to terminfo structure, as per
8969           XSI and Solaris 2.5.
8970         + minor makefile files to build ncurses test_progs
8971         + update html files in misc directory to reflect changes since 4.2
8972
8973 990102
8974         + disable scroll hints when hashmap is enabled (patch by Alexander
8975           V Lukyanov).
8976         + move logic for tic's verify of -e option versus -I and -C so that the
8977           terminfo data is not processed if we cannot handle -e (reported by
8978           Steven Schwartz <steves@unitrends.com>.
8979         + add test-driver traces to terminfo and termcap functions.
8980         + provide support for termcap ospeed variable by copying it from the
8981           internal cur_term member, and using ospeed as the baudrate reference
8982           for the delay_output and tputs functions.  If an application does not
8983           set ospeed, the library behaves as before, except that _nc_timed_wait
8984           is no longer used, or needed, since ospeed always has a value.  But
8985           the application can modify ospeed to adjust the output of padding
8986           characters (prompted by a bug report for screen 3.7.6 and email from
8987           Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>).
8988         + removed some unused ifdef's as part of Alexander's restructuring.
8989         + reviewed/updated curses.h, term.h against X/Open Curses Issue 4
8990           Version 2.  This includes making some parameters NCURSES_CONST
8991           rather than const, e.g., in termcap.h.
8992         + change linux terminfo entry to use ncv#2, since underline does not
8993           work with color
8994
8995 981226
8996         + miscellaneous corrections for curses.h to match XSI.
8997         + change --enable-no-padding configure option to be normally enabled.
8998         + add section to ncurses manpage for environment variables.
8999         + investigated Debian bug report that pertains to screen 3.7.4/3.7.6
9000           changes, found no sign of problems on Linux (or on SunOS, Solaris)
9001           running screen built with ncurses.
9002         + check if tmp_fp is opened in tic.c before closing it (patch by Pavel
9003           Roskin <pavel_roskin@geocities.com>).
9004         + correct several font specification typos in man-pages.
9005
9006 981220
9007         + correct default value for BUILD_CC (reported by Larry Virden).
9008
9009 981219
9010         + modify _nc_set_writedir() to set a flag in _nc_tic_dir() to prevent
9011           it from changing the terminfo directory after chdir'ing to it.
9012           Otherwise, a relative path in $TERMINFO would confuse tic (prompted
9013           by a Debian bug report).
9014         + correct/update ncsa terminfo entry (report by Larry Virden).
9015         + update xterm-xfree86 terminfo to current (patch 90), smcur/rmcur
9016           changes
9017         + add Mathew Vernon's mach console entries to terminfo.src
9018         + more changes, moving functions, as part of Alexander's restructuring.
9019         + modify configure script for GNU/Hurd share-library support, introduce
9020           BUILD_CC variable for cross compiling (patch by Uchiyama Yasushi
9021           <uch@nop.or.jp>)
9022
9023 981212
9024         + add environment variable NCURSES_NO_SETBUF to allow disabling the
9025           setbuf feature, for testing purposes.
9026         + correct ifdef's for termcap.h versus term.h that suppress redundant
9027           declarations of prototypes (reported by H.J.Lu).
9028         + modify Makefile.os2 to add linker flags which allow multiple copies
9029           of an application to coexist (reported by Ilya Zakharevich).
9030         + update Makefile.glibc and associated configure script so that ncurses
9031           builds as a glibc add-on with the new directory configuration
9032           (reported by H.J.Lu).
9033
9034 981205
9035         + modify gen_reps() function in gen.c to work properly on SunOS
9036           (sparc), which is a left-to-right architecture.
9037         + modify relative_move and tputs to avoid an interaction with the
9038           BSD-style padding.  The relative_move function could produce a string
9039           to replace on the screen which began with a numeric character, which
9040           was then interpreted by tputs as padding.  Now relative_move will not
9041           generate a string with a leading digit in that case (overwrite).
9042           Also, tputs will only interpret padding if the string begins with a
9043           digit; as coded it permitted a string to begin with a decimal point
9044           or asterisk (reported by Larry Virden).
9045         > patches by Juergen Pfeifer:
9046         + fix a typo in m_driver.c mouse handling and improves the error
9047           handling.
9048         + fix broken mouse handling in the Ada95 binding
9049         + make the Ada95 sample application menus work with the new menu mouse
9050           support
9051         + improve the mouse handling introduced by Ilya; it now handles menus
9052           with spacing.
9053         + repair a minor bug in the menu_driver code discovered during this
9054           rework.
9055         + add new function wmouse_trafo() to hide implementation details of
9056           _yoffset member of WINDOW struct needed for mouse coordinate
9057           transformation.
9058
9059 981128
9060         + modify Ada95/gen/gen.c to avoid using return-value of sprintf, since
9061           some older implementations (e.g., SunOS 4.x) return the buffer
9062           address rather than its length.
9063         > patch by Rick Ohnemus:
9064         + modify demo.cc to get it to compile with newer versions of egcs.
9065         + trim a space that appears at the end of the table preprocessor lines
9066           ('\" t).  This space prevents some versions of man from displaying
9067           the pages - changed to remove all trailing whitespace (TD)
9068         + finally, 'make clean' does not remove panel objects.
9069         > patches by Ilya Zakharevich:
9070         + allow remapping of OS/2 mouse buttons using environment variable
9071           MOUSE_BUTTONS_123 with the default value 132.
9072         + add mouse support to ncurses menus.
9073
9074 981121
9075         + modify misc/makedef.cmd to report old-style .def file symbols, and to
9076           generate the .def files sorted by increasing names rather than the
9077           reverse.
9078         + add misc/*.ref which are J.J.G.Ripoll's dll definition files (renamed
9079           from misc/*.old), and updated based on the entrypoint coding he used
9080           for an older version of ncurses.
9081         + add README.emx, to document how to build on OS/2 EMX.
9082         + updates for config.guess, config.sub from Lynx
9083         > patches by Ilya Zakharevich:
9084         + minor fixes for mouse handling mode:
9085           a) Do not initialize mouse if the request is to have no mouse;
9086           b) Allow switching of OS/2 VIO mouse on and off.
9087         + modify Makefile.os2 to support alternative means of generating
9088           configure script, by translating Unix script with Perl.
9089         > patches by Juergen Pfeifer:
9090         + Updates MANIFEST to reflect changes in source structure
9091         + Eliminates a problem introduced with my last patch for the C++
9092           binding in the panels code.  It removes the update() call done in the
9093           panel destructor.
9094         + Changes in the Ada95 binding to better support systems where
9095           sizeof(chtype)!=sizeof(int) (e.g.  DEC Alpha).
9096
9097 981114
9098         + modify install-script for manpages to skip over .orig and .rej files
9099           (request by Larry Virden).
9100         > patches/discussion by Alexander V Lukyanov:
9101         + move base-library sources into ncurses/base and tty (serial terminal)
9102           sources into ncurses/tty, as part of Alexander V Lukyanov's proposed
9103           changes to ncurses library.
9104         + copy _tracemouse() into ncurses.c so that lib_tracemse.c need not
9105           be linked into the normal ncurses library.
9106         + move macro winch to a function, to hide details of struct ldat
9107         > patches by Juergen Pfeifer:
9108         + fix a potential compile problem in cursesw.cc
9109         + some Ada95 cosmetics
9110         + fix a gen.c problem when compiling on 64-Bit machines
9111         + fix Ada95/gen/Makefile.in "-L" linker switch
9112         + modify Ada95 makefiles to use the INSTALL_PREFIX setting.
9113
9114 981107
9115         + ifdef'd out lib_freeall.c when not configured.
9116         + rename _tracebits() to _nc_tracebits().
9117         + move terminfo-library sources into ncurses/tinfo, and trace-support
9118           functions into ncurses/trace as part of Alexander V Lukyanov's
9119           proposed changes to ncurses library.
9120         + modify generated term.h to always specify its own definitions for
9121           HAVE_TERMIOS_H, etc., to guard against inclusion by programs with
9122           broken configure scripts.
9123
9124 981031
9125         + modify terminfo parsing to accept octal and hexadecimal constants,
9126           like Solaris.
9127         + remove an autoconf 2.10 artifact from the configure script's check
9128           for "-g" compiler options.  (Though harmless, this confused someone
9129           at Debian, who recently issued a patch that results in the opposite
9130           effect).
9131         + add configure option --with-ada-compiler to accommodate installations
9132           that do not use gcc as the driver for GNAT (patch by Juergen
9133           Pfeifer).
9134
9135 981017
9136         + ensure ./man exists in configure script, needed when configuring
9137           with --srcdir option.
9138         + modify infocmp "-r" option to remove limit on formatted termcap
9139           output, which makes it more like Solaris' version.
9140         + modify captoinfo to treat no-argument case more like Solaris'
9141           version, which uses the contents of $TERMCAP as the entry to format.
9142         + modify mk-2nd.awk to handle subdirectories, e.g., ncurses/tty
9143           (patch by Alexander V Lukyanov).
9144
9145 981010
9146         + modify --with-terminfo-dirs option so that the default value is the
9147           ${datadir} value, unless $TERMINFO_DIRS is already set.  This gets
9148           rid of a hardcoded list of candidate directories in the configure
9149           script.
9150         + add some error-checking to _nc_read_file_entry() to ensure that
9151           strings are properly terminated (Todd C Miller).
9152         + rename manpage file curs_scr_dmp.3x to curs_scr_dump.3x, to
9153           correspond with contents (reported by Neil Zanella
9154           <nzanella@cs.mun.ca>).
9155         + remove redundant configure check for C++ which did not work when $CXX
9156           was specified with a full pathname (reported by Andreas Jaeger).
9157         + corrected bcopy/memmove check; the macro was not standalone.
9158
9159 981003
9160         + remove unnecessary portion of OS/2 EMX mouse change from
9161           check_pending() (reported by Alexander V Lukyanov).
9162
9163 980926
9164         + implement mouse support for OS/2 EMX (adapted from patch against
9165           4.2(?) by Ilya Zakharevich).
9166         + add configure-check for bcopy/memmove, for 980919 changes to hashmap.
9167         + merge Data General terminfo from Hasufin <hasufin@vidnet.net> - TD
9168         + merge AIX 3.2.5 terminfo descriptions for IBM terminals, replaces
9169           some older entries - TD
9170         + modify tic to compile into %'char' form in preference to %{number},
9171           since that is a little more efficient.
9172         + minor correction to infocmp to avoid displaying "difference" between
9173           two capabilities that are rendered in equivalent forms.
9174         + add "-g" option to tic/infocmp to force character constants to be
9175           displayed in quoted form.  Otherwise their decimal values are shown.
9176         + modify setupterm so that cancelled strings are treated the same as
9177           absent strings, cancelled and absent booleans false (does not affect
9178           tic, infocmp).
9179         + modify tic, infocmp to discard redundant i3, r3 strings when output
9180           to termcap format.
9181         > patch by Alexander V Lukyanov:
9182         + improve performance of tparm, now it takes 19% instead of 25% when
9183           profiling worm.
9184         + rename maxlen/minlen to prec/width for better readability.
9185         + use format string for printing strings.
9186         + use len argument correctly in save_text, and pass it to save_number.
9187
9188 980919
9189         + make test_progs compile (but hashmap does not function).
9190         + correct NC_BUFFERED macro, used in lib_mvcur test-driver, modify
9191           associated logic to avoid freeing the SP->_setbuf data.
9192         + add modules home_terminfo and getenv_num to libtinfo.
9193         + move write_entry to libtinfo, to work with termcap caching.
9194         + minor fixes to blue.c to build with atac.
9195         + remove softscroll.c module; no longer needed for testing.
9196         > patches by Todd C Miller:
9197         + use strtol(3) instead of atoi(3) when parsing env variables so we can
9198           detect a bogus (non-numeric) value.
9199         + check for terminal names > MAX_NAME_SIZE in a few more places when
9200           dealing with env variables again.
9201         + fix a MAX_NAME_SIZE that should be MAX_NAME_SIZE+1
9202         + use sizeof instead of strlen(3) on PRIVATE_INFO since it is a fixed
9203           string #define (compile time vs runtime).
9204         + when setting errno to ENOMEM, set it right before the return, not
9205           before code that could, possibly, set errno to a different value.
9206         > patches by Alexander V Lukyanov:
9207         + use default background in update_cost_from_blank()
9208         + disable scroll-hints when hashmap is configured.
9209         + improve integration of hashmap scrolling code, by adding oldhash and
9210           newhash data to SP struct.
9211         + invoke del_curterm from delscreen.
9212         + modify del_curterm to set cur_term to null if it matches the
9213           function's parameter which is deleted.
9214         + modify lib_doupdate to prefer parm_ich to the enter_insert_mode and
9215           exit_insert_mode combination, adjusting InsCharCost to check
9216           enter_insert_mode, exit_insert_mode and insert_padding.  Add
9217           insert_padding in insert mode after each char.  This adds new costs
9218           to the SP struct.
9219
9220 980912
9221         + modify test-driver in lib_mvcur.s to use _nc_setbuffer, for
9222           consistent treatment.
9223         + modify ncurses to restore output to unbuffered on endwin, and resume
9224           buffering in refresh (see lib_set_term.c and NC_BUFFERED macro).
9225         + corrected HTML version numbers (according to the W3C validator, they
9226           never were HTML 2.0-compliant, but are acceptable 3.0).
9227
9228 980905
9229         + modify MKterminfo.sh to generate terminfo.5 with tables sorted by
9230           capability name, as in SVr4.
9231         + modified term.h, termcap.h headers to avoid redundant declarations.
9232         + change 'u_int' type in tset.c to unsigned, making this compile on
9233           Sequent PRX 4.1 (reported by Michael Sterrett <msterret@coat.com>).
9234
9235 980829
9236         + corrections to mailing addresses, and moving the magic line that
9237           causes the man program to invoke tbl to the first line of each
9238           manpage (patch by Rick Ohnemus <rick@ecompcon.com>).
9239         + add Makefile.os2 and supporting scripts to generate dll's on OS/2 EMX
9240           (from J.J.G.Ripoll, with further integration by TD).
9241         + correct a typo in icl6404 terminfo entry.
9242         + add xtermm and xtermc terminfo entries.
9243         > from esr's terminfo version:
9244         + Added Francesco Potorti's tuned Wyse 99 entries.
9245         + dtterm enacs (from Alexander V Lukyanov).
9246         + Add ncsa-ns, ncsa-m-ns and ncsa-m entries from esr version.
9247
9248 980822
9249         + document AT&T acs characters in terminfo.5 manpage.
9250         + use EMX _scrsize() function if terminfo and environment do not
9251           declare the screen size (reported by Ilya Zakharevich
9252           <ilya@math.ohio-state.edu>).
9253         + remove spurious '\' characters from eterm and osborne terminfo
9254           entries (prompted by an old Debian bug report).
9255         + correct reversed malloc/realloc calls in _nc_doalloc (reported by
9256           Hans-Joachim Widmaier <hjwidmai@foxboro.com>).
9257         + correct misplaced parenthesis which caused file-descriptor from
9258           opening termcap to be lost, from 980725 changes (reported by Andreas
9259           Jaeger).
9260
9261 980815
9262         + modify lib_setup.c to eliminate unneeded include of <sys/ioctl.h>
9263           when termios is not used (patch by Todd C Miller).
9264         + add function _nc_doalloc, to ensure that failed realloc calls do not
9265           leak memory (reported by Todd C Miller).
9266         + improved ncsa-telnet terminfo entry.
9267
9268 980809
9269         + correct missing braces around a trace statement in read_entry.c,
9270           from 980808 (reported by Kim DeVaughn <kimdv@best.com> and Liviu
9271           Daia).
9272
9273 980808
9274         + fix missing include <errno.h> in ditto.c (reported by Bernhard
9275           Rosenkraenzer <bero@k5.sucks.eu.org>)
9276         + add NCSA telnet terminfo entries from Francesco Potorti
9277           <F.Potorti@cnuce.cnr.it>, from Debian bug reports.
9278         + make handling of $LINES and $COLUMNS variables more compatible with
9279           Solaris by allowing them to individually override the window size
9280           as obtained via ioctl.
9281
9282 980801
9283         + modify lib_vidattr.c to allow for terminal types (e.g., xterm-color)
9284           which may reset all attributes in the 'op' capability, so that colors
9285           are set before turning on bold and other attributes, but still after
9286           turning attributes off.
9287         + add 'ditto.c' to test directory to illustrate use of newterm for
9288           initializing multiple screens.
9289         + modify _nc_write_entry() to recover from failed attempt to link alias
9290           for a terminfo on a filesystem which does not preserve character case
9291           (reported by Peter L Jordan <PJordan@chla.usc.edu>).
9292
9293 980725
9294         + updated versions of config.guess and config.sub based on automake 1.3
9295         + change name-comparisons in lib_termcap to compare no more than 2
9296           characters (gleaned from Debian distribution of 1.9.9g-8.8, verified
9297           with Solaris curses).
9298         + fix typo in curs_insstr.3x (patch by Todd C Miller)
9299         + use 'access()' to check if ncurses library should be permitted to
9300           open or modify files with fopen/open/link/unlink/remove calls, in
9301           case the calling application is running in setuid mode (request by
9302           Cristian Gafton <gafton@redhat.com>, responding to Duncan Simpson
9303           <dps@io.stargate.co.uk>).
9304         + arm100 terminfo entries from Dave Millen <dmill@globalnet.co.uk>).
9305         + qnxt2 and minitel terminfo entries from esr's version.
9306
9307 980718
9308         + use -R option with ldconfig on FreeBSD because otherwise it resets
9309           the search path to /usr/lib (reported by Dan Nelson).
9310         + add -soname option when building shared libraries on OpenBSD 2.x
9311           (request by QingLong).
9312         + add configure options --with-manpage-format and
9313           --with-manpage-renames (request by QingLong).
9314         + correct conversion of CANCELLED_NUMERIC in write_object(), which was
9315           omitting the high-order byte, producing a 254 in the compiled
9316           terminfo.
9317         + modify return-values of tgetflag, tgetnum, tgetstr, tigetflag,
9318           tigetnum and tigetstr to be compatible with Solaris (gleaned from
9319           Debian distribution of 1.9.9g-8.8).
9320         + modify _nc_syserr_abort to abort only when compiled for debugging,
9321           otherwise simply exit with an error.
9322
9323 980711
9324         + modify Ada95 'gen' program to use appropriate library suffix (e.g.,
9325           "_g" for a debug build).
9326         + update Ada95 'make clean' rule to include generics .ali files
9327         + add a configure test to ensure that if GNAT is found, that it can
9328           compile/link working Ada95 program.
9329         + flush output in beep and flash functions, fixing a problem with
9330           getstr (patch by Alexander V Lukyanov)
9331         + fix egcs 1.0.2 warning for etip.h (patch by Chris Johns).
9332         + correct ifdef/brace nesting in lib_sprintf.c (patch by Bernhard
9333           Rosenkraenzer <bero@Pool.Informatik.RWTH-Aachen.DE>).
9334         + correct typo in wattr_get macro from 980509 fixes (patch by Dan
9335           Nelson).
9336
9337 980704
9338         + merge changes from current XFree86 xterm terminfo descriptions.
9339         + add configure option '--without-ada'.
9340         + add a smart-default for termcap 'ac' to terminfo 'acs_chars' which
9341           corresponds to vt100.
9342         + change translation for termcap 'rs' to terminfo 'rs2', which is
9343           the documented equivalent, rather than 'rs1'.
9344
9345 980627
9346         + slow 'worm' down a little, for very fast machines.
9347         + corrected firstchar/lastchar computation in lib_hline.c
9348         + simplify some expressions with CHANGED_CELL, CHANGED_RANGE and
9349           CHANGED_TO_EOL macros.
9350         + modify init_pair so that if a color-pair is reinitialized, we will
9351           repaint the areas of the screen whose color changes, like SVr4 curses
9352           (reported by Christian Maurer <maurer@inf.fu-berlin.de>).
9353         + modify getsyx/setsyx macros to comply with SVr4 man-page which
9354           says that leaveok() affects their behavior (report by Darryl Miles,
9355           patch by Alexander V Lukyanov).
9356
9357 980620
9358         + review terminfo.5 against Solaris 2.6 curses version, corrected
9359           several minor errors/omissions.
9360         + implement tparm %l format.
9361         + implement tparm printf-style width and precision for %s, %d, %x, %o
9362           as per XSI.
9363         + implement tparm dynamic variables (reported by Xiaodan Tang).
9364
9365 980613
9366         + update man-page for for wattr_set, wattr_get (cf:  980509)
9367         + correct limits in hashtest, which would cause nonprinting characters
9368           to be written to large screens.
9369         + correct configure script, when --without-cxx was specified:  the
9370           wrong variable was used for cf_cv_type_of_bool.  Compilers up to gcc
9371           2.8 tolerated the missing 'int'.
9372         + remove the hardcoded name "gcc" for the GNU Ada compiler.  The
9373           compiler's name might be something like "egcs" (patch by Juergen
9374           Pfeifer).
9375         + correct curs_addch.3x, which implied that echochar could directly
9376           display control characters (patch by Alexander V Lukyanov).
9377         + fix typos in ncurses-intro.html (patch by Sidik Isani
9378           <isani@cfht.hawaii.edu>)
9379
9380 980606
9381         + add configure test for conflicting use of exception in math.h and
9382           other headers.
9383         + minor optimization to 'hash()' function in hashmap.c, reduces its
9384           time by 10%.
9385         + correct form of LD_SHARED_OPTS for HP-UX 10.x (patch by Tim Mooney).
9386         + fix missing quotes for 'print' in MKunctrl.awk script (reported by
9387           Mihai Budiu <mihaib@gs41.sp.cs.cmu.edu>).
9388         > patch by Alexander V Lukyanov:
9389         + correct problem on Solaris (with poll() function) where getch could
9390           hang indefinitely even if timeout(x) was called.  This turned out to
9391           be because milliseconds was not updated before 'goto retry' in
9392           _nc_timed_wait.
9393         + simplified the function _nc_timed_wait and fixed another bug, which
9394           was the assumption of !GOOD_SELECT && HAVE_GETTIMEOFDAY in *timeleft
9395           assignment.
9396         + removed the cycle on EINTR, as it seems to be useless.
9397
9398 980530
9399         + add makefile-rule for test/keynames
9400         + modify run_tic.sh and shlib to ensure that user's .profile does not
9401           override the $PATH used to run tic (patch by Tim Mooney).
9402         + restore LD_SHARED_OPTS to $(LD_SHARED_FLAGS) when linking programs,
9403           needed for HP-UX shared-library path (recommended by Tim Mooney).
9404         + remove special case of HP-UX -L options, use +b options to embed
9405           $(libdir) in the shared libraries (recommended by Tim Mooney).
9406         + add checks for some possible buffer overflows and unchecked
9407           malloc/realloc/calloc/strdup return values (patch by Todd C Miller
9408           <Todd.Miller@courtesan.com>)
9409
9410 980523
9411         + correct maxx/maxy expression for num_columns/num_lines in derwin
9412           (patch by Alexander V Lukyanov).
9413         + add /usr/share/lib/terminfo and /usr/lib/terminfo as compatibilty
9414           fallbacks to _nc_read_entry(), along with --with-terminfo-dirs
9415           configure option (suggested by Mike Hopkirk).
9416         + modify config.guess to recognize Unixware 2.1 and 7 (patch by Mike
9417           Hopkirk <hops@sco.com>).
9418         + suppress definition of CC_SHARED_OPTS in LDFLAGS_SHARED in c++
9419           Makefile.in, since this conflicts when g++ is used with HP-UX
9420           compiler (reported by Tim Mooney).
9421         + parenthesize 'strcpy' calls in c++ binding to workaround redefinition
9422           in some C++ implementations (reported by several people running
9423           egcs with glibc 2.0.93, analysis by Andreas Jaeger.
9424
9425 980516
9426         + modify write_entry.c so that it will not attempt to link aliases
9427           with embedded '/', but give only a warning.
9428         + put -L$(libdir) first when linking programs, except for HP-UX.
9429         + modify comp_scan.c to handle SVr4 terminfo description for att477,
9430           which contains a colon in the description field.
9431         + modify configure script to support SCO osr5.0.5 shared libraries,
9432           from comp.unix.sco.programmer newsgroup item (Mike Hopkirk).
9433         + eliminate extra GoTo call in lib_doupdate.c (patch by Alexander V.
9434           Lukyanov).
9435         + minor adjustments of const/NCURSES_CONST from IRIX compile.
9436         + add updates based on esr's 980509 version of terminfo.src.
9437
9438 980509
9439         + correct macros for wattr_set, wattr_get, separate wattrset macro from
9440           these to preserve behavior that allows attributes to be combined with
9441           color pair numbers.
9442         + add configure option --enable-no-padding, to allow environment
9443           variable $NCURSES_NO_PADDING to eliminate non-mandatory padding,
9444           thereby making terminal emulators (e.g., for vt100) a little more
9445           efficient (request by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
9446         + modify configure script to embed ABI in shared libraries for HP-UX
9447           10.x (detailed request by Tim Mooney).
9448         + add test/example of the 'filter()' function.
9449         + add nxterm and xterm-color terminfo description (request by Cristian
9450           Gafton <gafton@redhat.com>).
9451         + modify rxvt terminfo description to clear alternate screen before
9452           switching back to normal screen, for compatibility with applications
9453           which use xterm (reported by Manoj Kasichainula <manojk@io.com>).
9454         + modify linux terminfo description to reset color palette (reported
9455           by Telford Tendys <telford@eng.uts.edu.au>).
9456         + correction to doupdate, for case where terminal does not support
9457           insert/delete character.  The logic did not check that there was a
9458           difference in alignment of changes to old/new screens before
9459           repainting the whole non-blank portion of the line.  Modified to fall
9460           through into logic that reduces by the portion which does not differ
9461           (reported by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
9462         + minor performance improvement to wnoutrefresh by moving some
9463           comparisons out of inner loop.
9464
9465 980425
9466         + modify configure script to substitute NCURSES_CONST in curses.h
9467         + updated terminfo entries for xterm-xf86-v40, xterm-16color,
9468           xterm-8bit to correspond to XFree86 3.9Ag.
9469         + remove restriction that forces ncurses to use setaf/setab if the
9470           number of colors is greater than 8.  (see 970524 for xterm-16color).
9471         + change order of -L options (so that $(libdir) is searched first) when
9472           linking tic and other programs, to workaround HP's linker.
9473           Otherwise, the -L../lib is embedded when linking against shared
9474           libraries and the installed program does not run (reported by Ralf
9475           Hildebrandt).
9476         + modify configuration of shared libraries on Digital Unix so that
9477           versioning is embedded in the library, rather than implied by
9478           links (patch by Tim Mooney).
9479
9480 980418
9481         + modify etip.h to avoid conflict with math.h on HP-UX 9.03 with gcc
9482           2.8.1 which redefines 'exception' (reported by Ralf Hildebrandt
9483           <R.Hildebrandt@tu-bs.de>).
9484         + correct configure tests in CF_SHARED_OPTS which used $CC value to
9485           check for gcc, rather than autoconf's $GCC value.  This did not
9486           work properly if the full pathname of the compiler were given
9487           (reported by Michael Yount <yount@csf.Colorado.edu>).
9488         + revise check for compiler options to force ANSI mode since repeating
9489           an option such as -Aa causes HP's compiler to fail on its own headers
9490           (reported by Clint Olsen <olsenc@ichips.intel.com>).
9491
9492 980411
9493         + ifdef'd has_key() and mcprint() as extended functions.
9494         + modified several prototypes to correspond with 1997 version of
9495           X/Open Curses (affects ABI since developers have used attr_get).
9496         + remove spurious trailing blanks in glibc addon-scripts (patch by
9497           H.J.Lu).
9498         + insert a few braces at locations where gcc-2.8.x asks to use them to
9499           avoid ambigous else's, use -fpic rather than -fPIC for Linux (patch
9500           by Juergen Pfeifer).
9501
9502 980404
9503         + split SHLIB_LIST into SHLIB_DIRS/SHLIB_LIST to keep -L options
9504           before -l to accommodate Solaris' linker (reported by Larry Virden).
9505
9506 980328
9507         + modify lib_color.c to eliminate dependency on orig_colors and
9508           orig_pair, since SVr4 curses does not require these either, but
9509           uses them when they are available.
9510         + add detailed usage-message to infocmp.
9511         + correct a typo in att6386 entry (a "%?" which was "?").
9512         + add -f option to infocmp and tic, which formats the terminfo
9513           if/then/else/endif so that they are readable (with newlines and
9514           tabs).
9515         + fixes for glibc addon scripts (patch by H.J.Lu).
9516
9517 980321
9518         + revise configure macro CF_SPEED_TYPE so that termcap.h has speed_t
9519           declared (from Adam J Richter <adam@yggdrasil.com>)
9520         + remove spurious curs_set() call from leaveok() (J T Conklin).
9521         + corrected handling leaveok() in doupdate() (patch by Alexander V.
9522           Lukyanov).
9523         + improved version of wredrawln (patch by Alexander V. Lukyanov).
9524         + correct c++/Makefile.in so install target do not have embedded ../lib
9525           to confuse it (patch by Thomas Graf <graf@essi.fr>).
9526         + add warning to preinstall rule which checks if the installer would
9527           overwrite a curses.h or termcap.h that is not derived from ncurses.
9528           (The recommended configuration for developers who need both is to
9529           use --disable-overwrite).
9530         + modify preinstall rule in top-level Makefile to avoid implicit
9531           use of 'sh', to accommodate Ultrix 4.4 (reported by Joao Palhoto
9532           Matos <jmatos@math.ist.utl.pt>, patch by Thomas Esser
9533           <te@informatik.uni-hannover.de>)
9534         + refine ifdef's for TRACE so that libncurses has fewer dependencies
9535           on libtinfo when TRACE is disabled.
9536         + modify configure script so that if the --with-termlib option is used
9537           to generate a separate terminfo library, we chain it to the ncurses
9538           library with a "-l" option (reported by Darryl Miles and Ian T.
9539           Zimmerman).
9540
9541 980314
9542         + correct limits and window in wredrawln function (reported/analysis by
9543           Alexander V. Lukyanov).
9544         + correct sed expression in configure script for --with-fallback
9545           option (patch by Jesse Thilo).
9546         + correct some places in configure script where $enableval was used
9547           rather than $withval (patch by Darryl Miles <dlm@g7led.demon.co.uk>).
9548         + modify some man-pages so no '.' or '..' falls between TH and SH
9549           macros, to accommodate man_db program (reported by Ian T. Zimmerman
9550           <itz@rahul.net>).
9551         + terminfo.src 10.2.1 downloaded from ESR's webpage (ESR).
9552         > several changes by Juergen Pfeifer:
9553         + add copyright notices (and rcs id's) on remaining man-pages.
9554         + corrected prototypes for slk_* functions, using chtype rather than
9555           attr_t.
9556         + implemented the wcolor_set() and slk_color() functions
9557         + the slk_attr_{set,off,on} functions need an additional void*
9558           parameter according to XSI.
9559         + fix the C++ and Ada95 binding as well as the man pages to
9560           reflect above enhancements.
9561
9562 980307
9563         + use 'stat()' rather than 'access()' in toe.c to check for the
9564           existence of $HOME/.terminfo, since it may be a file.
9565         + suppress configure CF_CXX_LIBRARY check if we are not using g++
9566           2.7.x, since this is not needed with g++ 2.8 or egcs (patch by
9567           Juergen Pfeifer).
9568         + turn on hashmap scrolling code by default, intend to remedy defects
9569           by 4.3 release.
9570         + minor corrections to terminfo.src changelog.
9571
9572 980302  4.2 release for upload to prep.ai.mit.edu
9573         + correct Florian's email address in ncurses-intro.html
9574         + terminfo.src 10.2.0 (ESR).
9575
9576 980228  pre-release
9577         + add linux-koi8r replace linux-koi8, which is not KOI8 (patch by
9578           QingLong <qinglong@Bolizm.ihep.su>).
9579         + minor documentation fixes (patch by Juergen Pfeifer).
9580         + add setlocale() call to ncurses.c (reported by Claes G. Lindblad
9581           <claesg@algonet.se>).
9582         + correct sign-extension in lib_insstr.c (reported by Sotiris
9583           Vassilopoulos <svas@leon.nrcps.ariadne-t.gr>)
9584
9585 980221  pre-release
9586         + regenerated some documentation overlooked in 980214 patch
9587           (ncurses-intro.doc, curs_outopts.3x.html)
9588         + minor ifdef change to C++ binding to work with gcc 2.8.0 (patch by
9589           Juergen Pfeifer).
9590         + change maintainer's mailing address to florian@gnu.org, change
9591           tentative mailing list address to bug-ncurses-request@gnu.org (patch
9592           by Florian La Roche).
9593         + add definition of $(REL_VERSION) to c++/Makefile.in (reported by Gran
9594           Hasse <gh@raditex.se>).
9595         + restore version numbers to Ada95 binding, accidentally deleted by
9596           copyright patch (patch by Juergen Pfeifer).
9597
9598 980214  pre-release
9599         + remove ncurses.lsm from MANIFEST so that it won't be used in FSF
9600           distributions, though it is retained in development.
9601         + correct scaling of milliseconds to nanoseconds in lib_napms.c (patch
9602           by Jeremy Buhler).
9603         + update mailing-list information (bug-ncurses@gnu.org).
9604         + update announcement for upcoming 4.2 release.
9605         + modify -lm test to check for 'sin()' rather than 'floor()'
9606         + remove spurious commas from terminfo.src descriptions.
9607         + change copyright notices to Free Software Foundation
9608
9609 980207
9610         + minor fixes for autoconf macros CF_ERRNO, CF_HELP_MESSAGE and
9611           CF_SIZECHANGE
9612         + modify Makefile.glibc so that $(objpfx) is defined (H.J.Lu).
9613         + ifdef-out true-return from _nc_mouse_inline() which depends on
9614           merge of QNX patch (pending 4.2 release).
9615         > patch to split off seldom-used modules in ncurses (J T Conklin):
9616           This reduces size by up to 2.6kb.
9617         + move functionality of _nc_usleep into napms, add configuration case
9618           for nanosleep().
9619         + moved wchgat() from lib_addch.c to lib_chgat.c
9620         + moved clearok(), immedok(), leaveok(), and scrollok() from
9621           lib_options.c to lib_clearok.c, lib_immedok.c, lib_leaveok.c and
9622           lib_scrollok.c.
9623         + moved napms() from lib_kernel.c to lib_napms.c
9624         + moved echo() and noecho() from lib_raw.c to lib_echo.c
9625         + moved nl() and nonl() from lib_raw.c to lib_nl.c
9626
9627 980131
9628         + corrected conversion in tclock.c (cf: 971018).
9629         + updates to Makefile.glibc and associated Linux configure script
9630           (patch by H.J.Lu).
9631         + workaround a quoting problem on SunOS with tar-copy.sh
9632         + correct init_pair() calls in worm.c to work when use_default_colors()
9633           is not available.
9634         + include <sys/types.h> in CF_SYS_TIME_SELECT to work with FreeBSD
9635           2.1.5
9636         + add ncv capability to FreeBSD console (cons25w), making reverse
9637           work with color.
9638         + correct sense of configure-test for sys/time.h inclusion with
9639           sys/select.h
9640         + fixes for Ada95/ada_include/Makefile.in to work with --srcdir option.
9641         + remove unused/obsolete test-program rules from progs/Makefile.in
9642           (the rules in ncurses/Makefile.in work).
9643         + remove shared-library loader flags from test/Makefile.in, etc.
9644         + simplify test/configure.in using new version of autoconf to create
9645           test/ncurses_cfg.h
9646         + suppress suffix rules in test/Makefile.in, provide explicit
9647           dependency to work with --srcdir option and less capable 'make'
9648           programs.
9649         > adapted from patch for QNX by Xiaodan Tang:
9650         + initialize %P and %g variables set/used in tparm, and also ensure
9651           that empty strings don't return a null result from tparam_internal
9652         + add QNX-specific prototype for vsscanf()
9653         + move initialization of SP->_keytry from init_keytry() to newterm() to
9654           avoid resetting it via a keyok() call by mouse_activate().
9655         + reorganized some functions in lib_mouse() to use case-statements.
9656         + remove sgr string from qnx terminfo entry since it is reported to
9657           turn off attributes inconsistently.
9658
9659 980124
9660         + add f/F/b/B commands to ncurses 'b' test to toggle colors, providing
9661           test for no_color_video.
9662         + adjusted emx.src to use no_color_video, now works with ncurses 'b'
9663           and 'k' tests.
9664         + implement no_color_video attribute, and as a special case, reverse
9665           colors when the reverse attribute cannot be combined with color.
9666         + check for empty string in $TERM variable (reported by Brett Michaels
9667           <brett@xylan.com>).
9668         > from reports by Fred Fish:
9669         + add configure-test for isascii
9670         + add configure-test for -lm library.
9671         + modify CF_BOOL_SIZE to check if C++ bool types are unsigned.
9672         > patches by J.J.G.Ripoll
9673         + add configure/makefile variables to support .exe extension on
9674           OS/2 EMX (requires additional autoconf patches).
9675         + explicitly initialize variables in lib_data.c to appease OS/2 linker
9676         > patches by Fred Fish <fnf@ninemoons.com>
9677         + misc/Makefile.in (install.data):  Avoid trying to install the CVS
9678           directory.
9679         + aclocal.m4 (install.includes):  Remove files in the include directory
9680           where we are going to install new ones, not the original source
9681           files.
9682         + misc/terminfo.src:  Add entry for "beterm", derived from termcap
9683           distributed with BeOS PR2 using captoinfo.
9684         + aclocal.m4: Wrap $cf_cv_type_of_bool with quotes (contains space)
9685         + aclocal.m4: Assume bool types are unsigned.
9686         + progs/infocmp.c: workaround mwcc 32k function data limit
9687
9688 980117
9689         + correct initialization of color-pair (cf: 970524) in xmas.c, which
9690           was using only one color-pair for all colors (reported by
9691           J.J.G.Ripoll).
9692         + add multithread options for objects build on EMX, for compatibility
9693           with XFree86.
9694         + split up an expression in MKlib_gen.sh to work around a problem on
9695           OS/2 EMX, with 'ash' (patch by J.J.G.Ripoll).
9696         + change terminfo entries xterm (xterm-xf86-v40), xterm-8bit rs1 to use
9697           hard reset.
9698         + rename terminfo entry xterm-xf86-v39t to xterm-xf86-v40
9699         + remove bold/underline from sun console entries since they're not
9700           implemented.
9701         + correct _tracef calls in _tracedump(), which did not separate format
9702           from parameters.
9703         + correct getopt string for tic "-o" option, and add it to man-page
9704           synopsis (reported by Darren Hiebert <darren@hmi.com>).
9705         + correct typo in panel/Makefile.in, reversed if-statement in scrolling
9706           optimization (Alexander V.  Lukyanov).
9707         + test for 'remove()', use 'unlink() if not found (patch by Philippe De
9708           Muyter <phdm@macqel.be>).
9709         > patches by Juergen Pfeifer:
9710         + Improve a feature of the forms driver.  For invisible fields
9711           (O_VISIBLE off) only the contents but not the attributes are cleared.
9712           We now clear both.  (Reported by Javier Kohan
9713           <jkohan@adan.fceia.unr.edu.ar>)
9714         + The man page form_field_opts.3x makes now clear, that invisible
9715           fields are also always inactive.
9716         + adjust ifdef's to compile the C++ binding with the just released
9717           gcc-2.8.0 c++ and the corresponding new C++ libraries.
9718
9719 980110
9720         + correct "?" command in ncurses.c; it was performing non-screen writes
9721           while the program was in screen mode.  (It "worked" in 1.9.9e because
9722           that version sets OPOST and OCRNL incorrectly).
9723         + return error from functions in lib_kernel, lib_raw and lib_ti if
9724           cur_term is null, or if underlying I/O fails.
9725         + amend change to tputs() so that it does not return an error if
9726           cur_term is null, since some applications depend on being able to use
9727           tputs without initializing the terminal (reported by Christian J.
9728           Robinson <infynity@cyberhighway.net>).
9729
9730 980103
9731         + add a copy of emx.src from J.J.G.Ripoll's OS/2 EMX version of ncurses
9732           1.9.9e, together with fixes/additions for the "ansi" terminal type.
9733         + add tic check for save/restore cursor if change_scroll_region is
9734           defined (reference: O'Reilly book).
9735         + modify read_termcap.c to handle EMX-style pathnames (reported by
9736           J.J.G.Ripoll).
9737         + modify lib_raw.c to use EMX's setmode (patch from J.J.G.Ripoll).
9738           Ripoll says EMX's curses does this.
9739         + modify _nc_tic_expand() to generate \0 rather than \200.
9740         + move/revise 'expand()' from dump_entry.c to ncurses library as
9741           _nc_tic_expand(), for use by tack.
9742         + decode \a as \007 for terminfo, as per XSI.
9743         + correct translation of terminfo "^@", to \200, like \0.
9744         + modify next_char() to treat <cr><lf> the same as <newline>, for
9745           cross-platform compatibility.
9746         + use new version of autoconf (971230) to work around limited
9747           environment on CLIX, due to the way autoconf builds --help message.
9748         > patch by Juergen Pfeifer:
9749         + check that the Ada95 binding runs against the correct version of
9750           ncurses.
9751         + insert constants about the library version into the main spec-file of
9752           the Ada95 binding.
9753
9754 971227
9755         + modify open/fopen calls to use binary mode, needed for EMX.
9756         + modify configure script to work with autoconf 2.10 mods for OS/2
9757           EMX (from J.J.G.Ripoll).
9758         + generated ncurses_cfg.h with patch (971222) to autoconf 2.12 which
9759           bypasses limited sed buffer length.
9760         > several changes from Juan Jose Garcia Ripoll <worm@arrakis.es>
9761           (J.J.G.Ripoll) to support OS/2 EMX:
9762         + add a _scrolling flag to SP, to set when we encounter a terminal
9763           that simply cannot scroll.
9764         + corrected logic in _nc_add_to_try(), by ensuring that strings with
9765           embedded \200 characters are matched.
9766         + don't assume the host has 'link()' function, for linking terminfo
9767           entries.
9768
9769 971220
9770         + if there's no ioctl's to support sigwinch handler, disable it.
9771         + add configure option --disable-ext-funcs to remove the extended
9772           functions from the build.
9773         + add configure option --with-termlib to generate the terminfo
9774           functions as a separate library.
9775         + add 'sources' rule to facilitate cross-compiling.
9776         + review/fix order of mostlyclean/clean/distclean rules.
9777         + modify install-rule for headers to first remove old header, in
9778           case there was a symbolic link that confuses the install script.
9779         + corrected substitution for NCURSES_CONST in term.h (cf: 971108)
9780         + add null pointer checks in wnoutrefresh(), overlap() (patch by
9781           Xiaodan Tang <xtang@qnx.com>)
9782         + correct tputs(), which could dereference a null cur_term if invoked
9783           before terminal is initialized (patch by Christopher Seawood
9784           <cls@seawood.org>)
9785         > patch by Juergen Pfeifer:
9786         + makes better use of "pragma Inline" in the Ada95 binding
9787         + resynchronizes the generated html manpages
9788
9789 971213
9790         + additional fixes for man-pages section-references
9791         + add (for debugging) a check for ich/ich1 conflict with smir/rmir
9792           to tic, etc.
9793         + remove hpa/vpa from rxvt terminal description because they are not
9794           implemented correctly, added sgr0.
9795         + change ncurses 's' to use raw mode, so ^Q works (reported by Rudolf
9796           Leitgeb <leitgeb@leland.stanford.edu>)
9797
9798 971206
9799         + modify protection when installing libraries to (normally) not
9800           executable.  HP-UX shared libraries are an exception.
9801         + add configure check for 'tack'.
9802         + implement script for renaming section-references in man-page install,
9803           for Debian configuration.
9804         + add validity-check for SP in trace code in baudrate() (reported by
9805           Daniel Weaver).
9806         > patch by Alexander V. Lukyanov (fixes to match sol25 curses)
9807         + modify 'overlay()' so that copy applies target window background to
9808           characters.
9809         + correct 'mvwin()' so that it does not clear the previous locations.
9810         + correct lib_acs.c so that 8-bit character is not sign expanded in
9811           case of wide characters in chtype.
9812         + correct control-char test in lib_addch.c for use with wide chars
9813         + use attribute in the chtype when adding a control character in
9814           lib_addch.c control char was added with current attribute
9815
9816 971129
9817         + save/restore errno in _tracef() function
9818         + change treatment of initialize_color to use a range of 0..1000
9819           (recommended by Daniel Weaver).
9820         + set umask in mkinstalldirs, fixing problems reported by users who
9821           have set root's umask to 077.
9822         + correct bug in tic that caused capabilities to be reprinted at the
9823           end of output when they had embedded comments.
9824         + rewrote wredrawln to correspond to XSI, and split-out since it is
9825           not often used (from report by Alexander V. Lukyanov, 970825)
9826         + rewrote Dan Nelson's change to make it portable, as well as to
9827           correct logic for handling backslashes.
9828         + add code to _nc_tgetent() to make it work more like a real tgetent().
9829           It removes all empty fields, and removes all but the first in a group
9830           of duplicate caps.  The code was pulled from the BSD libtermcap code
9831           in termcap.c (patch by Dan Nelson <dnelson@emsphone.com>
9832         + don't include --enable-widec in the --with-develop configure option,
9833           since it is not binary-compatible with 4.1 (noted by Alexander V.
9834           Lukyanov)
9835         > patch by Juergen Pfeifer:
9836         + further improvements of the usage of elaboration pragmas in the Ada95
9837           binding
9838         + enhanced Ada95 sample to use the user_data mechanism for panels.
9839         + a fix for the configuration script to make gnat-3.10 the required
9840           version.
9841         + resync of the html version of the manpages
9842
9843 971122
9844         > fixes/updates for terminfo.src:
9845         + add vt220-js, pilot, rbcomm, datapoint entries from esr's 27-jun-97
9846           version.
9847         + add hds200 description (Walter Skorski)
9848         + add EMX 0.9b descriptions
9849         + correct rmso/smso capabilities in wy30-mc and wy50-mc (Daniel Weaver)
9850         + rename xhpterm back to hpterm.
9851         > patch by Juergen Pfeifer:
9852         + Improves the usage of elaboration pragmas for the Ada95 binding.
9853         + Adds a translation of the test/rain.c into Ada95 to the samples.
9854           This has been contributed to the project by Laurent Pautet
9855           (pautet@gnat.com)
9856
9857 971115
9858         + increase MAX_NAME_SIZE to 512 to handle extremely long alias list
9859           in HP-UX terminfo.
9860         + correction & simplification of delay computation in tputs, based on
9861           comments from Daniel Weaver.
9862         + replace test for SCO with more precise header tests.
9863         + add configure test for unsigned literals, use in NCURSES_BITS macro.
9864         + comment-out the -PIC, etc., flags from c++, progs and test makefiles
9865           since they probably are not needed, and are less efficient (noted by
9866           Juergen Fluk)
9867         + add -L$(libdir) to loader options, after -L../lib so that loaders
9868           that record this information will tend to do the right thing if
9869           the programs are moved around after installing them (suggested by
9870           Juergen Fluk).
9871         + add -R option to loader options for programs for Solaris if the
9872           --enable-rpath option is specified for the libraries.
9873
9874 971112
9875         + correct installed filename for shared libraries on *BSD (reported by
9876           Juergen Fluk).
9877
9878 971108
9879         + cleanup logic for deciding when tputs() should call delay_output(),
9880           based on comments from Daniel Weaver.
9881         + modified tputs() to avoid use of float.
9882         + correct use of trailpad in tputs(), which used the wrong variable
9883           in call to delay_output().
9884         + correct inverted expression for null-count in delay_output()
9885           (analysis by Daniel Weaver).
9886         + apply --enable-rpath option to Solaris (requested by Larry Virden).
9887         + correct substitution of EXTRA_CFLAGS for gcc 2.6.3
9888         + correct check for error-return by _nc_tgetent(), which returns 0
9889           for success.
9890         + add configure test for BSD 4.4 cgetent() function, modify
9891           read_termcap.c to use the host's version of that if found, using the
9892           terminal database on FreeBSD (reported by Peter Wemm).
9893         + add u8, u9 strings to sun-il description for Daniel Weaver.
9894         + use NCURSES_CONST in panel's user-pointer.
9895         + modify edit_cfg.sh and MKterm.h.awk.in to substitute NCURSES_CONST
9896           so that will work on NeXT.
9897         + use _nc_set_screen() rather than assignments to SP to fix port to
9898           NeXT (reported by Francisco A. Tomei Torres).
9899
9900 971101
9901         + force mandatory padding in bell and flash_screen, as specified in
9902           XSI.
9903         + don't allow padding_baud_rate to override mandatory delays (reported
9904           by Daniel Weaver).
9905         + modify delay_output() to use _nc_timed_wait() if no baudrate has been
9906           defined, or if the cur_term pointer is not initialized.  XSI treats
9907           this as unspecified.  (requested by Daniel Weaver).
9908         + change getcap-cache ifdef's to eliminate unnecessary chdir/mkdir
9909           when that feature is not configured.
9910         + remove _nc_err_abort() calls when write_entry.c finds a directory but
9911           cannot write to it, e.g., when translating part/all of /etc/termcap
9912           (reported by Andreas Jaeger <aj@arthur.rhein-neckar.de>).
9913           (this dates back to 951102 in 1.9.7a).
9914         + minor ifdef fixes to compile with atac and glibc 2.0.5c
9915         + add check for -lgen when configuring regexpr.h
9916         + modify Solaris shared-library option "-d y" to "-dy" to workaround
9917           incompatibility of gcc 2.7.2 vs vendor's tools.
9918
9919 971026
9920         + correct ifdef's for struct winsize vs struct ttysize in lib_setup.c
9921           to compile on SCO.
9922         + remove dangling backslash in panel/Makefile.in
9923         + modify MKkeyname.awk to work with SCO's nawk, which dumps core in the
9924           length() function.
9925         + correct length of allocation in _nc_add_to_try(), to allow for
9926           trailing null.
9927         + correct logic in _nc_remove_key(), which was discarding too many
9928           nodes (patch by Alexander V. Lukyanov)
9929
9930 971025
9931         + add definition for $(REL_VERSION) to test/Makefile.in, so *BSD
9932           shared libraries link properly (see 970524).
9933         + modify Linux shared-library generation to include library
9934           dependencies (e.g., -lncurses and -lgpm) in the forms, menu and
9935           panel libraries (suggested by Juergen Pfeifer).
9936         + modify configure script to use config.guess and config.sub rather
9937           than uname, which is unreliable on some systems.
9938         + updated Makefile.glibc, test-built with glibc 2.0.5c
9939         + modify keyname() to return values consistent with SVr4 curses (patch
9940           by Juergen Fluk).
9941         > changes requested by Daniel Weaver:
9942         + modify delay_output() so that it uses the same output function as
9943           tputs() if called from that function.
9944         + move _baudrate from SCREEN to TERMINAL so that low-level use of
9945           tputs works when SP is not set.
9946         > patch by Juergen Pfeifer:
9947         + factor lib_menu and lib_form into smaller modules
9948         + clean up the interface between panel and SCREEN
9949         + minor changes to the Ada95 mouse support implemenation
9950         + minor bugfix in C++ binding to ripoff windows
9951         + fix a few Ada95 html documentation pages
9952
9953 971018
9954         + split-out lib_ungetch.c, make runtime link to resizeterm() to
9955           decouple those modules from lib_restart.c
9956         + add xterm-xf86-v39t description to terminfo.src
9957         + reset SP->_endwin in lib_tstp.c cleanup() function after calling
9958           endwin() to avoid unnecessary repainting if the application has
9959           established an atexit function, etc.  Encountered this problem in
9960           the c++ demo, whose destructors repaint the screen.
9961         + combine _nc_get_screensize() and resizeterm() calls as new function
9962           _nc_update_screensize().
9963         + minor fixes to allow compile with g++ (suggested by Nelson H. F.
9964           Beebe).
9965         + implement install-rules for Ada95 makefiles.
9966         + use screen_lines or MAXLINES as needed where LINES was coded,
9967           as well as screen_columns for COLS, in the ncurses library.
9968         > patch by Alexander V. Lukyanov:
9969         + modify logic for ripped-off lines to handle several SCREENs.
9970         > patch by Juergen Pfeifer:
9971         + factors lib_slk.c into some smaller modules
9972         + factors panel.c into some smaller modules
9973         + puts the static information about the current panel stack into the
9974           SCREEN structure to allow different panel stacks on different
9975           screens.
9976         + preliminary fix for an error adjusting LINES to account for
9977           ripped-off lines.
9978
9979 971011
9980         + move _nc_max_click_interval and other mouse interface items to SCREEN
9981           struct so that they are associated with a single terminal, and also
9982           save memory when the application does not need a mouse (roughly 3k vs
9983           0.5k on Linux).
9984         + modify mouseinterval() so that a negative parameter queries the
9985           click-interval without modifying it.
9986         + modify ncurses 'i' test to work with ncurses' apparent extension from
9987           SVr4, i.e., allows nocbreak+noecho (analysis by Alexander V.
9988           Lukyanov).
9989         + add configure options --with-ada-includes and --with-ada-objects,
9990           to drive Ada95 binding install (not yet implemented).
9991         + install C++ binding as -lncurses++ and associated headers with the
9992           other ncurses headers.
9993         + fix header uninstall if configure --srcdir is used.
9994         > minor interface changes to support 'tack' program -TD
9995           (request by Daniel Weaver <danw@znyx.com>).
9996         + export functions _nc_trans_string() and _nc_msec_cost().
9997         + add variable _nc_nulls_sent, to record the number of padding
9998           characters output in delay_output().
9999         + move tests for generic_type and hard_copy terminals in setupterm()
10000           to the end of that function so that the library will still be
10001           initialized, though not generally useful for curses programs.
10002         > patches by Alexander V. Lukyanov:
10003         + modify ClrBottom() to avoid using clr_eos if there is only one line
10004           to erase.
10005         + typo in configure --help.
10006         > patch by J T Conklin (with minor resync against Juergen's changes)
10007         + split-out lib_flash.c from lib_beep.c
10008         + split-out lib_hline.c and lib_vline.c from lib_box.c
10009         + split-out lib_wattron.c, lib_wattroff.c from lib_addch.c
10010
10011 971005
10012         > patch by Juergen Pfeifer:
10013         + correct source/target of c++/edit_cfg.sh
10014
10015 971004
10016         + add color, mouse support to kterm terminfo entry.
10017         + modify lib_mouse.c to recognize rxvt, kterm, color_xterm also as
10018           providing "xterm"-style mouse.
10019         + updated rxvt's terminfo description to correspond to 2.21b, with
10020           fixes for the acsc (the box1 capability is incorrect, ech1 does not
10021           work).
10022         + fix logic in parse_entry.c that discarded acsc when 'synthesizing'
10023           an entry from equivalents in XENIX or AIX.  This lets ncurses handle
10024           the distribution copy of rxvt's terminfo.
10025         + modify acsc capability for linux and linux-koi8 terminfo descriptions
10026           (from Pavel Roskin <pavel@absolute.spb.su>).
10027         + corrected definition in curses.h for ACS_LANTERN, which was 'I'
10028           rather than 'i' (see 970802).
10029         + updated terminfo.src with reformatted acsc entries, and repaired the
10030           trashed entries with spurious '\' characters that this exposed.
10031         + add logic to dump_entry.c to reformat acsc entries into canonical
10032           form (sorted, unique mapping).
10033         + add configure script to generate c++/etip.h
10034         + add configure --with-develop option, to enable by default most of the
10035           experimental options (requested by Alexander V. Lukyanov).
10036         + rename 'deinstall' to 'uninstall', following GNU convention
10037           (suggested by Alexander V. Lukyanov).
10038         > patches by Alexander V. Lukyanov:
10039         + modify tactics 2 and 5 in onscreen_mvcur(), to allow them on the last
10040           line of the screen, since carriage return will not cause a newline.
10041         + remove clause from PutCharLR() that would try to use
10042           eat_newline_glitch since that apparently does not work on some
10043           terminals (e.g., M$ telnet).
10044         + correct a limit check in scroll_csr_backward()
10045         > patches by Juergen Pfeifer:
10046         + adds dummy implementations of methods above() and below() to the
10047           NCursesPanel class.
10048         + fixes missing returncode in NCursesWindow::ripoffline()
10049         + fixes missing returncode in TestApplication::run() in demo.cc
10050         + We should at least give a comment in etip.h why it is currently a
10051           problem to install the C++ binding somewhere
10052         + makes the WINDOW* argument of wenclose() a const.
10053         + modifies several of the routines in lib_adabind.c to use a const
10054           WINDOW* argument.
10055
10056 970927
10057         + add 'deinstall' rules.
10058         + use explicit assignments in configure --without-progs option to
10059           work around autoconf bug which doesn't always set $withval.
10060         + check for ldconfig, don't try to run it if not found.
10061         + implement simple/unoptimized case in lib_doupdate.c to handle
10062           display with magic cookie glitch, tested with ncurses.c program.
10063         + correct missing _tracef in getmouse(), to balance the returnCode
10064           macro.
10065         + simplify show_attr() in ncurses.c using termattrs().
10066         > patches by Juergen Pfeifer:
10067         + provides missing inlines for mvw[hv]line in cursesw.h of the C++
10068           binding
10069         + fixes a typo in a comment of frm_driver.c
10070         + Enhances Ada95 Makefiles to fulfill the requirement of GNAT-3.10 that
10071           generics should be compiled.  Proper fixes to the configuration
10072           scripts are also provided.
10073
10074 970920
10075         + several modifications to the configure script (requested by Ward
10076           Horner):
10077           + add configure options --without-progs, to suppress the build of the
10078             utility programs, e.g., for cross-compiling.
10079           + add $(HOSTCCFLAGS) and $(HOSTLDFLAGS) symbols to ncurses
10080             Makefile.in, to simplify setup for cross compiling.
10081           + add logic in configure script to recognize "--target=vxworks", and
10082             generate load/install actions for VxWorks objects.
10083         + move typedef for sigaction_t into SigAction.h to work around problem
10084           generating lint library.
10085         + modify fty_regex.c to reflect renaming of ifdef's for regular
10086           expressions.
10087         + simplify ifdef in lib_setup.c for TIOCGWINSZ since that symbol may
10088           reside in <sys/ioctl.h>.
10089         + merge testcurs.c with version from PDCurses 2.3, clarifying some of
10090           the more obscure tests, which rely upon color.
10091         + use macros getbegyx() and getmaxyx() in newdemo.c and testcurs.c
10092         + modify ncurses.c to use getbegyx() and getmaxyx() macros to cover up
10093           implementation difference wrt SVr4 curses, allow 's' test to work.
10094         + add missing endwin() to testscanw.c program (reported by Fausto
10095           Saporito <fausap@itb.it>).
10096         + fixes/updates for Makefile.glibc and related files under sysdeps
10097           (patch by H.J.Lu).
10098         > patches by Juergen Pfeifer:
10099         + add checks for null pointers, especially WINDOW's throughout the
10100           ncurses library.
10101         + solve a problem with wrong calculation of panel overlapping (reported
10102           by Ward Horner):
10103           + make sure that a panel's window isn't a pad.
10104           + do more error checking in module lib_touch.c
10105         + missing files for Ada95 binding from the last patch
10106         + synch. of generated html pages (RCS-Id's were wrong in html files)
10107         + support for Key_Resize in Ada binding
10108         + changed documentation style in ./c++/cursesm.h
10109         > patches by Alexander V. Lukyanov:
10110         + undo attempt to do recursive inlining for PutChar(), noting that it
10111           did not improve timing measurably, but inflated the size of
10112           lib_doupdate.o
10113
10114 970913
10115         + modify rain.c to use color.
10116         + correct scroll_csr_backward() to match scroll_csr_forward().
10117         + minor adjustment to llib-lncurses, to work with Solaris 2.5.1
10118         + minor fixes to sysdeps/unix/sysv/linux/configure to reflect renaming
10119           of configure cache variables in 970906.
10120         + correct logic involving changes to O_VISIBLE option in
10121           Synchronize_Options function in frm_driver.c (Tony Hoffmann
10122           <Tony.Hoffmann@hia.nrc.ca>)
10123         + add $(HOSTCC) symbol to ncurses Makefile.in, to simplify setup for
10124           cross compiling (suggested by Chris Johns).
10125         + modify ifdef in lib_setup.c to only include <sys/ioctl.h> if we can
10126           use it to support screen-size calculation (reported by Chris Johns).
10127         + #undef unctrl to avoid symbol conflict in port to RTEMS (reported by
10128           Chris Johns <cjohns@plessey.com.au>)
10129         > patches by Juergen Pfeifer:
10130         + simplified, made minor corrections to Ada95 binding to form
10131           fieldtype.
10132         + The C++ binding has been enhanced:
10133           + Improve NCursesWindow class:  added additional methods to cover
10134             more ncurses functionality.  Make refresh() and noutrefresh()
10135             virtual members to allow different implementation in the
10136             NCursesPanel class.
10137           + CAUTION:  changed order of parameters in vline() and hline() of
10138             NCursesWindow class.
10139           + Make refresh() in NCursesPanel non-static, it is now a
10140             reimplementation of refresh() in the base class.  Added
10141             noutrefresh() to NCursesPanel.
10142           + Added NCursesForm and related classes to support libform
10143             functionality.
10144           + Moved most of configuration related stuff from cursesw.h to etip.h
10145           + Added NCursesApplication class to support easy configuration of
10146             menu and forms related attributes as well as ripped of title lines
10147             and Soft-Label-Keys for an application.
10148           + Support of Auto-Cleanup for a menu's fieldlist.
10149           + Change of return type for current_item() and operator[] for menus.
10150           + Enhanced demo.
10151         + Fixed a bug in form/fld_def.c:  take into account that copyarg and
10152           freearg for a fieldtype may be NULL, makearg must not be NULL
10153         + Fixed a bug in form/fld_type.c:  in set_fieldtype_arg() makearg must
10154           not be NULL, copyarg and freearg may be NULL.
10155         + Fixed a bug in form/frm_def.c:  Allow Disconnect_Fields() if it is
10156           already disconnected.
10157         + Enhance form/frm_driver.c:  Allow growth of dynamic fields also on
10158           navigation requests.
10159         + Fixed a bug in form/fty_enum.c:  wrong position of postincrement in
10160           case-insensitiva comparision routine.
10161         + Enhanced form/lib_adabind.c with function _nc_get_field() to get a
10162           forms field by index.
10163         + Enhanced menu/m_adabind.c with function _nc_get_item() to get a menus
10164           item by index.
10165         + Fixed in curses.h.in:  make chtype argument for pechochar() constant.
10166           Mark wbkgdset() as implemented, remove wbkgdset macro, because it was
10167           broken (didn't handle colors correctly).
10168         + Enhanced lib_mouse.c: added _nc_has_mouse() function
10169         + Added _nc_has_mouse() prototype to curses.priv.h
10170         + Modified lib_bkgd.c:  hopefully correct implementation of wbkgdset();
10171           streamlined implementation of wbkgd()
10172         + Modified lib_mvwin.c:  Disable move of a pad.  Implement (costly)
10173           move of subwindows.  Fixed update behavior of movements of regular
10174           windows.
10175         + Fixed lib_pad.c:  make chtype argument of pechochar() const.
10176         + Fixed lib_window.c:  dupwin() is not(!) in every bit a really clone
10177           of the original.  Subwindows become regular windows by doing a
10178           dupwin().
10179         + Improved manpage form_fieldtype.3x
10180         > patches by Alexander V. Lukyanov:
10181         + simplify the PutChar() handling of exit_am_mode, because we already
10182           know that auto_right_margin is true.
10183         + add a check in PutChar() for ability to insert to the case of
10184           shifting character to LR corner.
10185         + in terminal initialization by _nc_screen_resume(), make sure that
10186           terminal right margin mode is known.
10187         + move logic that invokes touchline(), or does the equivalent, into
10188           _nc_scroll_window().
10189         + modify scrolling logic use of insert/delete line capability, assuming
10190           that they affect the screen contents only within the current
10191           scrolling region.
10192         + modify rain.c to demonstrate SIGWINCH handler.
10193         + remove logic from getch() that would return an ERR if the application
10194           called getch() when the cursor was at the lower-right corner of the
10195           physical screen, and the terminal does not have insert-character
10196           ability.
10197         + change view.c so that it breaks out of getch() loop if a KEY_RESIZE
10198           is read, and modify logic in getch() so this fix will yield the
10199           desired behavior, i.e., the screen is repainted automatically when
10200           the terminal window is resized.
10201
10202 970906
10203         + add configure option --enable-sigwinch
10204         + modify view.c to test KEY_RESIZE logic, with "-r" option.
10205         + modify testcurs.c to eliminate misleading display wrt cursor type
10206           by testing if the terminal supports cnorm, civis, cvvis.
10207         + several fixes for m68k/NeXT 4.0, to bring cur_term, _nc_curr_line and
10208           _nc_curr_col variables into linked programs:  move these variables,
10209           making new modules lib_cur_term and trace_buf (reported by Francisco
10210           Alberto Tomei Torres <fatomei@sandburg.unm.edu>).
10211         > patches by Alexander V. Lukyanov:
10212         + add pseudo-functionkey KEY_RESIZE which is returned by getch() when
10213           the SIGWINCH handler has been called since the last call to
10214           doupdate().
10215         + modify lib_twait.c to hide EINTR only if HIDE_EINTR is defined.
10216         + add SIGWINCH handler to ncurses library which is used if there is no
10217           application SIGWINCH handler in effect when the screen is
10218           initialized.
10219         + make linked list of all SCREEN structures.
10220         + move curses.h include before definition of SCREEN to use types in
10221           that structure.
10222         + correction to ensure that wgetstr uses only a newline to force a
10223           scroll (970831).
10224
10225 970831
10226         + add experimental configure option --enable-safe-sprintf; the normal
10227           mode now allocates a buffer as large as the screen for the
10228           lib_printw.c functions.
10229         + modify wgetch to refresh screen when reading ungetch'd characters,
10230           since the application may require this - SVr4 does this.
10231         + refine treatment of newline in wgetstr to echo only when this would
10232           force the screen to scroll.
10233
10234 970830
10235         + remove override in wgetstr() that forces keypad(), since SVr4 does
10236           not do this.
10237         + correct y-reference for erasure in wgetstr() when a wrap forces a
10238           scroll.
10239         + correct x-position in waddch() after a wrap forces a scroll.
10240         + echo newline in wgetstr(), making testscanw.c scroll properly when
10241           scanw is done.
10242         + modify vwscanw() to avoid potential buffer overflow.
10243         + rewrote lib_printw.c to eliminate fixed-buffer limits.
10244         > patches by Alexander V. Lukyanov:
10245         + correct an error in handling cooked mode in wgetch(); processing
10246           was in the wrong order.
10247         + simplified logic in wgetch() that handles backspace, etc., by using
10248           wechochar().
10249         + correct wechochar() so that it interprets the output character as
10250           in waddch().
10251         + modify pechochar() to use prefresh() rather than doupdate(), since
10252           the latter does not guarantee immediate refresh of the pad.
10253         + modify pechochar() so that if called with a non-pad WINDOW, will
10254           invoke wechochar() instead.
10255         + modify fifo indices to allow fifo to be longer than 127 bytes.
10256
10257 970823
10258         + add xterm-8bit to terminfo.src
10259         + moved logic for SP->_fifohold inside check_pending() to make it
10260           work properly when we add calls to that function.
10261         + ensure that bool functions return only TRUE or FALSE, and TRUE/FALSE
10262           are assigned to bool values (patch by H.J.Lu).
10263         > patches by Alexander V. Lukyanov:
10264         + several fixes to getch:
10265           1.  Separate cooked and raw keys in fifo
10266           2.  Fix the case of ungetch'ed KEY_MOUSE
10267           3.  wrap the code for hiding EINTR with ifdef HIDE_EINTR
10268           4.  correctly handle input errors (i.e., EINTR) without loss of raw
10269               keys
10270           5.  recognize ESC KEY_LEFT and similar
10271           6.  correctly handle the case of receiption of KEY_MOUSE from gpm
10272         + correct off-by-one indexing error in _nc_mouse_parse(), that caused
10273           single mouse events (press/release) to be ignored in favor of
10274           composed events (click).  Improves on a fix from integrating gpm
10275           support in 961229.
10276         + add another call to check_pending, before scrolling, for
10277           line-breakout optimization
10278         + improve hashmap.c by
10279           1.  fixed loop condition in grow_hunks()
10280           2.  not marking lines with offset 0
10281           3.  fixed condition of 'too far' criteria, thus one-line hunks are
10282           ignored and two lines interchanged won't pass.
10283         + rewrote/simplified _nc_scroll_optimize() by separating into two
10284           passes, forward/backward, looking for chunks moving only in the given
10285           direction.
10286         + move logic that emits sgr0 when initializing the screen to
10287           _nc_screen_init(), now invoked from newterm.
10288         + move cursor-movement cleanup from endwin() into _nc_mvcur_wrap()
10289           function and screen cleanup (i.e., color) into _nc_screen_wrap()
10290           function.
10291         + add new functions _nc_screen_init(), _nc_screen_resume() and
10292           _nc_screen_wrap().
10293         + rename _nc_mvcur_scrolln() to _nc_scrolln().
10294         + add a copy of acs_map[] to the SCREEN structure, where it can be
10295           stored/retrieved via set_term().
10296         + move variables _nc_idcok, _nc_idlok, _nc_windows into the SCREEN
10297           structure.
10298
10299 970816
10300         + implement experimental _nc_perform_scroll().
10301         + modify newterm (actually _nc_setupscreen()) to emit an sgr0 when
10302           initializing the screen, as does SVr4 (reported by Alexander V.
10303           Lukyanov).
10304         + added test_progs rule to ncurses/Makefile.
10305         + modify test/configure.in to check if initscr is already in $LIBS
10306           before looking for (n)curses library.
10307         + correct version-number in configure script for OSF1 shared-library
10308           options (patch by Tim Mooney).
10309         + add -DNDEBUG to CPPFLAGS for --enable-assertions (as Juergen
10310           originally patched) since the c++ demo files do not necessarily
10311           include ncurses_cfg.h
10312         + supply default value for --enable-assertions option in configure
10313           script (reported by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>).
10314         > patches by Alexander V. Lukyanov:
10315         + correct/simplify logic of werase(), wclrtoeol() and wclrbot().  See
10316           example firstlast.c
10317         + optimize waddch_literal() and waddch_nosync() by factoring out
10318           common subexpressions.
10319         + correct sense of NDEBUG ifdef for CHECK_POSITION macro.
10320         + corrections to render_char(), to make handling of colored blanks
10321           match SVr4 curses, as well as to correct a bug that xor'd space
10322           against the background character.
10323         + replaced hash function with a faster one (timed it)
10324         + rewrote the hashmap algorithm to be one-pass, this avoids multiple
10325           cost_effective() calls on the same lines.
10326         + modified cost_effective() so it is now slightly more precise.
10327         > patches for glibc integration (H.J.Lu):
10328         + add modules define_key, keyok, name_match, tries
10329         + add makefile rules for some of the unit tests in ncurses (mvcur,
10330           captoinfo, hardscroll, hashmap).
10331         + update Linux configure-script for wide-character definitions.
10332
10333 970809
10334         + modify _tracebits() to show the character size (e.g., CS8).
10335         + modify tparm() to emit '\200' where the generated string would have a
10336           null (reported by From:  Ian Dall <Ian.Dall@dsto.defence.gov.au> for
10337           terminal type ncr7900).
10338         + modify install process so that ldconfig is not invoked if the
10339           package is built with an install-prefix.
10340         + correct test program for chtype size (reported by Tim Mooney).
10341         + add configure option --disable-scroll-hints, using this to ifdef the
10342           logic that computes indices for _nc_scroll_optimize().
10343         + add module ncurses/softscroll.c, to perform single-stage computation
10344           of scroll indices used in _nc_scroll_optimize().  This is faster than
10345           the existing scrolling algorithm, but tends to make too-small hunks.
10346         + eliminate fixed buffer size in _nc_linedump().
10347         + minor fixes to lib_doupdate.c to add tradeoff between clr_eol (el)
10348           and clr_bol (el1), refine logic in ClrUpdate() and ClrBottom() (patch
10349           by Alexander V. Lukyanov).
10350         + add test/testaddch.c, from a pending patch by Alexander V. Lukyanov.
10351         + correct processing of "configure --enable-assertions" option (patch
10352           by Juergen Pfeifer).
10353
10354 970802
10355         + add '-s' (single-step) option too test/hashtest.c, correct an error
10356           in loop limit for '-f' (footer option), toggle scrollok() when
10357           writing footer to avoid wrap at lower-right corner.
10358         + correct behavior of clrtoeol() immediately after wrapping cursor,
10359           which was not clearing the line at the cursor position (reported by
10360           Liviu Daia <daia@stoilow.imar.ro>).
10361         + corrected mapping for ACS_LANTERN, which was 'I' rather than 'i'
10362           (reported by Klaus Weide <kweide@tezcat.com>).
10363         + many corrections to make progs/capconvert work, as well as make it
10364           reasonably portable and integrated with ncurses 4.1 (reported by Dave
10365           Furstenau <df@ravine.binary.net>).
10366
10367 970726
10368         + add flag SP->_fifohold, corresponding logic to modify the behavior of
10369           the line breakout logic so that if the application does not read
10370           input, refreshes will not be stopped, but only slowed.
10371         + generate slk_attr_off(), slk_attr_on(), slk_attr_set(), vid_attr(),
10372           ifdef'd for wide-character support, since ncurses' WA_xxx attribute
10373           masks are identical with the A_xxx masks.
10374         + modify MKlib_gen.sh to generate ifdef'd functions to support optional
10375           configuration of wide-characters.
10376         + modify tset to behave more like SVr4's tset, which does not modify
10377           the settings of intr, quit or erase unless they are given as command
10378           options (reported by Nelson H. F. Beebe <beebe@math.utah.edu>).
10379         + modify tset to look in /etc/ttys or /etc/ttytype if the configuration
10380           does not have getttynam().
10381         + extend baudrate table in tset.c to match baudrate() function.
10382         + add table entries for B230400 and B460800 to baudrate() function.
10383         + improve breakout logic by allowing it before the first line updated,
10384           which is what SVr4 curses does (patch by Alexander V. Lukyanov).
10385         + correct initialization of vcost in relative_move(), for cursor-down
10386           case (patch by Alexander V. Lukyanov).
10387         > nits gleaned from Debian distribution of 1.9.9g-3:
10388         + install symbolic link for intotocap.
10389         + reference libc directly when making shared libraries.
10390         + correct renaming of curs_scr_dmp.3x in man_db.renames.
10391         + guard tgetflag() and other termcap functions against null cur_term
10392           pointer.
10393
10394 970719
10395         + corrected initial state of software echo (error in 970405, reported
10396           by Alexander V. Lukyanov).
10397         + reviewed/added messages to configure script, so that all non-test
10398           options should be accompanied by a message.
10399         + add configure check for long filenames, using this to determine if
10400           it is safe to allow long aliases for terminal descriptions as does
10401           SVr4.
10402         + add configure options for widec (wide character), hashmap (both
10403           experimental).
10404         > patch by Alexander V. Lukyanov:
10405         + hashmap.c - improved by heuristic, so that scroll test works much
10406           better when csr is not available.
10407         + hardscroll.c - patched so that it continues to scroll other chunks
10408           after failure to scroll one.
10409         + lib_doupdate.c - _nc_mvcur_scrolln extended to handle more cases; csr
10410           is avoided as it is relative costly.  Fixed wrong coordinates in one
10411           case and wrong string in TRACE.
10412         > patch by Juergen Pfeifer:
10413         + modify C++ binding to compile on AIX 4.x with the IBM C-SET++
10414           compiler.
10415
10416 970712
10417         + remove alternate character set from kterm terminfo entry; it uses the
10418           shift-out control for a purpose incompatible with curses, i.e., font
10419           switching.
10420         + disentangle 'xterm' terminfo entry from some derived entries that
10421           should be based on xterm-r6 instead.
10422         + add cbt to xterm-xf86-xv32 terminfo entry; I added the emulation for
10423           XFree86 3.1.2F, but overlooked its use in terminfo then - T.Dickey.
10424         + correct logic in lib_mvcur.c that uses back_tab.
10425
10426 970706
10427         + correct change from 970628 to ClrUpdate() in lib_doupdate.c so that
10428           contents of curscr are saved in newscr before clearing the screen.
10429           This is needed to make repainting work with the present logic of
10430           TransformLine().
10431         + use napms() rather than sleep() in tset.c to avoid interrupting I/O.
10432
10433 970705
10434         + add limit checks to _nc_read_file_entry() to guard against overflow
10435           of buffer when reading incompatible terminfo format, e.g, from OSF/1.
10436         + correct some loop-variable errors in xmc support in lib_doupdate.c
10437         + modify ncurses 'b' test to add gaps, specified by user, to allow
10438           investigation of interaction with xmc (magic cookie) code.
10439         + correct typo in 970524 mods to xmas.c, had omitted empty parameter
10440           list from has_colors(), which gcc ignores, but SVr4 does not
10441           (reported by Larry Virden).
10442         + correct rmso capability in wy50-mc description.
10443         + add configure option "--enable-hard-tabs", renamed TABS_OK ifdef to
10444           USE_HARD_TABS.
10445         > patch by Juergen Pfeifer:
10446         + Add bindings for keyok() and define_key() to the Ada95 packages.
10447         + Improve man pages menu_post.3x and menu_format.3x
10448         + Fix the HTML pages in the Ada95/html directory to reflect the above
10449           changes.
10450
10451 970628
10452         + modify change from 970101 to ClrUpdate() in lib_doupdate.c so that
10453           pending changes to both curscr and newscr are flushed properly.
10454           This fixes a case where the first scrolling operation in nvi would
10455           cause the screen to be cleared unnecessarily and repainted before
10456           doing the indexing, i.e., by repeatedly pressing 'j' (reported by
10457           Juergen Pfeifer).
10458         + correct error in trans_string() which added embedded newlines in a
10459           terminfo description to the stored strings.
10460         + remove spurious newlines from sgr in wyse50 (and several other)
10461           terminfo descriptions.
10462         + add configure option for experimental xmc (magic cookie) code,
10463           "--enable-xmc-glitch".  When disabled (the default), attributes that
10464           would store a magic cookie are suppressed in vidputs().  The magic
10465           cookie code is far from workable at this stage; the configuration
10466           option is a stopgap.
10467         + move _nc_initscr() from lib_initscr.c to lib_newterm.c
10468         + correct path for invoking make_keys (a missing "./").
10469
10470 970621
10471         + correct sign-extension problem with "infocmp -e", which corrupted
10472           acsc values computed for linux fallback data.
10473         + correct dependency on ncurses/names.c (a missing "./").
10474         + modify configure script to use '&&' even for cd'ing to existing
10475           directories to work around broken shell interpreters.
10476         + correct a loop-limit in _nc_hash_map() (patch by Alexander V.
10477           Lukyanov).
10478
10479 970615
10480         + restore logic in _nc_scroll_optimize() which marks as touched the
10481           lines in curscr that are shifted.
10482         + add new utility 'make_keys' to compute keys.tries as a table rather
10483           than a series of function calls.
10484         + correct include-dependency for tic.h used by name_match
10485         + removed buffer-allocation for name and description from m_item_new.c,
10486           since this might result in incompatibilities with SVr4.  Also fixed
10487           the corresponding Ada95 binding module (patch by Juergen Pfeifer,
10488           report by Avery Pennarun <apenwarr@foxnet.net>)
10489         + removed the mechanism to timestamp the generated Ada95 sources.  This
10490           resulted always in generating patches for the HTML doc, even when
10491           nothing really changed (patch by Juergen Pfeifer).
10492         + improve man page mitem_new.3x (patch by Juergen Pfeifer).
10493
10494 970614
10495         + remove ech capability from rxvt description because it does not work.
10496         + add missing case logic for infocmp -I option (reported by Lorenzo M.
10497           Catucci <lorenzo@argon.roma2.infn.it>)
10498         + correct old bug in pnoutrefresh() unmasked by fix in 970531; this
10499           caused glitches in the ncurses 'p' test since the area outside the
10500           pad was not compared when setting up indices for _nc_scroll_optimize.
10501         + rewrote tracebits() to workaround misdefinition of TOSTOP on Ultrix
10502           4.4, as well as to eliminate fixed-size buffer (reported by Chris
10503           Tanner <tannerc@aecl.ca>)
10504         + correct prototype for termattrs() as per XPG4 version 2.
10505         + add placeholder prototypes for color_set(), erasewchar(),
10506           term_attrs(), wcolor_set() as per XPG4 version 2.
10507         + correct attribution for progs/progs.priv.h and lib_twait.c
10508         + improve line-breakout logic by checking based on changed lines rather
10509           than total lines (patch by Alexander V. Lukyanov).
10510         + correct loop limits for table-lookup of enumerated value in form
10511           (patch by Juergen Pfeifer).
10512         + improve threshhold computation for determining when to call ClrToEOL
10513           (patch by Alexander V. Lukyanov).
10514
10515 970531
10516         + add configure option --disable-database to force the library to
10517           use only the fallback data.
10518         + add configure option --with-fallbacks, to specify list of fallback
10519           terminal descriptions.
10520         + add a symbolic link for ncurses.h during install; too many programs
10521           still assume there's an ncurses.h
10522         + add new terminfo.src entry for xterm-xf86-v33.
10523         + restore terminfo.src entry for emu to using setf/setb, since it is
10524           not, after all, generating ANSI sequences.  Corrected missing comma
10525           that caused setf/setb entries to merge.
10526         + modify mousemask() to use keyok() to enable/disable KEY_MOUSE, so
10527           that applications can disable ncurses' mouse and supply their own
10528           handler.
10529         + add extensions keyok() and define_key().  These are designed to allow
10530           the user's application better control over the use of function keys,
10531           e.g., disabling the ncurses KEY_MOUSE.  (The define_key idea was from
10532           a mailing-list thread started by Kenneth Albanowski
10533           <kjahds@kjahds.com> Nov'1995).
10534         + restore original behavior in ncurses 'g' test, i.e., explicitly
10535           set the keypad mode rather than use the default, since it confuses
10536           people.
10537         + rewrote the newdemo banner so it's readable (reported by Hugh
10538           Daniel).
10539         + tidy up exit from hashtest (reported by Hugh Daniel).
10540         + restore check for ^Q in ncurses 'g' test broken in 970510 (reported
10541           by Hugh Daniel)
10542         + correct tput program, checking return-value of setupterm (patch by
10543           Florian La Roche).
10544         + correct logic in pnoutrefresh() and pechochar() functions (reported
10545           by Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>).  The computation
10546           of 'wide' date to eric's #283 (1.9.9), and the pechochar bug to the
10547           original implementation (1.9.6).
10548         + correct typo in vt102-w terminfo.src entry (patch by Robert Wuest
10549           <rwuest@sire.vt.com>)
10550         + move calls of _nc_background() out of various loops, as its return
10551           value will be the same for the whole window being operated on (patch
10552           by J T Conklin).
10553         + add macros getcur[xy] getbeg[xy] getpar[xy], which are defined in
10554           SVr4 headers (patch by J T Conklin <jtc@NetBSD.ORG>)
10555         + modify glibc addon-configure scripts (patch by H.J.Lu).
10556         + correct a bug in hashmap.c: the size used for clearing the hashmap
10557           table was incorrect, causing stack corruption for large values of
10558           LINES, e.g., >MAXLINES/2 (patch by Alexander V. Lukyanov).
10559         + eric's terminfo 9.13.23 & 9.13.24 changes: replaced minitel-2 entry,
10560           added MGR, ansi-nt (note: the changes described for 9.13.24 have not
10561           been applied).
10562         > several changes by Juergen Pfeifer:
10563         + correct a missing error-return in form_driver.c when wrapping of a
10564           field is not possible.
10565         + correct logic in form_driver.c for configurations that do not have
10566           memccpy() (reported by Sidik Isani <isani@cfht.hawaii.edu>)
10567         + change several c++ binding functions to inline.
10568         + modify c++ menu binding to inherit from panels, for proper
10569           initialization.
10570         + correct freeing of menu items in c++ binding.
10571         + modify c++ binding to reflect removal of const from user data pointer
10572           in forms/menus libraries.
10573
10574 970524
10575         + add description of xterm-16color.
10576         + modify name of shared-library on *BSD to end with $(REL_VERSION)
10577           rather than $(ABI_VERSION) to match actual convention on FreeBSD
10578           (cf: 960713).
10579         + add OpenBSD to shared-library case, same as NetBSD and FreeBSD
10580           (reported by Hugh Daniel <hugh@rat.toad.com>).
10581         + corrected include-dependency in menu/Makefile so that "make install"
10582           works properly w/o first doing "make".
10583         + add fallback definition for isascii, used in infocmp.
10584         + modify xmas to use color, and to exit right away when a key is
10585           pressed.
10586         + modify gdc so that the scrolled digits function as described (there
10587           was no time delay between the stages, and the digits overwrote the
10588           bounding box without tidying up).
10589         + modify lib_color.c to use setaf/setab only for the ANSI color codes
10590           0 through 7.  Using 16 colors requires setf/setb.
10591         + modify ncurses 'c' test to work with 16 colors, as well as the normal
10592           8 colors.
10593         + remove const qualifier from user data pointer in forms and menus
10594           libraries (patch by Juergen Pfeifer).
10595         + rewrote 'waddchnstr()' to avoid using the _nc_waddch_nosync()
10596           function, thereby not interpreting tabs, etc., as per spec (patch by
10597           Alexander V. Lukyanov).
10598
10599 970517
10600         + suppress check for pre-existing ncurses header if the --prefix
10601           option is specified.
10602         + add configure options "--with-system-type" and
10603           "--with-system-release" to assist in checking the generated
10604           makefiles.
10605         + add configure option "--enable-rpath" to allow installers to specify
10606           that programs linked against shared libraries will have their library
10607           path embedded, allowing installs into nonstandard locations.
10608         + add flags to OSF1 shared-library options to specify version and
10609           symbol file (patch by Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>)
10610         + add missing definition for ABI_VERSION to c++/Makefile.in (reported
10611           by Satoshi Adachi <adachi@wisdom.aa.ap.titech.ac.jp>).
10612         + modify link flags to accommodate HP-UX linker which embeds absolute
10613           pathnames in executables linked against shared libraries (reported by
10614           Jason Evans <jasone@mrc.uidaho.edu>, solved by Alan Shutko
10615           <ats@hubert.wustl.edu>).
10616         + drop unnecessary check for attribute-change in onscreen_mvcur() since
10617           mvcur() is the only caller within the library, and that check in turn
10618           is exercised only from lib_doupdate.c (patch by Alexander V.
10619           Lukyanov).
10620         + add 'blank' parameter to _nc_scroll_window() so _nc_mvcur_scrolln()
10621           can use the background of stdscr as a parameter to that function
10622           (patch by Alexander V. Lukyanov).
10623         + moved _nc_mvcur_scrolln() from lib_mvcur.c to lib_doupdate.c, to use
10624           the latter's internal functions, as well as to eliminate unnecessary
10625           cursor save/restore operations (patch by Alexander V. Lukyanov).
10626         + omit parameter of ClrUpdate(), since it is called only for newscr,
10627           further optimized/reduced by using ClearScreen() and TransformLine()
10628           to get rid of duplicate code (patch by Alexander V. Lukyanov).
10629         + modify scrolling algorithm in _nc_scroll_optimize() to reject hunks
10630           that are smaller than the distance to be moved (patch by Alexander V.
10631           Lukyanov).
10632         + correct a place where the panel library was not ifdef'd in ncurses.c
10633           (Juergen Pfeifer)
10634         + documentation fixes (Juergen Pfeifer)
10635
10636 970515  4.1 release for upload to prep.ai.mit.edu
10637         + re-tag changes since 970505 as 4.1 release.
10638
10639 970510
10640         + modify ncurses 'g' test to allow mouse input
10641         + modify default xterm description to include mouse.
10642         + modify configure script to add -Wwrite-strings if gcc warnings are
10643           enabled while configuring --enable-const (and fixed related
10644           warnings).
10645         + add toggle, status display for keypad mode to ncurses 'g' test to
10646           verify that keypad and scrollok are not inherited from parent window
10647           during a call to newwin.
10648         + correction to MKexpanded.sh to make it work when configure --srcdir
10649           is used (reported by H.J.Lu).
10650         + revise test for bool-type, ensuring that it checks if builtin.h is
10651           available before including it, adding test for sizeof(bool) equal
10652           to sizeof(short), and warning user if the size cannot be determined
10653           (reported by Alexander V. Lukyanov).
10654         + add files to support configuration of ncurses as an add-on library
10655           for GNU libc (patch by H.J.Lu <hjl@lucon.org>)
10656
10657 970506
10658         + correct buffer overrun in lib_traceatr.c
10659         + modify change to lib_vidattr.c to avoid redundant orig_pair.
10660         + turn on 'echo()' in hanoi.c, since it is initially off.
10661         + rename local 'errno' variable in etip.h to avoid conflict with global
10662           (H.J.Lu).
10663         + modify configure script to cache LD, AR, AR_OPTS (patch by H.J.Lu
10664           <hjl@lucon.org>)
10665
10666 970505  4.1 pre-release
10667         + regenerate the misc directory html dumps without the link list, which
10668           is not useful.
10669         + correct dependency in form directory makefile which caused
10670           unnecessary recompiles.
10671         + correct substitution for ABI_VERSION in test-makefile
10672         + modify install rules for shared-library targets to remove the target
10673           before installing, since some install programs do not properly handle
10674           overwrite of symbolic links.
10675         + change order of top-level targets so that 'include' immediate
10676           precedes the 'ncurses' directory, reducing the time between new
10677           headers and new libraries (requested by Larry Virden).
10678         + modify lib_vidattr.c so that colors are turned off only before
10679           modifying other attributes, turned on after others.  This makes the
10680           hanoi.c program display correctly on FreeBSD console.
10681         + modify debug code in panel library to print user-data addresses
10682           rather than the strings which they (may) point to.
10683         + add check to ensure that C++ binding and demo are not built with g++
10684           versions below 2.7, since the binding uses templates.
10685         + modify c++ binding and demo to build and run with SGI's c++ compiler.
10686           (It also compiles with the Sun SparcWorks compiler, but the demo does
10687           not link, due to a vtbl problem).
10688         + corrections to demo.cc, to fix out-of-scope variables (Juergen
10689           Pfeifer).
10690
10691 970503
10692         + correct memory leak in _nc_trace_buf().
10693         + add configure test for regexpr.h, for Unixware 1.x.
10694         + correct missing "./" prefixing names of generated files in ncurses
10695           directory.
10696         + use single-quotes in configure scripts assignments for MK_SHARED_LIB
10697           to workaround shell bug on FreeBSD 2.1.5
10698         + remove tabs from intermediate #define's for GCC_PRINTF, GCC_SCANF
10699           that caused incorrect result in ncurses_cfg.h
10700         + correct initialization in lib_trace.c, which omitted version info.
10701         + remove ech, el1 attributes from cons25w description; they appear to
10702           malfunction in FreeBSD 2.1.5
10703         + correct color attributes in terminfo.src and lib_color.c to match
10704           SVr4 behavior by interchanging codes 1,4, 3,6 in the setf/setb
10705           capabilities.
10706         + use curs_set() rather than checks via tigetstr() for test programs
10707           that hide the cursor: firework, rain, worm.
10708         + ensure that if the terminal lacks change_scroll_region, parm_index
10709           and parm_rindex are used only to scroll the whole screen (patch by
10710           Peter Wemm).
10711         + correct curs_set() logic, which did not return ERR if the requested
10712           attributes did not exist, nor did it assume an unknown initial state
10713           for the cursor (patch by Alexander V. Lukyanov).
10714         + combine IDcTransformLine and NoIDcTransformLine to new TransformLine
10715           function in lib_doupdate.c (patch by Alexander V. Lukyanov).
10716         + correct hashmap.c, which did not update index information (patch by
10717           Alexander V. Lukyanov).
10718         + fixes for C++ binding and demo (see c++/NEWS) (Juergen Pfeifer).
10719         + correct index in lib_instr.c (Juergen Pfeifer).
10720         + correct typo in 970426 patch from Tom's cleanup of lib_overlay.c
10721           (patch by Juergen Pfeifer).
10722
10723 970426
10724         + corrected cost computation in PutRange(), which was using
10725           milliseconds compared to characters by adding two new members to the
10726           SCREEN struct, _hpa_ch_cost and _cup_ch_cost.
10727         + drop ncurses/lib_unctrl.c, add ncurses/MKunctrl.awk to generate a
10728           const array of strings (suggested by Alexander V. Lukyanov).  The
10729           original suggestion in 970118 used a perl script.
10730         + rewrote ncurses 'b' test to better exercise magic-cookie (xmc), as
10731           well as noting the attributes that are not supported by a terminal.
10732         + trace the computation of cost values in lib_mvcur.c
10733         + modify _nc_visbuf() to use octal rather than hex, corrected sign
10734           extension bug in that function that caused buffer overflow.
10735         + modify trace in lib_acs.c to use _nc_visbuf().
10736         + suppress trace within _traceattr2().
10737         + correct logic of _tracechtype2(), which did not account for repeats
10738           or redefinition within an acsc string.
10739         + modify debug-library version baudrate() to use environment variable
10740           $BAUDRATE to override speed computation.  This is needed for
10741           regression testing.
10742         + correct problems shown by "weblint -pedantic".
10743         + update mailing-list information (now ncurses@bsdi.com).
10744
10745 970419
10746         + Improve form_field_validation.3x manpage to better describe the
10747           precision parameter for TYPE_NUMERIC and TYPE_INTEGER.  Provide more
10748           precise information how the range checking can be avoided.  (patch by
10749           Juergen Pfeifer, reported by Bryan Henderson)
10750         + change type of min/max value of form types TYPE_INTEGER to long to
10751           match SVr4 documentation.
10752         + set the form window to stdscr in set_form_win() so that form_win()
10753           won't return null (patch by Juergen Pfeifer, reported by Bryan
10754           Henderson <bryanh@giraffe.netgate.net>).
10755
10756 970412
10757         + corrected ifdef'ing of inline (cf: 970321) for TRACE vs C++.
10758         + corrected toggle_attr_off() macro (patch by Andries Brouwer).
10759         + modify treatment of empty token in $MANPATH to /usr/man (reported by
10760           <Andries.Brouwer@cwi.nl>)
10761         + modify traces that record functions-called so that chtype and attr_t
10762           values are expressed symbolically, to simplify reuse of generated
10763           test-scripts on SVr4 regression testing.
10764         + add new trace functions _traceattr2() and _tracechtype2()
10765
10766 970405
10767         + add configure option --enable-const, to support the use of 'const'
10768           where XSI should have, but did not, specify.  This defines
10769           NCURSES_CONST, which is an empty token otherwise, for strict
10770           compatibility.
10771         + make processing of configure options more verbose by echoing the
10772           --enable/--with values.
10773         + add configure option --enable-big-core
10774         + set initial state of software echo off as per XSI.
10775         + check for C++ builtin.h header
10776         + correct computation of absolute-path for $INSTALL that dropped "-c"
10777           parameter from the expression.
10778         + rename config.h to ncurses_cfg.h to avoid naming-conflict when
10779           ncurses is integrated into larger systems (adapted from diffs by
10780           H.J.Lu for libc).
10781         + correct inequality in lib_doupdate.c that caused a single-char to not
10782           be updated when the char on the right-margin was not blank, idcok()
10783           was true (patch by Alexander V Lukyanov (in 970124), reported
10784           by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu> in 970329).
10785         + modify 'clean' rule in include/Makefile so that files created by
10786           configure script are removed in 'distclean' rule instead.
10787
10788 970328
10789         + correct array limit in tparam_internal(), add case to interpret "%x"
10790           (patch by Andreas Schwab)
10791         + rewrote number-parsing in ncurses.c 'd' test; it did not reset the
10792           value properly when non-numeric characters were given (reported by
10793           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
10794
10795 970321
10796         + move definition of __INTERNAL_CAPS_VISIBLE before include for
10797           progs.priv.h (patch by David MacKenzie).
10798         + add configuration summary, reordered check for default include
10799           directory to better accommodate a case where installer is configuring
10800           a second copy of ncurses (reported by Klaus Weide
10801           <kweide@tezcat.com>)
10802         + moved the #define for 'inline' as an empty token from the
10803           $(CFLAGS_DEBUG) symbol into config.h, to avoid redefinition warning
10804           (reported by Ward Horner).
10805         + modify test for bool builtin type to use 'unsigned' rather than
10806           'unknown' when cross-compiling (reported by Ward Horner).
10807
10808 970315
10809         + add header dependencies so that "make install.libs" will succeed
10810           even if "make all" is not done first.
10811         + moved some macros from lib_doupdate.c to curses.priv.h to use in
10812           expanded functions with ATAC.
10813         + correct implementation of lib_instr.c; both XSI and SVr4 agree that
10814           the winnstr functions can return more characters than will fit on one
10815           line.
10816
10817 970308
10818         + modify script that generates lib_gen.c to support traces of called &
10819           return.
10820         + add new configure option "--disable-macros", for testing calls within
10821           lib_gen.c
10822         + corrected logic that screens level-checking of called/return traces.
10823
10824 970301
10825         + use new configure macro NC_SUBST to replace AC_PATH_PROG, better
10826           addressing request by Ward Horner.
10827         + check for cross-compiling before trying to invoke the autoconf
10828           AC_FUNC_SETVBUF_REVERSED macro (reported by Ward Horner)
10829         + correct/simplify loop in _nc_visbuf(), 970201 changes omitted
10830           a pointer-increment.
10831         + eliminate obsolete symbol SHARED_ABI from dist.mk (noted by
10832           Florian La Roche).
10833
10834 970215
10835         + add configure option --enable-expanded, together with code that
10836           implements an expanded form of certain complex macros, for testing
10837           with ATAC.
10838         + disable CHECK_POSITION unless --with-assertions is configured
10839           (Alexander V Lukyanov pointed out that this is redundant).
10840         + use keyname() to show traced chtype values where applicable rather
10841           than _tracechar(), which truncates the value to 8-bits.
10842         + minor fixes to TRACE_ICALLS, added T_CREATE, TRACE_CCALLS macros.
10843         + modify makefiles in progs and test directories to avoid using C
10844           preprocessor options on link commands (reported by Ward Horner)
10845         + correct ifdef/include-order for nc_alloc.h vs lib_freeall.c (reported
10846           by Ward Horner)
10847         + modify ifdef's to use configure-defined symbols consistently
10848           (reported by Ward Horner)
10849         + add/use new makefile symbols AR, AR_OPTS and LD to assist in non-UNIX
10850           ports (reported by Ward Horner <whorner@tsi-telsys.com>)
10851         + rename struct try to struct tries, to avoid name conflict with C++
10852           (reported by Gary Johnson).
10853         + modify worm.c to hide cursor while running.
10854         + add -Wcast-qual to gcc warnings, fix accordingly.
10855         + use PutChar rather than PutAttrChar in ClrToEOL to properly handle
10856           wrapping (Alexander V Lukyanov).
10857         + correct spurious echoing of input in hanoi.c from eric's #291 & #292
10858           patches (reported by Vernon C. Hoxie <vern@zebra.alphacdc.com>).
10859         + extend IRIX configuration to IRIX64
10860         + supply missing install.libs rule needed after restructuring
10861           test/Makefile.in
10862
10863 970208
10864         + modify "make mostlyclean" to leave automatically-generated source
10865           in the ncurses directory, for use in cross-compiles.
10866         + autogenerated object-dependencies for test directory
10867         + add configure option --with-rcs-ids
10868         + modify configuration scripts to generate major/minor/patch versions
10869           (suggested by Alexander V Lukyanov).
10870         + supply missing va_end's in lib_scanw.c
10871         + use stream I/O for trace-output, to eliminate fixed-size buffer
10872         + add TRACE_ICALLS definition/support to lib_trace.c
10873         + modify Ada95 binding to work with GNAT 3.09 (Juergen Pfeifer).
10874
10875 970201
10876         + add/modify traces for called/return values to simplify extraction
10877           for test scripts.
10878         + changed _nc_visbuf to quote its result, and to dynamically allocate
10879           the returned buffer.
10880         + invoke ldconfig after installing shared library
10881         + modify install so that overwrite applies to shared library -lcurses
10882           in preference to static library (reported by Zeyd M Ben-Halim 960928).
10883         + correct missing ';' in 961221 mod to overwrite optional use of $(LN_S)
10884           symbol.
10885         + fixes to allow "make install" to work without first doing a "make
10886           all" (suggested by Larry Virden).
10887
10888 970125
10889         + correct order of #ifdef for TABS_OK.
10890         + instrumented toe.c to test memory-leaks.
10891         + correct memory-deallocation in toe.c (patch by Jesse Thilo).
10892         + include <sys/types.h> in configuration test for regex.h (patch by
10893           Andreas Schwab)
10894         + make infocmp recognize -I option, for SVr4 compatibility (reported by
10895           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
10896
10897 970118
10898         + add extension 'use_default_colors()', modified test applications that
10899           use default background (firework, gdc, hanoi, knight, worm) to
10900           demonstrate.
10901         + correct some limit checks in lib_doupdate.c exposed while running
10902           worm.
10903         + use typeCalloc macro for readability.
10904         + add/use definition for CONST to accommodate testing with Solaris
10905           (SVr4) curses, which doesn't use 'const' in its prototypes.
10906         + modify ifdef's in test/hashtest.c and test/view.c to compile with
10907           Solaris curses.
10908         + modify _tracedump() to pad pad colors & attrs lines to match change
10909           in 970101 showing first/last changes.
10910         + corrected location of terminating null on dynamically allocated forms
10911           fields (patch by Per Foreby).
10912
10913 970111
10914         + added headers to make view.c compile on SCO with the resizeterm()
10915           code (i.e., struct winsize) - though this compiles, I don't have a
10916           suitable test configuration since SIGWINCH doesn't pass my network to
10917           that machine - T.Dickey.
10918         + update test/configure.in to supply some default substitutions.
10919         + modify configure script to add -lncurses after -lgpm to fix problem
10920           linking against static libraries.
10921         + add a missing noraw() to test/ncurses.c (places noted by Jeremy
10922           Buhler)
10923         + add a missing wclear() to test/testcurs.c (patch by Jeremy Buhler
10924           <jbuhler@cs.washington.edu>)
10925         + modify headers to accommodate compilers that don't allow duplicate
10926           "#define" lines for NCURSES_VERSION (reported by Larry W. Virden
10927           <lvirden@cas.org>)
10928         + fix formatting glitch in curs_getch.3x (patch by Jesse Thilo).
10929         + modify lib_doupdate to make el, el1 and ed optimization use the
10930           can_clear_with macro, and change EmitRange to allow leaving cursor at
10931           the middle of interval, rather than always at the end (patch by
10932           Alexander V Lukyanov).  This was originally 960929, resync 970106.
10933
10934 970104
10935         + workaround defect in autoconf 2.12 (which terminates configuration
10936           if no C++ compiler is found) by adding an option --without-cxx.
10937         + modify several man-pages to use tbl, where .nf/.fi was used (reported
10938           by Jesse Thilo).
10939         + correct font-codes in some man-pages (patch by Jesse Thilo
10940           <Jesse.Thilo@pobox.com>)
10941         + use configure script's knowledge of existence of g++ library for the
10942           c++ Makefile (reported by Paul Jackson).
10943         + correct misleading description of --datadir configuration option
10944           (reported by Paul Jackson <pj@sam.engr.sgi.com>)
10945
10946 970101
10947         + several corrections to _nc_mvcur_scrolln(), prompted by a bug report
10948           from Peter Wemm:
10949         > the logic for non_dest_scroll_region was interchanged between the
10950           forward & reverse scrolling cases.
10951         > multiple returns from the function allowed certain conditions to do
10952           part of an operation before discovering that it couldn't be
10953           completed, returning an error without restoring the cursor.
10954         > some returns were ERR, where the function had completed the
10955           operation, because the insert/delete line logic was improperly
10956           tested (this was probably the case Peter saw).
10957         > contrary to comments, some scrolling cases were tested after the
10958           insert/delete line method.
10959         + modify _tracedump() to show first/last changes.
10960         + modify param of ClrUpdate() in lib_doupdate.c to 'newscr', fixes
10961           refresh problem (reported by Peter Wemm) that caused nvi to not show
10962           result of ":r !ls" until a ^L was typed.
10963
10964 961229  (internal alpha)
10965         + correct some of the writable-strings warnings (reported by Gary
10966           Johnson <gjohnson@season.com>).  Note that most of the remaining ones
10967           are part of the XSI specification, and can't be "fixed".
10968         + improve include-dependencies in form, menu, panel directories.
10969         + correct logic of delay_output(), which would return early if
10970           there is data on stdin.
10971         + modify interface & logic of _nc_timed_wait() to support 2 file
10972           descriptors, needed for GPM.
10973         + integrate patch by Andrew Kuchling <amk@magnet.com> for GPM (mouse)
10974           support, correcting logic in wgetch() and _nc_mouse_parse() which
10975           prevented patch from working properly -TD
10976         + improve performance of panel algorithm (Juergen Pfeifer 961203).
10977         + strip RCS id's from generated .html files in Ada95 subtree.
10978         + resync with generated .html files (Juergen Pfeifer 961223).
10979         + terminfo.src 10.1.0 (ESR).
10980
10981 961224  4.0 release
10982         + release as 4.0 to accommodate Linux ld.so.1.8.5
10983         + correct syntax/spelling, regenerated .doc files from .html using
10984           lynx 2.5
10985         + refined forms/menus makefiles (Juergen Pfeifer 961223).
10986
10987 961221  - snapshot
10988         + remove logic in read_entry.c that attempts to refine errno by using
10989           'access()' for the directory (from patch by Florian La Roche).
10990         + correct configure test/substitution that inhibits generating
10991           include-path to /usr/include if gcc is used (reported by Florian La
10992           Roche).
10993         + modify setupterm() to allocate new TERMINAL for each call, just as
10994           solaris' curses does (Alexander V Lukyanov 960829).
10995         + corrected memory leaks in read_entry.c
10996         + add configure options --with-dbmalloc, --with-dmalloc, and
10997           --disable-leaks, tested by instrumenting infocmp, ncurses programs.
10998         + move #include's for stdlib.h and string.h to *.priv.h to accommodate
10999           use of dbmalloc.
11000         + modify use of $(LN_S) to follow recommendation in autoconf 2.12,
11001           i.e., set current directory before linking.
11002         + split-out panel.priv.h, improve dependencies for forms, menus
11003           (Juergen Pfeifer 961204).
11004         + modify _nc_freewin() to reset globals curscr/newscr/stdscr when
11005           freeing the corresponding WINDOW (found using Purify).
11006         + modify delwin() to return ERR if the window to be deleted has
11007           subwindows, needed as a side-effect of resizeterm() (found using
11008           Purify).  Tested and found that SVr4 curses behaves this way.
11009         + implement logic for _nc_freeall(), bringing stub up to date.
11010
11011 961215
11012         + modify wbkgd() so that it doesn't set nulls in the rendered text,
11013           even if its argument doesn't specify a character (fixes test case by
11014           Juergen Pfeifer for bug-report).
11015         + set window-attributes in wbkgd(), to simplify comparison against
11016           Solaris curses, which does this.
11017
11018 961214  - snapshot
11019         + replace most constants in ncurses 'o' test by expressions, making it
11020           work with wider range of screen sizes.
11021         + add options to ncurses.c to specify 'e' test softkey format, and the
11022           number of header/footer lines to rip-off.
11023         + add ^R (repaint after resize), ^L (refresh) commands to ncurses 'p'
11024           test.
11025         + add shell-out (!) command to ncurses 'p' test to allow test of
11026           resize between endwin/refresh.
11027         + correct line-wrap case in mvcur() by emitting carriage return,
11028           overlooked in 960928, but needed due to SVr4 compatibility changes to
11029           terminal modes in 960907.
11030         + correct logic in wresize that causes new lines to be allocated,
11031           broken for the special case of increasing rows only in 960907's fix
11032           for subwindows.
11033         + modify configure script to generate $(LDFLAGS) with -L and -l options
11034           in preference to explicit library filenames.  (NOTE: this may
11035           require further amending, since I vaguely recall a dynamic loader
11036           that did not work properly without the full names, but it should be
11037           handled as an exception to the rule, since some linkers do bulk
11038           inclusion of libraries when given the full name - T.Dickey).
11039         + modify configure script to allow user-supplied $CFLAGS to set the
11040           debug-option in all libraries (requested by lots of people) -TD
11041         + use return consistently from main(), rather than exit (reported by
11042           Florian La Roche).
11043         + add --enable-getcap-cache option to configure, normally disabled
11044           (requested by Florian La Roche).
11045         + make configure test for gettimeofday() and possibly -lbsd more
11046           efficient (requested by Florian La Roche <florian@knorke.saar.de>)
11047         + minor adjustments to Ada95 binding (patches by Juergen Pfeifer)
11048         + correct attributes after emitting orig_pair in lib_vidattr.c (patch
11049           by Alexander V Lukyanov).
11050
11051 961208
11052         + corrected README wrt Ada95 (Juergen Pfeifer)
11053
11054 961207  - snapshot
11055         + integrate resizeterm() into doupdate(), so that if screen size
11056           changes between endwin/refresh, ncurses will resize windows to fit
11057           (this needs additional testing with pads and softkeys).
11058         + add, for memory-leak testing, _nc_freeall() entrypoint to free all
11059           data used in ncurses library.
11060         + initialize _nc_idcok, _nc_idlok statically to resolve discrepancy
11061           between initscr() and newwin() initialization (reported by
11062           Alexander V Lukyanov).
11063         + test built VERSION=4.0, SHARED_ABI=4 with Linux ld.so.1.8.5
11064           (set beta versions to those values -- NOTE that subsequent pre-4.0
11065           beta may not be interchangeable).
11066         + modify configure script to work with autoconf 2.12
11067
11068 961130  1.9.9g release
11069         + add copyright notices to configuration scripts (written by Thomas
11070           Dickey).
11071
11072 961127
11073         > patch, mostly for panel (Juergen Pfeifer):
11074         + cosmetic improvement for a few routines in the ncurses core library
11075           to avoid warning messages.
11076         + the panel overlap detection was broken
11077         + the panel_window() function was not fool-proof.
11078         + Some inlining...
11079         + Cosmetic changes (also to avoid warning messages when compiling with
11080           -DTRACE).
11081
11082 961126
11083         > patch by Juergen Pfeifer:
11084         + eliminates warning messages for the compile of libform.
11085         + inserts Per Foreby's new field type TYPE_IPV4 into libform.
11086         + Updates man page and the Ada95 binding to reflect this.
11087         + Improves inlining in libmenu and libform.
11088
11089 961120
11090         + improve the use of the "const" qualifier in the
11091           panel library (Juergen Pfeifer)
11092         + change set_panel_userptr() and panel_userptr() to use void*
11093           (Juergen Pfeifer)
11094
11095 961119
11096         + change ABI to 3.4
11097         + package with 961119 version of Ada95 binding (fixes for gnat-3.07).
11098           (Juergen Pfeifer)
11099         + correct initialization of the stdscr pseudo panel in panel library
11100           (Juergen Pfeifer)
11101         + use MODULE_ID (rcs keywords) in forms and menus libraries (Juergen
11102           Pfeifer).
11103         > patch #324 (ESR):
11104         + typo in curs_termcap man page (reported by Hendrik Reichel
11105           <106065.2344@compuserve.com>)
11106         + change default xterm entry to xterm-r6.
11107         + add entry for color_xterm
11108
11109 961116  - snapshot
11110         + lint found several functions that had only #define implementations
11111           (e.g., attr_off), modified curses.h.in to generate them as per XSI
11112           Curses requirement that every macro be available as a function.
11113         + add check in infocmp.c to guard against string compare of
11114           CANCELLED_STRING values.
11115         + modify firework.c, rain.c to hide cursor while running.
11116         + correct missing va_end in lib_tparm.c
11117         + modify hanoi.c to work on non-color terminals, and to use timing
11118           delays when in autoplay mode.
11119         + correct 'echochar()' to refresh immediately (reported by Adrian
11120           Garside <94ajg2@eng.cam.ac.uk>)
11121         > patch #322 (ESR):
11122         + reorganize terminfo.src entries for xterm.
11123
11124 961109  - snapshot
11125         + corrected error in line-breakout logic (lib_doupdate.c)
11126         + modified newdemo to use wgetch(win) rather than getch() to eliminate
11127           a spurious clear-screen.
11128         + corrected ifdef's for 'poll()' configuration.
11129         + added modules to ncurses, form, menu for Ada95 binding (Juergen
11130           Pfeifer).
11131         + modify set_field_buffer() to allow assignment of string longer than
11132           the initial buffer length, and to return the complete string rather
11133           than only the initial size (Juergen Pfeifer and Per Foreby
11134           <perf@efd.lth.se>).
11135
11136 961102  - snapshot
11137         + configure for 'poll()' in preference to 'select()', since older
11138           systems are more likely to have a broken 'select()'.
11139         + modified render_char() to avoid OR'ing colors.
11140         + minor fixes to testcurs.c, newdemo.c test programs: ifdef'd out the
11141           resize test, use wbkgd and corrected box() parameters.
11142         + make flushinp() test work in ncurses.c by using napms() instead of
11143           sleep().
11144         + undo ESR's changes to xterm-x11r6 (it no longer matched the X11R6.1
11145           distribution, as stated)
11146         + terminfo 9.13.18 resync (ESR)
11147         + check for getenv("HOME") returning null (ESR).
11148         + change buffer used to decode xterm-mouse commands to unsigned to
11149           handle displays wider than 128 chars (Juergen Pfeifer).
11150         + correct typo curs_outopts.3x (Juergen Pfeifer).
11151         + correct limit-checking in wenclose() (Juergen Pfeifer).
11152         + correction to Peter Wemm's newwin change (Thomas Fehr
11153           <fehr@suse.de>).
11154         + corrections to logic that combines colors and attributes; they must
11155           not be OR'd (Juergen Pfeifer, extending from report/patch by Rick
11156           Marshall).
11157
11158 961026  - snapshot
11159         + reset flags in 'getwin()' that might cause refresh to attempt to
11160           manipulate the non-existent parent of a window that is read from a
11161           file (lib_screen.c).
11162         + restructure _nc_timed_wait() to log more information, and to try to
11163           recover from badly-behaved 'select()' calls (still testing this).
11164         + move define for GOOD_SELECT into configure script.
11165         + corrected extra '\' character inserted before ',' in comp_scan.c
11166         + corrected expansion of %-format characters in dump_entry.c; some were
11167           rendered as octal constants.
11168         + modify dump_entry.c to make terminfo output more readable and like
11169           SVr4, by using "\s" for spaces (leading/trailing only), "\," for
11170           comma, "\^" and "\:" as well.
11171         + corrected some memory leaks in ncurses.c, and a minor logic error
11172           in the top-level command-parser.
11173         + correction for label format 4 (PC style with info line), a
11174           slk_clear(), slk_restore() sequence didn't redraw the info line
11175           (Juergen Pfeifer).
11176         + modified the slk window (if simulated) to inherit the background and
11177           default character attributes from stdscr (Juergen Pfeifer).
11178         + corrected limit-check in set_top_row (Juergen Pfeifer).
11179
11180 961019  - snapshot
11181         + correct loop-limit in wnoutrefresh(), bug exposed during pipe-testing
11182           had '.lastchar' entry one beyond '._maxx'.
11183         + modify ncurses test-program to work with data piped to it.
11184         + corrected pathname computation in run_tic.sh, removing extra "../"
11185           (reported by Tim Mooney).
11186         + modified configure script to use previous install's location for
11187           curses.h
11188         + added NetBSD and FreeBSD to platforms that use --prefix=/usr as
11189           a default.
11190
11191 961013
11192         + revised xterm terminfo descriptions to reflect the several versions
11193           that are available.
11194         + corrected a pointer reference in dump_entry.c that didn't test if
11195           the pointer was -1.
11196
11197 961005  - snapshot
11198         + correct _nc_mvcur_scrolln for terminals w/o scrolling region.
11199         + add -x option to hashtest to control whether it allows writes to the
11200           lower-right corner.
11201         + ifdef'd (NCURSES_TEST) the logic for _nc_optimize_enable to make it
11202           simpler to construct tests (for double-check of _nc_hash_map tests).
11203         + correct ifdef's for c++ in curses.h
11204         + change default xterm type to xterm-x11r6.
11205         + correct quoting in configure that made man-pages installed with
11206           $datadir instead of actual terminfo path.
11207         + correct whitespace in include/Caps, which caused kf11, clr_eol and
11208           clr_end to be omitted from terminfo.5
11209         + fix memory leaks in delscreen() (adapted from Alexander V Lukyanov).
11210         + improve appearance of marker in multi-selection menu (Juergen
11211           Pfeifer)
11212         + fix behavior for forms with all fields inactive (Juergen Pfeifer)
11213         + document 'field_index()' (Juergen Pfeifer)
11214         > patch #321 (ESR):
11215         + add some more XENIX keycap translations to include/Caps.
11216         + modify newwin to set initial state of each line to 'touched'
11217           (from patch by Peter Wemm <peter@spinner.dialix.com>)
11218         + in SET_TTY, replace TCSANOW with TCSADRAIN (Alexander V Lukyanov).
11219
11220 960928  - snapshot
11221         + ifdef'd out _nc_hash_map (still slower)
11222         + add graphic characters to vt52 description.
11223         + use PutAttrChar in ClrToEOL to ensure proper background, position.
11224         + simplify/correct logic in 'mvcur()' that does wrapping; it was
11225           updating the position w/o actually moving the cursor, which broke
11226           relative moves.
11227         + ensure that 'doupdate()' sets the .oldindex values back to a sane
11228           state; this was causing a spurious refresh in ncurses 'r'.
11229         + add logic to configure (from vile) to guard against builders who
11230           don't remove config.cache & config.status when doing new builds -TD
11231         + corrected logic for 'repeat_char' in EmitRange (cf: eric #317), which
11232           did not follow the 2-parameter scheme specified in XSI.
11233         + corrected logic of wrefresh, wnoutrefresh broken in #319, making
11234           clearok work properly (report by Michael Elkins).
11235         + corrected problem with endwin introduced by #314 (removing the
11236           scrolling-region reset) that broke ncurses.c tests.
11237         + corrected order of args in AC_CHECK_LIB (from report by Ami Fischman
11238           <fischman@math.ucla.edu>).
11239         + corrected formatting of terminfo.5 tables (Juergen Ehling)
11240         > patch 320 (ESR):
11241         + change ABI to 3.3
11242         + emit a carriage-return in 'endwin()' to workaround a kernel bug in
11243           BSDI.  (requested by Mike Karels <karels@redrock.bsdi.com>)
11244         + reverse the default o configure --enable-termcap (consensus).
11245         > patch 319 (ESR):
11246         + modified logic for clearok and related functions (from report by
11247           Michael Elkins) - untested
11248         > patch 318 (ESR):
11249         + correction to #317.
11250         > patch 317 (ESR):
11251         + re-add _nc_hash_map
11252         + modify EmitRange to maintain position as per original design
11253           (patch by A. Lukyanov).
11254         + modify test/ncurses.c and tputs, etc., to allow trace counting
11255           output characters.
11256         + add hashtest.c program to time the hashmap optimization.
11257         > patch 316 (ESR):
11258         + add logic to deal with magic-cookie (how was this tested?)
11259           (lib_doupdate.c).
11260         + add ncurses.c driver for magic-cookie, some fixes to ncurses.c
11261         > patch 315 (ESR):
11262         + merge changes to lib_doupdate.c to use ech and rep - untested
11263           (patch by Alexander V Lukyanov).
11264         + modified handling of interrupted system calls - untested
11265           (lib_getch.c, lib_twait.c).
11266         + new function _nc_mvcur_resume()
11267         + fix return value for 'overlay()', 'overwrite()'
11268
11269 960914  - snapshot
11270         + implement subwindow-logic in wresize, minor fixes to ncurses 'g'
11271           test.
11272         + corrected bracketing of fallback.c (reported/suggested fix by Juergen
11273           Ehling <eh@eclipse.aball.de>).
11274         + update xterm-color to reflect XFree86 3.1.3G release.
11275         + correct broken dtterm description from #314 patch (e.g., spurious
11276           newline.  The 'pairs' change might work, but no one's tested it
11277           either ;-)
11278         + clarify the documentation for the builtin form fieldtypes (Juergen
11279           Pfeifer)
11280         > patch 314 (ESR):
11281         + reset scroll region on startup rather than at wrapup time
11282           (enhancement suggested by Alexander V Lukyanov).
11283         + make storage of palette tables and their size counts per-screen for
11284           multi-terminal applications (suggested by Alexander V Lukyanov).
11285         + Improved error reporting for infotocap translation errors.
11286         + Update terminfo.src to 9.13.14.
11287
11288 960907  - snapshot
11289         + rewrote wgetstr to make it erase control chars and also fix bogus use
11290           of _nc_outstr which caused the display to not wrap properly (display
11291           problem reported by John M. Flinchbaugh <glynis@netrax.net>)
11292         + modify ncurses 'f' test to accommodate terminal responses to C1 codes
11293           (and split up this screen to accommodate non-ANSI terminals).
11294         + test enter_insert_mode and exit_insert_mode in has_ic().
11295         + removed bogus logic in mvcur that assumes nl/nonl set output modes
11296           (XSI says they are input modes; SVr4 implements this).
11297         + added macros SET_TTY, GET_TTY to term.h
11298         + correct getstr() logic that altered terminal modes w/o restoring.
11299         + disable ICRNL, etc., during initialization to match SVr4, removing
11300           the corresponding logic from raw, cbreak, etc.
11301         + disable ONLCR during initialization, to match SVr4 (this is needed
11302           for cursor optimization when the cursor-down is a newline).
11303         + replaced ESR's imitation of wresize with my original (his didn't
11304           work).
11305
11306 960831  - snapshot
11307         + memory leaks (Alexander V. Lukyanov).
11308         + modified pnoutrefresh() to be more tolerant of too-large screen
11309           size (reported by Michael Elkins).
11310         + correct handling of terminfo files with no strings (Philippe De
11311           Muyter)
11312         + correct "tic -s" to take into account -I, -C options.
11313         + modify ncurses 'f' test to not print codes 80 through 9F, since they
11314           are considered control codes by ANSI terminals.
11315
11316 960824  - snapshot
11317         + correct speed variable-type in 'tgetent()' (reported by Peter Wemm)
11318         + make "--enable-getcap" configuration-option work (reported by
11319           Peter Wemm <peter@spinner.DIALix.COM>)
11320
11321 960820
11322         + correct err in 960817 that changed return-value of tigetflag()
11323           (reported by Alexander V. Lukyanov).
11324         + modify infocmp to use library default search-path for terminfo
11325           directory (Alexander V. Lukyanov).
11326
11327 960817  - snapshot
11328         + corrected an err in mvcur that broke resizing-behavior.
11329         + correct fall-thru behavior of _nc_read_entry(), which was not finding
11330           descriptions that existed in directories past the first one searched
11331           (reported by Alexander V. Lukyanov)
11332         + corrected typo in dtterm description.
11333         > patch 313 (ESR):
11334         + add dtterm description
11335         + clarify ncurses 'i' test (drop mvwscanw subtest)
11336
11337 960810  - snapshot
11338         + correct nl()/nonl() to work as per SVr4 & XSI.
11339         + minor fixes to ncurses.c (use 'noraw()', mvscanw return-code)
11340         + refine configure-test for "-g" option (Tim Mooney).
11341         + correct interaction between O_BLANK and NEW_LINE request in form
11342           library (Juergen Pfeifer)
11343
11344 960804
11345         + revised fix to tparm; previous fix reversed parameter order.
11346         > patch 312 (ESR):
11347           correct terminfo.src corrupted by #310
11348         > patch 311 (ESR):
11349         + fix idlok() and idcok() and the default of the idlok switch (report
11350           by Ville Sulko).
11351
11352 960803  - snapshot
11353         + corrected tparm to handle capability strings without explicit pop
11354           (reported by William P Setzer)
11355         + add fallback def for GCC_NORETURN, GCC_UNUSED for termcap users
11356           (reported by Tim Mooney).
11357         > patch 310 (ESR):
11358         + documentation and prototyping errors for has_color, immedok and idcok
11359           (reported by William P Setzer <wsetzer@pams.ncsu.edu>)
11360         + updated qnx terminfo entry (patch by Michael Hunter)
11361
11362 960730
11363         + eliminate quoted includes in ncurses subdirectory, ensure config.h
11364           is included first.
11365         + newterm initializes terminal settings the same as initscr (reported
11366           by Tim Mooney).
11367
11368 960727  - snapshot
11369         + call cbreak() in initscr(), as per XSI & SVr4.
11370         + turn off hardware echo in initscr() as per XSI & SVr4
11371         > patch 309 (ESR):
11372         + terminfo changes (9.3.9), from BRL
11373         + add more checks to terminfo parser.
11374         + add more symbols to infocmp.
11375
11376 960720  - snapshot
11377         + save previous-attribute in lib_vidattr.c if SP is null (reported by
11378           Juergen Fluk <louis@dachau.marco.de>)
11379         + corrected calls on _nc_render so that background character is set
11380           as per XSI.
11381         + corrected wbkgdset macro (XSI allows background character to be
11382           null), and tests that use it.
11383         + more corrections to terminfo (xterm & rxvt)
11384         + undid change to mcprint prototype (cannot use size_t in curses.h
11385           because not all systems declare it in the headers that we can safely
11386           include therein).
11387         + move the ifdefs for errno into curses.priv.h
11388         > patch 308 (ESR):
11389         + terminfo changes (9.3.8)
11390         + modified logic of error-reporting in terminfo parser
11391         + fix option-processing bug in toe.
11392
11393 960713  - snapshot
11394         + always check for <sys/bsdtypes.h> since ISC needs it to declare
11395           fd_set (Juergen Pfeifer)
11396         + install shared-libraries on NetBSD/FreeBSD with ABI-version (reported
11397           by Juergen Pfeifer, Mike Long)
11398         + add LOCAL_LDFLAGS2 symbol (Juergen Pfeifer)
11399         + corrected prototype for delay_output() -- bump ABI to 3.2
11400         + patch 307 (ESR):
11401         + enable more translations of nonstandard caps, and document them.
11402         + misc/terminfo.src update to 9.13.8
11403         + patch 306 (ESR):
11404         + moved logic that filters out rmul and rmso from setupterm to newterm
11405           where it is less likely to interfere with termcap applications.
11406         + cosmetic fixes to test/ncurses.c
11407         + modify open() call in ncurses/read_entry.c to use O_RDONLY symbol
11408           rather than constant (report by mib).
11409         + misc/terminfo.src sgr0 and acsc changes (report by Philippe De
11410           Muyter).
11411         + modify ncurses/comp_parse.c so that entries containing a "+" can
11412           have missing rmcup vs smcup.
11413
11414 960707
11415         + rollback ESR's #305 change to terminfo.src (it breaks existing
11416           applications, e.g., 'less 290').
11417         + correct path of edit_man.sh, and fix typo that made all man-pages
11418           preformatted.
11419         + restore man/menu_requestname.3x omitted in Zeyd's resync (oops).
11420         + auto-configure the GCC_PRINTFLIKE/GCC_SCANFLIKE macros (reported by
11421           Philippe De Muyter).
11422
11423 960706  - snapshot
11424         + make lib_vidattr.c more readable using macros.
11425         + filter out rmul, rmso that conflict with sgr0 when reading terminal
11426           descriptions.
11427         + work around autoconf bug, force $INSTALL to absolute path
11428           (reported by Zeyd).
11429         + modify man-page install for BSDI to install preformatted .0 files
11430           (reported by David MacKenzie).
11431         + add/use gcc __attribute__ for printf and scanf in curses.h
11432         + added SGR attributes test-case to ncurses
11433         + revised ncurses 't' logic to show trace-disable effect in the menu.
11434         + use getopt in ncurses program to process -s and -t options.
11435         + make ncurses 'p' legend toggle with '?'
11436         + disable scrollok during the ncurses 'p' test; if it is enabled the
11437           stdscr will scroll when putting the box-corners in the lower-right
11438           of the screen.
11439         > patch 305 (ESR):
11440         + added sanity-checking of various paired string attributes.
11441         + misc/terminfo.src update to 9.13.7 (report by A. Lukyanov).
11442         + modify man/Makefile.in to make terminfo.5 during normal build.
11443         > patch 304 (ESR):
11444         + corrected allocation-length for $HOME/.terminfo path.
11445
11446 960629  - snapshot
11447         + check return code of _nc_mvcur_scrolln() in _nc_scroll_optimize() for
11448           terminals with no scrolling-support (reported by Nikolay Shadrin
11449           <queen@qh.mirea.ac.ru>)
11450         + added ^S scrollok-toggle to ncurses 'g' test.
11451         + added ^T trace-toggle to ncurses tests.
11452         + modified ncurses test program to use ^Q or ESC consistently for
11453           terminating tests (rather than ^D), and to use control keys rather
11454           than function keys in 'g' test.
11455         + corrected misplaced wclrtoeol calls in addch to accommodate wrapping
11456           (reported by Philippe De Muyter).
11457         + modify lib_doupdate.c to use effective costs to tradeoff between
11458           delete-character/insert-character vs normal updating (reported by
11459           David MacKenzie).
11460         + compute effective costs for screen update operations (e.g., clr_eos,
11461           delete_character).
11462         + corrected error in knight.c exposed by wrap fixes in 960622; the
11463           msgwin needed scrollok set.
11464         + corrected last change to IDcTransformLine logic to avoid conflict
11465           between PutRange and InsStr
11466         + modified run_tic.sh to not use /usr/tmp (reported by David
11467           MacKenzie), and further revised it and aclocal.m4 to use $TMPDIR if
11468           set.
11469         + corrected off-by-one in RoomFor call in read_entry.c
11470
11471 960622  - snapshot
11472         + modified logic that wraps cursor in addch to follow the XSI spec,
11473           (implemented in SVr4) which states that the cursor position is
11474           updated when wrapping.  Renamed _NEED_WRAP to _WRAPPED to reflect the
11475           actual semantics.
11476         + added -s option to tic, to provide better diagnostics in run_tic.sh
11477         + improved error-recovery for tabset install.
11478         + change ABI to 3.1 (dropped tparam, corrected getbkgd(), added
11479           _yoffset to WINDOW).
11480         + modified initialization of SP->_ofp so that init_acs() is called with
11481           the "right" file pointer (reported by Rick Marshall <rjm@nlc.net.au>
11482         + documentation fixes (Juergen Pfeifer).
11483         + corrected, using new SCREEN and WINDOW members, the behavior of
11484           ncurses if one uses ripoffline() to remove a line from the top of the
11485           screen (Juergen Pfeifer).
11486         + modified autoconf scripts to prepare for Ada95 (GNAT) binding to
11487           ncurses (Juergen Pfeifer).
11488         + incorrect buffer-size in _nc_read_entry, reported by ESR.
11489
11490 960617
11491         + corrected two logic errors in read_entry.c, write_entry.c (called by
11492           tic, the write/read of terminfo entries used inconsistent rules for
11493           locating the entries; the $TERMINFO_DIRS code would find only the
11494           first entry in a list).
11495         + refined pathname computation in run_tic.sh and shlib.
11496         + corrected initialization of $IP in misc/run_tic.sh
11497
11498 960615  - snapshot
11499         + ifdef'd out _nc_hash_map() call because it does not improve speed.
11500         + display version of gcc if configure script identifies it.
11501         + modify configure script to use /usr as Linux's default prefix.
11502         + modify run_tic.sh to use shlib script, fixes some problems installing
11503           with a shared-library configuration.
11504         + adjusted configure script so that it doesn't run tests with the
11505           warnings turned on, which makes config.log hard to read.
11506         + added 'lint' rule to top-level Makefile.
11507         + added configure option '--with-install-prefix' for use by system
11508           builders to install into staging locations (requested by
11509           Charles Levert <charles@comm.polymtl.ca>).
11510         + corrected autoconfigure for Debian man program; it's not installed
11511           as "man_db".
11512         + set noecho in 'worm'; it was ifdef'd for debug only
11513         + updated test/configure.in for timing-display in ncurses 'p' test
11514         + corrected misspelled 'getbkgd()'.
11515         + corrected wbkgdset to work like observed syvr4 (sets A_CHARTEXT part
11516           to blank if no character given, copies attributes to window's
11517           attributes).
11518         + modified lib_doupdate.c to use lower-level SP's current_attr state
11519           instead of curscr's state, since it is redundant.
11520         + correction to IDcTransformLine logic which controls where InsStr is
11521           invoked (refined by Alexander V Lukyanov).
11522         > patch 303 (ESR):
11523         + conditionally include Chris Torek's hash function _nc_hash_map().
11524         + better fix for nvi refresh-bug (Rick Marshall)
11525         + fix for bug in handling of interrupted keystroke waits,
11526           (Werner Fleck).
11527         + misc/ncurses-intro.html syntax fix (Kajiyama Tamito).
11528
11529 960601  - snapshot
11530         + auto-configure man-page compression-format and renames for Debian.
11531         + corrected several typos in curses.h.in (i.e., the mvXXXX macros).
11532         + re-order curses.priv.h for lint.
11533         + added rules for lintlib, lint
11534         + corrected ifdef for BROKEN_LINKER in MKnames.awk.in
11535         + corrected missing INSTALL_DATA in misc/Makefile.in
11536         + flush output when changing cursor-visibility (Rick Marshall)
11537         + fix a minor bug in the _nc_ripoff() routine and improve error
11538           checking when creating the label window (Juergen Pfeifer).
11539         + enhancement to the control over the new PC-style soft key format.
11540           allow caller now to select whether or not one wants to have
11541           the index-line; see curs_slk.3x for documentation (Juergen Pfeifer).
11542         + typos, don't use inline with "-g" (Philippe De Muyter)
11543         + fixes for menus & wattr-, slk-functions (Juergen Pfeifer)
11544
11545 960526  - snapshot
11546         + removed --with-ticdir option altogether, maintain compatibility with
11547           existing applications via symbolic link in run_tic.sh
11548         + patch for termio.h, signal (Philippe De Muyter)
11549         + auto-configure gcc warning options rather than infer from version.
11550         + auto-configure __attribute__ for different gcc versions.
11551         + corrected special use of clearok() in hardscroll.c by resetting flag
11552           in wrefresh().
11553         + include stdlib.h before defs for EXIT_SUCCESS, for OSF/1.
11554         + include sys/types.h in case stdlib.h does not declare size_t.
11555         + fixes for makefile (Tim Mooney)
11556         + fixes for menus & forms (Juergen Pfeifer)
11557         > patch 302 (ESR):
11558         + improve hash function (suggested by Alexander V Lukyanov).
11559         + 9.13.4 update for terminfo.src
11560
11561 960518  - snapshot
11562         + revised ncurses.c panner test, let pad abut all 4 sides of screen.
11563         + refined case in lib_doupdate.c for ClrToEOL().
11564         + corrected prior change for PutRange (Alexander V Lukyanov
11565           <lav@yars.free.net>).
11566         + autoconf mods (Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>).
11567         + locale fix for forms (Philippe De Muyter <phdemuyt@ulb.ac.be>)
11568         + renamed "--with-datadir" option to "--with-ticdir" to avoid
11569           confusion, and made this check for the /usr/lib/terminfo pre-existing
11570           directory.
11571         > patches 299-301 (ESR):
11572         + html fixes (Phillippe de Muyter).
11573         + fix typo in ncurses-intro.html (report by Fabrizio Polacco).
11574         + added hashmap.c
11575         + mods to tracing, especially for ACS chars.
11576         + corrected off-by-one in IDCtransform.
11577         + corrected intermittent mouse bug by using return-value from read().
11578         + mods to parse_entry.c, for smarter defaults.
11579
11580 960512
11581         + use getopt in 'tic'; added -L option and modified -e option to allow
11582           list from a file.
11583
11584 960511
11585         + don't use fixed buffer-size in tparm().
11586         + modified tic to create terminfo directory if it doesn't exist.
11587         + added -T options to tic and infocmp (for testing/analysis)
11588         + refined the length criteria for termcap and terminfo
11589         + optimize lib_doupdate with memcpy, PutRange
11590         > patches 297, 298 (ESR):
11591         + implement TERMINFO_DIRS, and -o option of tic
11592         + added TRACE_IEVENT
11593         + fix REQ_TOGGLE_ITEM in menu/menu_driver.c; it could select but not
11594           deselect.
11595         + added lib_print.c (request by Rick Marshall).
11596         + added has_key() (request by Juergen Pfeifer).
11597         + do not issue clrtoeol or clrtobot if the relevant portion of the line
11598           is already blank (analysis by Keith Bostic).
11599         + add parentheses for parameters of COLOR_PAIR and PAIR_NUMBER macros
11600           (analysis by Jurgen Eidt).
11601         + update screen's notion of cursor position in endwin() (analysis by
11602           Alexander Lukyanov).
11603         + added 't' to ncurses.c test.
11604         + moved delay_output() to lib_tputs.c
11605         + removed tparam() (was added in 1.9.9, but conflicts with emacs and
11606           is not part of X/Open Curses).
11607         + removed boolean version of 'getm'.
11608         + misc cursor & optimization fixes.
11609
11610 960504  - snapshot
11611         + modified ncurses 'p' test to allow full-screen range for panner size.
11612         + fixes for locale (Philippe De Muyter <phdm@labauto1.ulb.ac.be>)
11613         + don't use fixed buffer-size in fmt_entry().
11614         + added usage-message to 'infocmp'.
11615         + modified install.includes rules to prepend subdirectory-name to
11616           "#include" if needed.
11617
11618 960430
11619         + protect wrefresh, wnoutrefresh from invocation with pad argument.
11620         + corrected default CCFLAGS in test/Makefile.
11621
11622 960428  - snapshot
11623         + implemented logic to support terminals with background color erase
11624           (e.g., rxvt and the newer color xterm).
11625         + improved screen update logic (off-by-one logic error; use clr_eos if
11626           possible)
11627
11628 960426  - snapshot
11629         + change ncurses 'a' test to run in raw mode.
11630         + make TIOCGWINSZ configure test less stringent, in case user
11631           configures via terminal that cannot get screen size.
11632         > patches 295, 296 (ESR):
11633         + split lib_kernel.c, lib_setup.c and names.c in order to reduce
11634           overhead for programs that use only termcap features.
11635         + new "-e" and "-h" options of tic (request by Tony Nugent).
11636         + fix bug in mandatory-delay logic in lib_tputs.c (report by Sven
11637           Verdoolaege).
11638         + fix for "infocmp -e" to emit correct initializers (reported by Manual
11639           J Novoa III).
11640         + restore working-directory in read_termcap.c (report by Kayvan
11641           Sylvan).
11642         + use "-h" option on Solaris when generating shared libraries on
11643           Solaris 2.5 to record the library name in the file, for assisting
11644           the loader (patch by Scott Kramer).
11645         + undo patch #294 changes to form and menu libraries (request by
11646           Juergen Pfeifer).
11647
11648 960418  - snapshot
11649         + use autoconf 2.9
11650         + fix for AIX 3.2.5 (must define _POSIX_SOURCE to get termios struct
11651           definitions via <termios.h>, modified macros in lib_raw.c to avoid
11652           K&R-style substitution)
11653         > patches 293, 294 (ESR):
11654         + rewrite wsyncup(), wsyncdown(), as well as small fixes to form and
11655           menu libraries to fix echo-breakage introduced by 1.8.9, 1.9.9e
11656           changes (patches by Juergen Pfeifer).
11657         + fix compile under QNX 4.2 by defining ONLCR in lib_raw.c when
11658           __QNX__ is defined (patch by Michael Hunter).
11659         + modify setupterm() to match documentation for its return value, fix
11660           newterm to work with this change (report by Emmet Lazich).
11661         + add checks in getch() for error, return ERR as appropriate (report by
11662           Emmet Lazich).
11663         + mods to wgetch() in cooked mode (report by Pete Seebach).
11664         + corrected askuser() logic in tset (patch by Remco Treffkorn).
11665         + correct interaction of endwin() with mouse processing (report by
11666           Michael Elkins).
11667         + added trace support for TTY flags
11668         + update terminfo.src to 9.13.1
11669         + FreeBSD console entries (patch by Andrew Chernov).
11670
11671 960406
11672         + fixes for NeXT, ISC and HPUX auto-configure
11673         + autogenerate development header-dependencies (config.h, *.priv.h)
11674         + corrected single-column formatting of "use=" (e.g., in tic)
11675         + modify tic to read full terminfo-names
11676         + corrected divide-by-zero that caused hang (or worse) when redirecting
11677           output
11678         + modify tic to generate directories only as-needed (and corrected
11679           instance of use of data from function that had already returned).
11680
11681 ### ncurses-1.9.8a -> 1.9.9e
11682
11683 * fixed broken wsyncup()/wysncdown(), as a result wnoutrefresh() now has
11684   copy-changed-lines behavior.
11685 * added and documented wresize() function.
11686 * more fixes to LOWER-RIGHT corner handling.
11687 * changed the line-breakout optimization code to allow some lines to be
11688   emitted before the first check.
11689 * added option for tic to use symbolic instead of hard links (for AFS)
11690 * fix to restore auto-wrap mode.
11691 * trace level can be controlled by environment variable.
11692 * better handling of NULs in terminal descriptions.
11693 * improved compatibility with observed SVR4 behavior.
11694 * the refresh behavior of over-lapping windows is now more efficient and
11695   behaves like SVR4.
11696 * use autoconf 2.7, which results in a working setup for SCO 5.0.
11697 * support for ESCDELAY.
11698 * small fixes for menu/form code.
11699 * the test directory has its own configure.
11700 * fixes to pads when optimizing scrolling.
11701 * fixed several off-by-one bugs.
11702 * fixes for termcap->terminfo translation; less restrictions more correct
11703   behavior.
11704
11705 ### ncurses-1.9.7 -> 1.9.8a
11706
11707 * teach infocmp -i to recognize ECMA highlight sequences
11708 * infocmp now dumps all SVr4 termcaps (not just the SVr4 ones) on -C
11709 * support infocmp -RBSD.
11710 * satisfy XSI Curses requirement that every macro be available as a function.
11711 * This represents the last big change to the public interface of ncurses. The
11712   ABI_VERSION has now been set at 3.0 and should stay there barring any great
11713   catastrophies or acts of God.
11714 * The C++ has been cleaned up in reaction to the changes to satisfy XSI's
11715   requirements.
11716 * libncurses now gets linked to libcurses to help seamless emulation
11717   (replacement) of a vendor's curses. --disable-overwrite turns this behavior
11718   off.
11719
11720 ### ncurses-1.9.6 -> 1.9.7
11721
11722 * corrected return values of setupterm()
11723 * Fixed some bugs in tput (it does padding now)
11724 * fixed a bug in tic that made it do the wrong thing on entries with more than
11725   one `use' capability.
11726 * corrected the screen-size calculation at startup time to alter the
11727   numeric capabilities as per SVr4, not just LINES and COLS.
11728 * toe(1) introduced; does what infocmp -T used to.
11729 * tic(1) can now translate AIX box1 and font[0123] capabilities.
11730 * tic uses much less core, the dotic.sh kluge can go away now.
11731 * fix read_entry() and write_entry() to pass through cancelled capabilities OK.
11732 * Add $HOME/.terminfo as source/target directory for terminfo entries.
11733 * termcap compilation now automatically dumps an entry to $HOME/.terminfo.
11734 * added -h option to toe(1).
11735 * added -R option to tic(1) and infocmp(1).
11736 * added fallback-entry-list feature.
11737 * added -i option to infocmp(1).
11738 * do a better job at detecting if we're on SCO.
11739
11740 ### ncurses-1.9.5 -> 1.9.6
11741
11742 * handling of TERMCAP environment variables now works correctly.
11743 * various changes to shorten termcap translations to less that 1024 chars.
11744 * tset(1) added
11745 * mouse support for xterm.
11746 * most data tables are now const and accordingly live in shareable text space.
11747 * Obey the XPG4/SVr4 practice that echo() is initally off.
11748 * tic is much better at translating XENIX and AIX termcap entries now.
11749 * tic can interpret ko capabilities now.
11750 * integrated Juergen Pfeifer's forms library.
11751 * taught write_entry() how not to write more than it needs to; this change
11752   reduces the size of the terminfo tree by a full 26%!
11753 * infocmp -T option added.
11754 * better warnings about historical tic quirks from tic.
11755
11756 ### ncurses 1.9.4 -> 1.9.5
11757
11758 * menus library is now included with documentation.
11759 * lib_mvcur has been carefully profiled and tuned.
11760 * Fixed a ^Z-handling bug that was tanking lynx(1).
11761 * HJ Lu's patches for ELF shared libraries under Linux
11762 * terminfo.src 9.8.2
11763 * tweaks for compiling in seperate directories.
11764 * Thomas Dickey's patches to support NeXT's brain-dead linker
11765 * Eric Raymond's patches to fix problems with long termcap entries.
11766 * more support for shared libraries under SunOS and IRIX.
11767
11768 ### ncurses 1.9.3 -> 1.9.4
11769
11770 * fixed an undefined-order-of-evaluation bug in lib_acs.c
11771 * systematically gave non-API public functions and data an _nc_ prefix.
11772 * integrated Juergen Pfeifer's menu code into the distribution.
11773 * totally rewrote the knight test game's interface
11774
11775 ### ncurses 1.9.2c -> 1.9.3
11776
11777 * fixed the TERMCAP_FILE Support.
11778 * fixed off-by-one errors in scrolling code
11779 * added tracemunch to the test tools
11780 * took steps to cut the running time of make install.data
11781
11782 ### ncurses 1.9.2c -> 1.9.2d
11783
11784 * revised 'configure' script to produce libraries for normal, debug,
11785   profile and shared object models.
11786
11787 ### ncurses 1.9.1 -> 1.9.2
11788
11789 * use 'autoconf' to implement 'configure' script.
11790 * panels support added
11791 * tic now checks for excessively long termcap entries when doing translation
11792 * first cut at eliminating namespace pollution.
11793
11794 ### ncurses 1.8.9 -> 1.9
11795
11796 * cleanup gcc warnings for the following: use size_t where 'int' is not
11797   appropriate, fixed some shadowed variables, change attr_t to compatible with
11798   chtype, use attr_t in some places where it was confused with 'int'.
11799 * use chtype/attr_t casts as appropriate to ensure portability of masking
11800   operations.
11801 * added-back waddchnstr() to lib_addstr.c (it had been deleted).
11802 * supplied missing prototypes in curses.h
11803 * include <termcap.h> in lib_termcap.c to ensure that the prototypes
11804   are consistent (they weren't).
11805 * corrected prototype of tputs in <termcap.h>
11806 * rewrote varargs parsing in lib_tparm.c (to avoid referencing memory
11807   that may be out of bounds on the stack) -- Purify found this.
11808 * ensure that TRACE is defined in lib_trace.c (to solve prototype
11809   warnings from gcc).
11810 * corrected scrolling-region size in 'mvcur_wrap()'
11811 * more spelling fixes
11812 * use 'calloc()' to allocate WINDOW struct in lib_newwin.c (Purify).
11813 * set default value for SP->_ofp in lib_set_term.c (otherwise SunOS dumps
11814   core in init_acs()).
11815 * include <errno.h> in write_entry.c (most "braindead" includes declare errno
11816   in that file).
11817
11818 ### ncurses 1.8.8 -> 1.8.9
11819
11820 * compile (mostly) clean with gcc 2.5.8 -Wall -Wstrict-prototypes
11821   -Wmissing-prototypes -Wconversion and using __attribute__ to flush out
11822   non-portable use of "%x" for pointers, or for chtype data (which is declared
11823   as a long).
11824 * modified doupdate to ensure that typahead was turned on before attempting
11825   select-call (otherwise, some implementations hang).
11826 * added trace mask TRACE_FIFO, use this in lib_getch.c to allow finer
11827   resolution of traces.
11828 * improved bounds checking on several critical functions.
11829 * the data directory has been replaced by the new master terminfo file.
11830 * -F file-comparison option added to infocmp.
11831 * compatibility with XSI Curses is now documented in the man bages.
11832 * wsyncup/wsyncdown functions are reliable now; subwindow code in general
11833   is much less flaky.
11834 * capabilities ~msgr, tilde_glitch, insert_padding, generic_type, no_pad_char,
11835   memory_above, memory_below, and hard_copy are now used properly.
11836 * cursor-movement optimization has been completely rewritten.
11837 * vertical-movement optimization now uses hardware scrolling, il, dl.
11838
11839 ### ncurses 1.8.7 -> 1.8.8
11840 * untic no longer exists, infocmp replaces it.
11841 * tic can understand termcap now, especially if it is called captoinfo.
11842 * The Linux Standard Console terminfo entry is called linux insead of console.
11843   It also uses the kernel's new method of changing charsets.
11844 * initscr() will EXIT upon error (as the docs say) This wil mostly happen if
11845   you try to run on an undefined terminal.
11846 * I can get things running on AIX but tic can't compile terminfo. I have to
11847   compile entries on another machine. Volunteers to hunt this bug are welcome.
11848 * wbkgd() and wbkgdset() can be used to set a windows background to color.
11849   wclear()/werase() DO NOT use the current attribute to clear the screen.
11850   This is the way SVR4 curses works. PDCurses 2.1 is broken in this respect,
11851   though PDCurses 2.2 has been fixed.
11852 * cleaned up the test/ directory.
11853 * test/worm will segfault after quite a while.
11854 * many spelling corrections courtesy of Thomas E. Dickey
11855
11856 ### ncurses 1.8.6 -> 1.8.7
11857 * cleaned up programs in test/ directory.
11858 * fixed wbkgdset() macro.
11859 * modified getstr() to stop it from advancing cursor in noecho mode.
11860 * modified linux terminfo entry to work with the latest kernel to get
11861   the correct alternate character set.
11862 * also added a linux-mono entry for those running on monochrome screens.
11863 * changed initscr() so that it behaves like the man page says it does.
11864   this fixes the problem with programs in test/ crashing with SIGSEV if
11865   a terminal is undefined.
11866 * modified addch() to avoid using any term.h #define's
11867 * removed duplicate tgoto() in lib_tparm.c
11868 * modified dump_entry.c so that infocmp deals correctly with ',' in acsc
11869 * modified delwin() to correctly handle deleting subwindows.
11870 * fixed Makefile.dist to stop installing an empty curses.h
11871 * fixed a couple of out-of-date notes in man pages.
11872
11873 ### ncurses 1.8.5 -> 1.8.6
11874 * Implemented wbkgd(), bkgd(), bkgdset(), and wbkgdset().
11875 * The handling of attributes has been improved and now does not turn off color
11876   if other attributes are turned off.
11877 * scrolling code is improved. Scrolling in subwindows is still broken.
11878 * Fixes to several bugs that manifest them on platforms other than Linux.
11879 * The default to meta now depends on the status of the terminal when ncurses
11880   is started.
11881 * The interface to the tracing facility has changed.  Instead of the pair of
11882   functions traceon() and traceoff(), there is just one function trace() which
11883   takes a trace mask argument.  The trace masks, defined in curses.h, are
11884   as follows:
11885
11886         #define TRACE_DISABLE   0x00    /* turn off tracing */
11887         #define TRACE_ORDINARY  0x01    /* ordinary trace mode */
11888         #define TRACE_CHARPUT   0x02    /* also trace all character outputs */
11889         #define TRACE_MAXIMUM   0x0f    /* maximum trace level */
11890
11891   More trace masks may be added, or these may be changed, in future releases.
11892 * The pad code has been improved and the pad test code in test/ncurses.c has
11893   been improved.
11894 * The prototype ansi entry has been changed to work with a wider variety
11895   of emulators.
11896 * Fix to the prototype ansi entry that enables it to work with PC emulators
11897   that treat trailing ";m" in a highlight sequence as ";0m"; this doesn't
11898   break operation with any emulators.
11899 * There are now working infocmp, captoinfo, tput, and tclear utilities.
11900 * tic can now compile entries in termcap syntax.
11901 * Core-dump bug in pnoutrefresh fixed.
11902 * We now recognize and compile all the nonstandard capabilities in Ross
11903   Ridge's mytinfo package (rendering it obsolete).
11904 * General cleanup and documentation improvements.
11905 * Fixes and additions to the installation-documentation files.
11906 * Take cursor to normal mode on endwin.
11907
11908 ### ncurses 1.8.4 -> 1.8.5
11909 * serious bugs in updating screen which caused erratic non-display,
11910   fixed.
11911 * fixed initialization for getch() related variable which cause
11912   unpredictable results.
11913 * fixed another doupdate bug which only appeared if you have
11914   parm_char.
11915 * implemented redrawln() and redrawwin().
11916 * implemented winsnstr() and related functions.
11917 * cleaned up insertln() and deleteln() and implemented (w)insdeln().
11918 * changed Makefile.dist so that installation of man pages will
11919   take note of the terminfo directory.
11920 * fixed Configure (removed the mysterious 'X').
11921 * Eric S. Raymond fixed the script.* files so that they work with
11922   stock awk.
11923
11924 #### ncurses 1.8.3 -> 1.8.4 #### ####
11925 * fixed bug in refreshing the screen after return from shell_mode.
11926   There are still problems but they don't manifest themselves on
11927   my machine (Linux 0.99.14f).
11928 * added wgetnstr() and modified things accordingly.
11929 * fixed the script.src script.test to work with awk not just gawk.
11930 * Configure can now take an argument of the target system.
11931 * added test/ncurses.c which replaces several other programs and
11932   performs more testing.
11933 [Thanks to Eric S Raymond for the last 4]
11934 * more fixes to lib_overlay.c and added test/over.c to illustrate
11935   how it works.
11936 * fixed ungetch() to take int instead of ch.
11937 * fixes to cure wgetch() if flushinp() is called.
11938
11939 One note I forgot to mention in 1.8.3 is that tracing is off by
11940 default starting in the version. If you want tracing output, put
11941 traceon(); in your code and link with -ldcurses.
11942
11943 #### ncurses 1.8.2 -> ncurses 1.8.3 #### ####
11944 MAJOR CHANGES:
11945 1) The order of capabilities has been changed in order to achieve
11946 binary compatibility with SVR4 terminfo database. This has the
11947 unfortunate effect of breaking application currently linked with
11948 ncurses. To ensure correct behavior, recompile all such programs.
11949 Most programs using color or newer capabilities will break, others
11950 will probably continue to work ok.
11951
11952 2) Pavel Curtis has renounced his copyright to the public domain.
11953 This means that his original sources (posted to comp.sources.unix,
11954 volume 1) are now in the public domain.  The current sources are
11955 NOT in the public domain, they are copyrighted by me.  I'm
11956 entertaining ideas on what the new terms ncurses is released under.
11957
11958 3) Eric S. Raymond has supplied a complete set of man pages for
11959 ncurses in ?roff format. They will eventually replace most of the
11960 current docs. Both sets are included in this release.
11961
11962 Other changes and notes from 1.8.2 include:
11963 * SIGSEGV during scrolling no longer occurs.
11964 * Other problems with scrolling and use of idl have been corrected.
11965 * lib_getch.c has been re-written and should perform flawlessly.
11966   please use test/getch.c and any other programs to test this.
11967 * ripoffline() is implemented (Thanks to Eric) and slk_ functions
11968   changed accordingly.
11969 * I've added support for terminals that scroll if you write in the
11970   bottom-right corner.
11971 * fixed more bugs in pads code. If anybody has a program that uses
11972   pads I'd love a copy.
11973 * correct handling for terminal with back_color_erase capability
11974   (such as Linux console, and most PC terminals)
11975 * ^Z handling apparently didn't work (I should never trust code
11976   sent me to me without extensive testing). It now seems to be
11977   fixed. Let me know if you have problems.
11978 * I've added support for Apollo and NeXT, but it may still be
11979   incomplete, especially when dealing with the lack of POSIX
11980   features.
11981 * scrolling should be more efficient on terminals with idl
11982   capabilities. Please see src/lib_scroll.c for more notes.
11983 * The line drawing routines were offset by 1 at both ends. This
11984   is now fixed.
11985 * added a few missing prototypes and macros (e.g. setterm())
11986 * fixed code in src/lib_overlay.c which used to crash.
11987 * added a few more programs in test/ The ones from the PDCurses
11988   package are useful, especially if you have SVR4 proper. I'm
11989   interested in the results you get on such a systems (Eric? ;-).
11990   They already exposed certain bugs in ncurses.
11991 * See src/README for porting notes.
11992 * The C++ code should really replace ncurses.h instead of working
11993   around it. It should avoid name-space clashes with nterm.h (use
11994   rows instead of lines, etc.)
11995 * The C++ should compile ok. I've added explicit rules to the
11996   Makefile because no C++ defaults are documented on the suns.
11997 * The docs say that echo() and nocbreak() are mutually exclusive.
11998   At the moment ncurses will switch to cbreak() if the case above
11999   occurs. Should it continue to do so? How about echo() and noraw()?
12000 * PDCurses seem to assume that wclear() will use current attribute
12001   when clearing the screen. According to Eric this is not the case
12002   with SVR4.
12003 * I have discovered, to my chagrin, SunOS 4.x (and probably other systems)
12004   * doesn't have vsscanf and God knows what else!  I've will do a vsscanf().
12005 * I've also found out that the src/script.* rely on gawk and will not
12006   work with stock awk or even with nawk. Any changes are welcome.
12007 * Linux is more tolerant of NULL dereferences than most systems. This
12008   fact was exposed by hanoi.
12009 * ncurses still seems inefficient in drawing the screen on a serial
12010   link between Linux and suns. The padding may be the culprit.
12011 * There seems to be one lingering problem with doupdate() after shelling
12012   out. Despite the fact the it is sending out the correct information
12013   to the terminal, nothing takes effect until you press ^L or another
12014   refresh takes place. And yes, output does get flushed.
12015
12016 #### ncurses 1.8.1 -> ncurses 1.8.2 #### Nov 28, 1993 ####
12017
12018 * added support for SVR4 and BSDI's BSD/386.
12019 * major update and fix to scrolling routine.
12020 * MORE fixes to stuff in lib_getch.c.
12021 * cleaned-up configuration options and can now generate
12022         Config.* files through an awk script.
12023 * changed setupterm() so it can be called more than once,
12024         add added set_curterm(), del_curterm().
12025 * a few minor cleanups.
12026 * added more prototypes in curses.h
12027
12028 #### ncurses 1.8 -> ncurses 1.8.1 #### Nov 4, 1993 ####
12029
12030 * added support for NeXTStep 3.0
12031 * added termcap emulation (not well tested).
12032 * more complete C++ interface to ncurses.
12033 * fixed overlay(), overwrite(), and added copywin().
12034 * a couple of bug fixes.
12035 * a few code cleanups.
12036
12037 #### ncurses 0.7.2/0.7.3 -> ncurses 1.8 #### Aug 31, 1993 ####
12038
12039 * The annoying message "can't open file." was due to missing
12040   terminfo entry for the used terminal. It has now been
12041   replaced by a hopefully more helpful message.
12042 * Problems with running on serial lines are now fixed.
12043 * Added configuration files for SunOS, Linux, HP/UX, Ultrix,
12044   386bsd/BSDI (if you have others send'em to me)
12045 * Cleaner Makefile.
12046 * The documentation in manual.doc is now more uptodate.
12047 * update optimization and support for hp terminals, and 386bsd
12048   console driver(s).
12049 * mvcur optimization for terminals without cursor addressing
12050   (doesn't work on Linux)
12051 * if cursor moved since last update, getch() will refresh the
12052   screen before working.
12053 * getch() & alarm() can now live together. in 0.7.3 a signal
12054   interrupted getch() (bug or feature?) now the getch is
12055   restarted.
12056 * scanw() et all were sick, now fixed.
12057 * support for 8-bit input (use meta()).
12058 * added default screen size to all terminfos.
12059 * added c++ Ncursesw class.
12060 * several minor bug fixes.
12061
12062 #### ncurses 0.7.2 -> ncurses 0.7.3 #### May 27, 1993 ####
12063
12064 * Config file to cope with different platforms (386BSD, BSDI, Ultrix, SunOS)
12065 * more fixes to lib_getch.c
12066 * changes related to Config
12067
12068 #### ncurses 0.7 -> ncurses 0.7.2 #### May 22, 1993 ####
12069
12070 * docs updated slightly (color usage is now documented).
12071 * yet another fix for getch(), this one fixes problems with ESC being swallowed
12072   if another character is typed before the 1 second timeout.
12073 * Hopefully, addstr() and addch() are 8-bit clean.
12074 * fixed lib_tparm.c to use stdarg.h (should run on suns now)
12075 * order of capabilities changed to reflect that specified in SYSV
12076   this will allow for binary-compatibility with existing terminfo dbs.
12077 * added halfdelay()
12078 * fixed problems with asc_init()
12079 * added A_PROTECT and A_INVIS
12080 * cleaned up vidputs()
12081 * general cleanup of the code
12082 * more attention to portability to other systems
12083 * added terminfos for hp70092 (wont work until changes to lib_update.c are
12084   made) and 386BSD pcvt drivers.
12085
12086 Thanks to Hellmuth Michaelis for his help.
12087 optimization code is slated for the next major release, stay tuned!
12088
12089 #### ncurses 0.6/0.61 -> ncurses 0.7 #### April 1, 1993
12090 Please note that the next release will be called 1.8. If you want to know about
12091 the rationale drop me a line.
12092
12093 Included are several test programs in test/.
12094 I've split up the panels library, reversi, tetris, sokoban. They are now
12095 available separately from netcom.com:pub/zmbenhal/
12096
12097 * color and ACS support is now fully compatible with SYSV at the terminfo
12098   level.
12099 * Capabilities now includes as many SYSV caps I could find.
12100 * tigetflag,tigetnum,tigetstr functions added.
12101 * boolnames, boolfnames, boolcodes numnames, numfnames, numcodes,
12102   strnames, strfnames, strcodes arrays are now added.
12103 * keyname() is added.
12104 * All function keys can be defined in terminfo entries.
12105 * fixed lin_tparm.c to behave properly.
12106 * terminfo entries for vt* and xterm are included (improvements are welcome)
12107 * more automation in handling caps and keys.
12108 * included fixes from 0.6.1
12109 * added a few more missing functions.
12110 * fixed a couple of minor bugs.
12111 * updated docs JUST a little (still miles behind in documenting the newer
12112         features).
12113
12114 #### ncurses 0.6 -> ncurses 0.61 ####
12115
12116 1) Included the missing data/console.
12117
12118 2) allow attributes when drawing boxes.
12119
12120 3) corrected usage of win->_delay value.
12121
12122 4) fixed a bug in lib_getch.c. if it didn't recognize a sequence it would
12123         simply return the last character in the sequence. The correct
12124         behavior is to return the entire sequence one character at a time.
12125
12126 #### ncurses0.5 -> ncurses0.6 #### March 1, 1993 ####
12127 * removed _numchngd from struct _win_st and made appropriate changes.
12128 * rewritten kgetch() to remove problems with interaction between alarm and
12129   read(). It caused SIGSEGV every now and then.
12130 * fixed a bug that miscounted the numbers of columns when updating.
12131   (in lib_doupdate.c(ClrUpdate() -- iterate to columns not columns-1)
12132 * fixed a bug that cause the lower-right corner to be incorrect.
12133   (in lib_doupdate.c(putChar() -- check against columns not columns-1)
12134 * made resize() and cleanup() static to lib_newterm.c
12135 * added notimeout().
12136 * added timeout() define in curses.h
12137 * added more function prototypes and fixed napms.
12138 * added use_env().
12139 * moved screen size detection to lib_setup.c.
12140 * fixed newterm() to confirm to prototype.
12141 * removed SIGWINCH support as SYSV does not define its semantics.
12142 * cleaned-up lib_touch.c
12143 * added waddnstr() and relatives.
12144 * added slk_* support.
12145 * fixed a bug in wdeleteln().
12146 * added PANEL library.
12147 * modified Makefile for smoother installation.
12148 * terminfo.h is really term.h
12149
12150 #### ncurses 0.4 -> ncurses 0.5 #### Feb 14, 1993 ####
12151 * changed _win_st structure to allow support for missing functionality.
12152 * Addition of terminfo support for all KEY_*.
12153 * Support for nodelay(), timeout(), notimeout().
12154 * fixed a bug with the keypad char reading that did not return ESC until
12155   another key is pressed.
12156 * nl mapping no longer occur on output (as should be)
12157   fixed bug '\n' no causing a LF.
12158 * fixed bug that reset terminal colors regardless of whether we use color
12159   or not.
12160 * Better support for ACS (not quite complete).
12161 * fixed bug in wvline().
12162 * added curs_set().
12163 * changed from signal() to sigaction().
12164 * re-included the contents of important.patch into source.
12165
12166 #### ncurses 0.3 -> ncurses 0.4 #### Feb 3, 1993 ####
12167 * Addition of more KEY_* definitions.
12168 * Addition of function prototypes.
12169 * Addition of several missing functions.
12170 * No more crashes if screen size is undefined (use SIGWINCH handler).
12171 * added a handler to cleanup after SIGSEGV (hopefully never needed).
12172 * changed SRCDIR from /etc/term to /usr/lib/terminfo.
12173 * renamed compile/dump to tic/untic.
12174 * New scrolling code.
12175 * fixed bug that reversed the sense of nl() and nonl().
12176
12177 #### ncurses 0.2 -> ncurses 0.3 #### Jan 20, 1993 ####
12178 * more support for color and graphics see test/ for examples.
12179 * fixed various files to allow correct update after shelling out.
12180 * more fixes for updates.
12181 * no more core dumps if you don't have a terminfo entry.
12182 * support for LINES and COLUMNS environment variables.
12183 * support for SIGWINCH signal.
12184 * added a handler for SIGINT for clean exits.
12185
12186 #### ncurses 0.1 -> ncurses 0.2 #### Aug 14, 1992 ####
12187 * support for color.
12188 * support for PC graphic characters.
12189 * lib_trace.c updated to use stdarg.h and vprintf routines.
12190 * added gdc.c (Great Digital Clock) as an example of using color.
12191
12192 #### ncurses -> ncurses 0.1 #### Jul 31, 1992 ####
12193 * replacing sgtty stuff by termios stuff.
12194 * ANSIfication of some functions.
12195 * Disabling cost analysis 'cause it's incorrect.
12196 * A quick hack for a terminfo entry.
12197
12198 -- vile:txtmode: