]> ncurses.scripts.mit.edu Git - ncurses.git/blob - NEWS
ncurses 5.7 - patch 20100515
[ncurses.git] / NEWS
1 -------------------------------------------------------------------------------
2 -- Copyright (c) 1998-2009,2010 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.1543 2010/05/15 21:46:31 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 20100515
49         + add configure option --enable-pthreads-eintr to control whether the
50           new EINTR feature is enabled.
51         + modify logic in pthread configuration to allow EINTR to interrupt
52           a read operation in wgetch() (Novell #540571, patch by Werner Fink).
53         + drop mkdirs.sh, use "mkdir -p".
54         + add configure option --disable-libtool-version, to use the
55           "-version-number" feature which was added in libtool 1.5 (report by
56           Peter Haering).  The default value for the option uses the newer
57           feature, which makes libraries generated using libtool compatible
58           with the standard builds of ncurses.
59         + updated test/configure to match configure script macros.
60         + fixes for configure script from lynx changes:
61           + improve CF_FIND_LINKAGE logic for the case where a function is
62             found in predefined libraries.
63           + revert part of change to CF_HEADER (cf: 20100424)
64
65 20100501
66         + correct limit-check in wredrawln, accounting for begy/begx values
67           (patch by David Benjamin).
68         + fix most compiler warnings from clang.
69         + amend build-fix for OpenSolaris, to ensure that a system header is
70           included in curses.h before testing feature symbols, since they
71           may be defined by that route.
72
73 20100424
74         + fix some strict compiler warnings in ncurses library.
75         + modify configure macro CF_HEADER_PATH to not look for variations in
76           the predefined include directories.
77         + improve configure macros CF_GCC_VERSION and CF_GCC_WARNINGS to work
78           with gcc 4.x's c89 alias, which gives warning messages for cases
79           where older versions would produce an error.
80
81 20100417
82         + modify _nc_capcmp() to work with cancelled strings.
83         + correct translation of "^" in _nc_infotocap(), used to transform
84           terminfo to termcap strings 
85         + add configure --disable-rpath-hack, to allow disabling the feature
86           which adds rpath options for libraries in unusual places.
87         + improve CF_RPATH_HACK_2 by checking if the rpath option for a given
88           directory was already added.
89         + improve CF_RPATH_HACK_2 by using ldd to provide a standard list of
90           directories (which will be ignored).
91
92 20100410
93         + improve win_driver.c handling of mouse:
94           + discard motion events
95           + avoid calling _nc_timed_wait when there is a mouse event
96           + handle 4th and "rightmost" buttons.
97         + quote substitutions in CF_RPATH_HACK_2 configure macro, needed for
98           cases where there are embedded blanks in the rpath option.
99
100 20100403
101         + add configure check for exctags vs ctags, to work around pkgsrc.
102         + simplify logic in _nc_get_screensize() to make it easier to see how
103           environment variables may override system- and terminfo-values
104           (prompted by discussion with Igor Bujna).
105         + make debug-traces for COLOR_PAIR and PAIR_NUMBER less verbose.
106         + improve handling of color-pairs embedded in attributes for the
107           extended-colors configuration.
108         + modify MKlib_gen.sh to build link_test with sp-funcs.
109         + build-fixes for OpenSolaris aka Solaris 11, for wide-character
110           configuration as well as for rpath feature in *-config scripts.
111
112 20100327
113         + refactor CF_SHARED_OPTS configure macro, making CF_RPATH_HACK more
114           reusable.
115         + improve configure CF_REGEX, similar fixes.
116         + improve configure CF_FIND_LINKAGE, adding add check between system
117           (default) and explicit paths, where we can find the entrypoint in the
118           given library.
119         + add check if Gpm_Open() returns a -2, e.g., for "xterm".  This is
120           normally suppressed but can be overridden using $NCURSES_GPM_TERMS.
121           Ensure that Gpm_Close() is called in this case.
122
123 20100320
124         + rename atari and st52 terminfo entries to atari-old, st52-old, use
125           newer entries from FreeMiNT by Guido Flohr (from patch/report by Alan
126           Hourihane).
127
128 20100313
129         + modify install-rule for manpages so that *-config manpages will
130           install when building with --srcdir (report by Sven Joachim).
131         + modify CF_DISABLE_LEAKS configure macro so that the --enable-leaks
132           option is not the same as --disable-leaks (GenToo #305889).
133         + modify #define's for build-compiler to suppress cchar_t symbol from
134           compile of make_hash and make_keys, improving cross-compilation of
135           ncursesw (report by Bernhard Rosenkraenzer).
136         + modify CF_MAN_PAGES configure macro to replace all occurrences of
137           TPUT in tput.1's manpage (Debian #573597, report/analysis by Anders
138           Kaseorg).
139
140 20100306
141         + generate manpages for the *-config scripts, adapted from help2man
142           (suggested by Sven Joachim).
143         + use va_copy() in _nc_printf_string() to avoid conflicting use of
144           va_list value in _nc_printf_length() (report by Wim Lewis).
145
146 20100227
147         + add Ada95/configure script, to use in tar-file created by
148           Ada95/make-tar.sh
149         + fix typo in wresize.3x (patch by Tim van der Molen).
150         + modify screen-bce.XXX entries to exclude ech, since screen's color
151           model does not clear with color for that feature -TD
152
153 20100220
154         + add make-tar.sh scripts to Ada95 and test subdirectories to help with
155           making those separately distributable.
156         + build-fix for static libraries without dlsym (Debian #556378).
157         + fix a syntax error in man/form_field_opts.3x (patch by Ingo
158           Schwarze).
159
160 20100213
161         + add several screen-bce.XXX entries -TD
162
163 20100206
164         + update mrxvt terminfo entry -TD
165         + modify win_driver.c to support mouse single-clicks.
166         + correct name for termlib in ncurses*-config, e.g., if it is renamed
167           to provide a single file for ncurses/ncursesw libraries (patch by
168           Miroslav Lichvar).
169
170 20100130
171         + use vfork in test/ditto.c if available (request by Mike Frysinger).
172         + miscellaneous cleanup of manpages.
173         + fix typo in curs_bkgd.3x (patch by Tim van der Molen).
174         + build-fix for --srcdir (patch by Miroslav Lichvar).
175
176 20100123
177         + for term-driver configuration, ensure that the driver pointer is
178           initialized in setupterm so that terminfo/termcap programs work.
179         + amend fix for Debian #542031 to ensure that wattrset() returns only
180           OK or ERR, rather than the attribute value (report by Miroslav
181           Lichvar).
182         + reorder WINDOWLIST to put WINDOW data after SCREEN pointer, making
183           _nc_screen_of() compatible between normal/wide libraries again (patch
184           by Miroslav Lichvar)
185         + review/fix include-dependencies in modules files (report by Miroslav
186           Lichvar).
187
188 20100116
189         + modify win_driver.c to initialize acs_map for win32 console, so
190           that line-drawing works.
191         + modify win_driver.c to initialize TERMINAL struct so that programs
192           such as test/lrtest.c and test/ncurses.c which test string
193           capabilities can run.
194         + modify term-driver modules to eliminate forward-reference
195           declarations.
196
197 20100109
198         + modify configure macro CF_XOPEN_SOURCE, etc., to use CF_ADD_CFLAGS
199           consistently to add new -D's while removing duplicates.
200         + modify a few configure macros to consistently put new options
201           before older in the list.
202         + add tiparm(), based on review of X/Open Curses Issue 7.
203         + minor documentation cleanup.
204         + update config.guess, config.sub from
205                 http://savannah.gnu.org/projects/config
206           (caveat - its maintainer put 2010 copyright date on files dated 2009)
207
208 20100102
209         + minor improvement to tic's checking of similar SGR's to allow for the
210           most common case of SGR 0.
211         + modify getmouse() to act as its documentation implied, returning on
212           each call the preceding event until none are left.  When no more
213           events remain, it will return ERR.
214
215 20091227
216         + change order of lookup in progs/tput.c, looking for terminfo data
217           first.  This fixes a confusion between termcap "sg" and terminfo
218           "sgr" or "sgr0", originally from 990123 changes, but exposed by
219           20091114 fixes for hashing.  With this change, only "dl" and "ed" are
220           ambiguous (Mandriva #56272).
221
222 20091226
223         + add bterm terminfo entry, based on bogl 0.1.18 -TD
224         + minor fix to rxvt+pcfkeys terminfo entry -TD
225         + build-fixes for Ada95 tree for gnat 4.4 "style".
226
227 20091219
228         + remove old check in mvderwin() which prevented moving a derived
229           window whose origin happened to coincide with its parent's origin
230           (report by Katarina Machalkova).
231         + improve test/ncurses.c to put mouse droppings in the proper window.
232         + update minix terminfo entry -TD
233         + add bw (auto-left-margin) to nsterm* entries (Benjamin Sittler)
234
235 20091212
236         + correct transfer of multicolumn characters in multirow
237           field_buffer(), which stopped at the end of the first row due to
238           filling of unused entries in a cchar_t array with nulls.
239         + updated nsterm* entries (Benjamin Sittler, Emanuele Giaquinta)
240         + modify _nc_viscbuf2() and _tracecchar_t2() to show wide-character
241           nulls.
242         + use strdup() in set_menu_mark(), restore .marklen struct member on
243           failure.
244         + eliminate clause 3 from the UCB copyrights in read_termcap.c and
245           tset.c per
246                 ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
247           (patch by Nicholas Marriott).
248         + replace a malloc in tic.c with strdup, checking for failure (patch by
249           Nicholas Marriott).
250         + update config.guess, config.sub from
251                 http://savannah.gnu.org/projects/config
252
253 20091205
254         + correct layout of working window used to extract data in
255           wide-character configured by set_field_buffer (patch by Rafael
256           Garrido Fernandez)
257         + improve some limit-checks related to filename length in reading and
258           writing terminfo entries.
259         + ensure that filename is always filled in when attempting to read
260           a terminfo entry, so that infocmp can report the filename (patch
261           by Nicholas Marriott).
262
263 20091128
264         + modify mk-1st.awk to allow tinfo library to be built when term-driver
265           is enabled.
266         + add error-check to configure script to ensure that sp-funcs is
267           enabled if term-driver is, since some internal interfaces rely upon
268           this.
269
270 20091121
271         + fix case where progs/tput is used while sp-funcs is configure; this
272           requires save/restore of out-character function from _nc_prescreen
273           rather than the SCREEN structure (report by Charles Wilson).
274         + fix typo in man/curs_trace.3x which caused incorrect symbolic links
275         + improved configure macros CF_GCC_ATTRIBUTES, CF_PROG_LINT.
276
277 20091114
278
279         + updated man/curs_trace.3x
280         + limit hashing for termcap-names to 2-characters (Ubuntu #481740).
281         + change a variable name in lib_newwin.c to make it clearer which
282           value is being freed on error (patch by Nicholas Marriott).
283
284 20091107
285         + improve test/ncurses.c color-cycling test by reusing attribute-
286           and color-cycling logic from the video-attributes screen.
287         + add ifdef'd with NCURSES_INTEROP_FUNCS experimental bindings in form
288           library which help make it compatible with interop applications
289           (patch by Juergen Pfeifer).
290         + add configure option --enable-interop, for integrating changes
291           for generic/interop support to form-library by Juergen Pfeifer
292
293 20091031
294         + modify use of $CC environment variable which is defined by X/Open
295           as a curses feature, to ignore it if it is not a single character
296           (prompted by discussion with Benjamin C W Sittler).
297         + add START_TRACE in slk_init
298         + fix a regression in _nc_ripoffline which made test/ncurses.c not show
299           soft-keys, broken in 20090927 merging.
300         + change initialization of "hidden" flag for soft-keys from true to
301           false, broken in 20090704 merging (Ubuntu #464274).
302         + update nsterm entries (patch by Benjamin C W Sittler, prompted by
303           discussion with Fabian Groffen in GenToo #206201).
304         + add test/xterm-256color.dat
305
306 20091024
307         + quiet some pedantic gcc warnings.
308         + modify _nc_wgetch() to check for a -1 in the fifo, e.g., after a
309           SIGWINCH, and discard that value, to avoid confusing application
310           (patch by Eygene Ryabinkin, FreeBSD bin/136223).
311
312 20091017
313         + modify handling of $PKG_CONFIG_LIBDIR to use only the first item in
314           a possibly colon-separated list (Debian #550716).
315
316 20091010
317         + supply a null-terminator to buffer in _nc_viswibuf().
318         + fix a sign-extension bug in unget_wch() (report by Mike Gran).
319         + minor fixes to error-returns in default function for tputs, as well
320           as in lib_screen.c
321
322 20091003
323         + add WACS_xxx definitions to wide-character configuration for thick-
324           and double-lines (discussion with Slava Zanko).
325         + remove unnecessary kcan assignment to ^C from putty (Sven Joachim)
326         + add ccc and initc capabilities to xterm-16color -TD
327         > patch by Benjamin C W Sittler:
328         + add linux-16color
329         + correct initc capability of linux-c-nc end-of-range
330         + similar change for dg+ccc and dgunix+ccc
331
332 20090927
333         + move leak-checking for comp_captab.c into _nc_leaks_tinfo() since
334           that module since 20090711 is in libtinfo.
335         + add configure option --enable-term-driver, to allow compiling with
336           terminal-driver.  That is used in mingw port, and (being somewhat
337           more complicated) is an experimental alternative to the conventional
338           termlib internals.  Currently, it requires the sp-funcs feature to
339           be enabled.
340         + completed integrating "sp-funcs" by Juergen Pfeifer in ncurses
341           library (some work remains for forms library).
342
343 20090919
344         + document return code from define_key (report by Mike Gran).
345         + make some symbolic links in the terminfo directory-tree shorter
346           (patch by Daniel Jacobowitz, forwarded by Sven Joachim).).
347         + fix some groff warnings in terminfo.5, etc., from recent Debian
348           changes.
349         + change ncv and op capabilities in sun-color terminfo entry to match
350           Sun's entry for this (report by Laszlo Peter).
351         + improve interix smso terminfo capability by using reverse rather than
352           bold (report by Kristof Zelechovski).
353
354 20090912
355         + add some test programs (and make these use the same special keys
356           by sharing linedata.h functions):
357           test/test_addstr.c
358           test/test_addwstr.c
359           test/test_addchstr.c
360           test/test_add_wchstr.c
361         + correct internal _nc_insert_ch() to use _nc_insert_wch() when
362           inserting wide characters, since the wins_wch() function that it used
363           did not update the cursor position (report by Ciprian Craciun).
364
365 20090906
366         + fix typo s/is_timeout/is_notimeout/ which made "man is_notimeout" not
367           work.
368         + add null-pointer checks to other opaque-functions.
369         + add is_pad() and is_subwin() functions for opaque access to WINDOW
370           (discussion with Mark Dickinson).
371         + correct merge to lib_newterm.c, which broke when sp-funcs was
372           enabled.
373
374 20090905
375         + build-fix for building outside source-tree (report by Sven Joachim).
376         + fix Debian lintian warning for man/tabs.1 by making section number
377           agree with file-suffix (report by Sven Joachim).
378         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
379
380 20090829
381         + workaround for bug in g++ 4.1-4.4 warnings for wattrset() macro on
382           amd64 (Debian #542031).
383         + fix typo in curs_mouse.3x (Debian #429198).
384
385 20090822
386         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
387
388 20090815
389         + correct use of terminfo capabilities for initializing soft-keys,
390           broken in 20090509 merging.
391         + modify wgetch() to ensure it checks SIGWINCH when it gets an error
392           in non-blocking mode (patch by Clemens Ladisch).
393         + use PATH_SEPARATOR symbol when substituting into run_tic.sh, to
394           help with builds on non-Unix platforms such as OS/2 EMX.
395         + modify scripting for misc/run_tic.sh to test configure script's
396           $cross_compiling variable directly rather than comparing host/build
397           compiler names (prompted by comment in GenToo #249363).
398         + fix configure script option --with-database, which was coded as an
399           enable-type switch.
400         + build-fixes for --srcdir (report by Frederic L W Meunier).
401
402 20090808
403         + separate _nc_find_entry() and _nc_find_type_entry() from
404           implementation details of hash function.
405
406 20090803
407         + add tabs.1 to man/man_db.renames
408         + modify lib_addch.c to compensate for removal of wide-character test
409           from unctrl() in 20090704 (Debian #539735).
410
411 20090801
412         + improve discussion in INSTALL for use of system's tic/infocmp for
413           cross-compiling and building fallbacks.
414         + modify test/demo_termcap.c to correspond better to options in
415           test/demo_terminfo.c
416         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
417         + fix logic for 'V' in test/ncurses.c tests f/F.
418
419 20090728
420         + correct logic in tigetnum(), which caused tput program to treat all
421           string capabilities as numeric (report by Rajeev V Pillai,
422           cf: 20090711).
423
424 20090725
425         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
426
427 20090718
428         + fix a null-pointer check in _nc_format_slks() in lib_slk.c, from
429           20070704 changes.
430         + modify _nc_find_type_entry() to use hashing.
431         + make CCHARW_MAX value configurable, noting that changing this would
432           change the size of cchar_t, and would be ABI-incompatible.
433         + modify test-programs, e.g,.  test/view.c, to address subtle
434           differences between Tru64/Solaris and HPUX/AIX getcchar() return
435           values.
436         + modify length returned by getcchar() to count the trailing null
437           which is documented in X/Open (cf: 20020427).
438         + fixes for test programs to build/work on HPUX and AIX, etc.
439
440 20090711
441         + improve performance of tigetstr, etc., by using hashing code from tic.
442         + minor fixes for memory-leak checking.
443         + add test/demo_terminfo, for comparison with demo_termcap
444
445 20090704
446         + remove wide-character checks from unctrl() (patch by Clemens Ladisch).
447         + revise wadd_wch() and wecho_wchar() to eliminate dependency on
448           unctrl().
449         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
450
451 20090627
452         + update llib-lncurses[wt] to use sp-funcs.
453         + various code-fixes to build/work with --disable-macros configure
454           option.
455         + add several new files from Juergen Pfeifer which will be used when
456           integration of "sp-funcs" is complete.  This includes a port to
457           MinGW.
458
459 20090613
460         + move definition for NCURSES_WRAPPED_VAR back to ncurses_dll.h, to
461           make includes of term.h without curses.h work (report by "Nix").
462         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
463
464 20090607
465         + fix a regression in lib_tputs.c, from ongoing merges.
466
467 20090606
468         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
469
470 20090530
471         + fix an infinite recursion when adding a legacy-coding 8-bit value
472           using insch() (report by Clemens Ladisch).
473         + free home-terminfo string in del_curterm() (patch by Dan Weber).
474         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
475
476 20090523
477         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
478
479 20090516
480         + work around antique BSD game's manipulation of stdscr, etc., versus
481           SCREEN's copy of the pointer (Debian #528411).
482         + add a cast to wattrset macro to avoid compiler warning when comparing
483           its result against ERR (adapted from patch by Matt Kraii, Debian
484           #528374).
485
486 20090510
487         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
488
489 20090502
490         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
491         + add vwmterm terminfo entry (patch by Bryan Christ).
492
493 20090425
494         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
495
496 20090419
497         + build fix for _nc_free_and_exit() change in 20090418 (report by
498           Christian Ebert).
499
500 20090418
501         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
502
503 20090411
504         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
505           This change finishes merging for menu and panel libraries, does
506           part of the form library.
507
508 20090404
509         + suppress configure check for static/dynamic linker flags for gcc on
510           Darwin (report by Nelson Beebe).
511
512 20090328
513         + extend ansi.sys pfkey capability from kf1-kf10 to kf1-kf48, moving
514           function key definitions from emx-base for consistency -TD
515         + correct missing final 'p' in pfkey capability of ansi.sys-old (report
516           by Kalle Olavi Niemitalo).
517         + improve test/ncurses.c 'F' test, show combining characters in color.
518         + quiet a false report by cppcheck in c++/cursesw.cc by eliminating
519           a temporary variable.
520         + use _nc_doalloc() rather than realloc() in a few places in ncurses
521           library to avoid leak in out-of-memory condition (reports by William
522           Egert and Martin Ettl based on cppcheck tool).
523         + add --with-ncurses-wrap-prefix option to test/configure (discussion
524           with Charles Wilson).
525         + use ncurses*-config scripts if available for test/configure.
526         + update test/aclocal.m4 and test/configure
527         > patches by Charles Wilson:
528         + modify CF_WITH_LIBTOOL configure check to allow unreleased libtool
529           version numbers (e.g.  which include alphabetic chars, as well as
530           digits, after the final '.').
531         + improve use of -no-undefined option for libtool by setting an
532           intermediate variable LT_UNDEF in the configure script, and then
533           using that in the libtool link-commands.
534         + fix an missing use of NCURSES_PUBLIC_VAR() in tinfo/MKcodes.awk
535           from 2009031 changes.
536         + improve mk-1st.awk script by writing separate cases for the
537           LIBTOOL_LINK command, depending on which library (ncurses, ticlib,
538           termlib) is to be linked.
539         + modify configure.in to allow broken-linker configurations, not just
540           enable-reentrant, to set public wrap prefix.
541
542 20090321
543         + add TICS_LIST and SHLIB_LIST to allow libtool 2.2.6 on Cygwin to
544           build with tic and term libraries (patch by Charles Wilson).
545         + add -no-undefined option to libtool for Cygwin, MinGW, U/Win and AIX
546           (report by Charles Wilson).
547         + fix definition for c++/Makefile.in's SHLIB_LIST, which did not list
548           the form, menu or panel libraries (patch by Charles Wilson).
549         + add configure option --with-wrap-prefix to allow setting the prefix
550           for functions used to wrap global variables to something other than
551           "_nc_" (discussion with Charles Wilson).
552
553 20090314
554         + modify scripts to generate ncurses*-config and pc-files to add
555           dependency for tinfo library (patch by Charles Wilson).
556         + improve comparison of program-names when checking for linked flavors
557           such as "reset" by ignoring the executable suffix (reports by Charles
558           Wilson, Samuel Thibault and Cedric Bretaudeau on Cygwin mailing
559           list).
560         + suppress configure check for static/dynamic linker flags for gcc on
561           Solaris 10, since gcc is confused by absence of static libc, and
562           does not switch back to dynamic mode before finishing the libraries
563           (reports by Joel Bertrand, Alan Pae).
564         + minor fixes to Intel compiler warning checks in configure script.
565         + modify _nc_leaks_tinfo() so leak-checking in test/railroad.c works.
566         + modify set_curterm() to make broken-linker configuration work with
567           changes from 20090228 (report by Charles Wilson).
568
569 20090228
570         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
571         + modify declaration of cur_term when broken-linker is used, but
572           enable-reentrant is not, to match pre-5.7 (report by Charles Wilson).
573
574 20090221
575         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
576
577 20090214
578         + add configure script --enable-sp-funcs to enable the new set of
579           extended functions.
580         + start integrating patches by Juergen Pfeifer:
581           + add extended functions which specify the SCREEN pointer for several
582             curses functions which use the global SP (these are incomplete;
583             some internals work is needed to complete these).
584           + add special cases to configure script for MinGW port.
585
586 20090207
587         + update several configure macros from lynx changes
588           + append (not prepend) to CFLAGS/CPPFLAGS
589           + change variable from PATHSEP to PATH_SEPARATOR
590         + improve install-rules for pc-files (patch by Miroslav Lichvar).
591           + make it work with $DESTDIR
592           + create the pkg-config library directory if needed.
593
594 20090124
595         + modify init_pair() to allow caller to create extra color pairs beyond
596           the color_pairs limit, which use default colors (request by Emanuele
597           Giaquinta).
598         + add misc/terminfo.tmp and misc/*.pc to "sources" rule.
599         + fix typo "==" where "=" is needed in ncurses-config.in and
600           gen-pkgconfig.in files (Debian #512161).
601
602 20090117
603         + add -shared option to MK_SHARED_LIB when -Bsharable is used, for
604           *BSD's, without which "main" might be one of the shared library's
605           dependencies (report/analysis by Ken Dickey).
606         + modify waddch_literal(), updating line-pointer after a multicolumn
607           character is found to not fit on the current row, and wrapping is
608           done.  Since the line-pointer was not updated, the wrapped
609           multicolumn character was written to the beginning of the current row
610           (cf: 20041023, reported by "Nick" regarding problem with ncmpc
611           http://musicpd.org/mantis/bug_view_page.php?bug_id=1930).
612
613 20090110
614         + add screen.Eterm terminfo entry (GenToo #124887) -TD
615         + modify adacurses-config to look for ".ali" files in the adalib
616           directory.
617         + correct install for Ada95, which omitted libAdaCurses.a used in
618           adacurses-config
619         + change install for adacurses-config to provide additional flavors
620           such as adacursesw-config, for ncursesw (GenToo #167849).
621
622 20090105
623         + remove undeveloped feature in ncurses-config.in for setting
624           prefix variable.
625         + recent change to ncurses-config.in did not take into account the
626           --disable-overwrite option, which sets $includedir to the
627           subdirectory and using just that for a -I option does not work - fix
628           (report by Frederic L W Meunier).
629
630 20090104
631         + modify gen-pkgconfig.in to eliminate a dependency on rpath when
632           deciding whether to add $LIBS to --libs output; that should be shown
633           for the ncurses and tinfo libraries without taking rpath into
634           account.
635         + fix an overlooked change from $AR_OPTS to $ARFLAGS in mk-1st.awk,
636           used in static libraries (report by Marty Jack).
637
638 20090103
639         + add a configure-time check to pick a suitable value for
640           CC_SHARED_OPTS for Solaris (report by Dagobert Michelsen).
641         + add configure --with-pkg-config and --enable-pc-files options, along
642           with misc/gen-pkgconfig.in which can be used to generate ".pc" files
643           for pkg-config (request by Jan Engelhardt).
644         + use $includedir symbol in misc/ncurses-config.in, add --includedir
645           option.
646         + change makefiles to use $ARFLAGS rather than $AR_OPTS, provide a
647           configure check to detect whether a "-" is needed before "ar"
648           options.
649         + update config.guess, config.sub from
650                 http://savannah.gnu.org/projects/config
651
652 20081227
653         + modify mk-1st.awk to work with extra categories for tinfo library.
654         + modify configure script to allow building shared libraries with gcc
655           on AIX 5 or 6 (adapted from patch by Lital Natan).
656
657 20081220
658         + modify to omit the opaque-functions from lib_gen.o when
659           --disable-ext-funcs is used.
660         + add test/clip_printw.c to illustrate how to use printw without
661           wrapping.
662         + modify ncurses 'F' test to demo wborder_set() with colored lines.
663         + modify ncurses 'f' test to demo wborder() with colored lines.
664
665 20081213
666         + add check for failure to open hashed-database needed for db4.6
667           (GenToo #245370).
668         + corrected --without-manpages option; previous change only suppressed
669           the auxiliary rules install.man and uninstall.man
670         + add case for FreeMINT to configure macro CF_XOPEN_SOURCE (patch from
671           GenToo #250454).
672         + fixes from NetBSD port at
673           http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches
674           patch-ac (build-fix for DragonFly)
675           patch-ae (use INSTALL_SCRIPT for installing misc/ncurses*-config).
676         + improve configure script macros CF_HEADER_PATH and CF_LIBRARY_PATH
677           by adding CFLAGS, CPPFLAGS and LDFLAGS, LIBS values to the
678           search-lists.
679         + correct title string for keybound manpage (patch by Frederic Culot,
680           OpenBSD documentation/6019),
681
682 20081206
683         + move del_curterm() call from _nc_freeall() to _nc_leaks_tinfo() to
684           work for progs/clear, progs/tabs, etc.
685         + correct buffer-size after internal resizing of wide-character
686           set_field_buffer(), broken in 20081018 changes (report by Mike Gran).
687         + add "-i" option to test/filter.c to tell it to use initscr() rather
688           than newterm(), to investigate report on comp.unix.programmer that
689           ncurses would clear the screen in that case (it does not - the issue
690           was xterm's alternate screen feature).
691         + add check in mouse-driver to disable connection if GPM returns a
692           zero, indicating that the connection is closed (Debian #506717,
693           adapted from patch by Samuel Thibault).
694
695 20081129
696         + improve a workaround in adding wide-characters, when a control
697           character is found.  The library (cf: 20040207) uses unctrl() to
698           obtain a printable version of the control character, but was not
699           passing color or video attributes.
700         + improve test/ncurses.c 'a' test, using unctrl() more consistently to
701           display meta-characters.
702         + turn on _XOPEN_CURSES definition in curses.h
703         + add eterm-color entry (report by Vincent Lefevre) -TD
704         + correct use of key_name() in test/ncurses.c 'A' test, which only
705           displays wide-characters, not key-codes since 20070612 (report by
706           Ricardo Cantu).
707
708 20081122
709         + change _nc_has_mouse() to has_mouse(), reflect its use in C++ and
710           Ada95 (patch by Juergen Pfeifer).
711         + document in TO-DO an issue with Cygwin's package for GNAT (report
712           by Mike Dennison).
713         + improve error-checking of command-line options in "tabs" program.
714
715 20081115
716         + change several terminfo entries to make consistent use of ANSI
717           clear-all-tabs -TD
718         + add "tabs" program (prompted by Debian #502260).
719         + add configure --without-manpages option (request by Mike Frysinger).
720
721 20081102 5.7 release for upload to ftp.gnu.org
722
723 20081025
724         + add a manpage to discuss memory leaks.
725         + add support for shared libraries for QNX (other than libtool, which
726           does not work well on that platform).
727         + build-fix for QNX C++ binding.
728
729 20081018
730         + build-fixes for OS/2 EMX.
731         + modify form library to accept control characters such as newline
732           in set_field_buffer(), which is compatible with Solaris (report by
733           Nit Khair).
734         + modify configure script to assume --without-hashed-db when
735           --disable-database is used.
736         + add "-e" option in ncurses/Makefile.in when generating source-files
737           to force earlier exit if the build environment fails unexpectedly
738           (prompted by patch by Adrian Bunk).
739         + change configure script to use CF_UTF8_LIB, improved variant of
740           CF_LIBUTF8.
741
742 20081012
743         + add teraterm4.59 terminfo entry, use that as primary teraterm entry, rename
744           original to teraterm2.3 -TD
745         + update "gnome" terminfo to 2.22.3 -TD
746         + update "konsole" terminfo to 1.6.6, needs today's fix for tic -TD
747         + add "aterm" terminfo -TD
748         + add "linux2.6.26" terminfo -TD
749         + add logic to tic for cancelling strings in user-defined capabilities,
750           overlooked til now.
751
752 20081011
753         + update html documentation.
754         + add -m and -s options to test/keynames.c and test/key_names.c to test
755           the meta() function with keyname() or key_name(), respectively.
756         + correct return value of key_name() on error; it is null.
757         + document some unresolved issues for rpath and pthreads in TO-DO.
758         + fix a missing prototype for ioctl() on OpenBSD in tset.c
759         + add configure option --disable-tic-depends to make explicit whether
760           tic library depends on ncurses/ncursesw library, amends change from
761           20080823 (prompted by Debian #501421).
762
763 20081004
764         + some build-fixes for configure --disable-ext-funcs (incomplete, but
765           works for C/C++ parts).
766         + improve configure-check for awks unable to handle large strings, e.g.
767           AIX 5.1 whose awk silently gives up on large printf's.
768
769 20080927
770         + fix build for --with-dmalloc by workaround for redefinition of
771           strndup between string.h and dmalloc.h
772         + fix build for --disable-sigwinch
773         + add environment variable NCURSES_GPM_TERMS to allow override to use
774           GPM on terminals other than "linux", etc.
775         + disable GPM mouse support when $TERM does not happen to contain
776           "linux", since Gpm_Open() no longer limits its assertion to terminals
777           that it might handle, e.g., within "screen" in xterm.
778         + reset mouse file-descriptor when unloading GPM library (report by
779           Miroslav Lichvar).
780         + fix build for --disable-leaks --enable-widec --with-termlib
781         > patch by Juergen Pfeifer:
782         + use improved initialization for soft-label keys in Ada95 sample code.
783         + discard internal symbol _nc_slk_format (unused since 20080112).
784         + move call of slk_paint_info() from _nc_slk_initialize() to
785           slk_intern_refresh(), improving initialization.
786
787 20080925
788         + fix bug in mouse code for GPM from 20080920 changes (reported in
789           Debian #500103, also Miroslav Lichvar).
790
791 20080920
792         + fix shared-library rules for cygwin with tic- and tinfo-libraries.
793         + fix a memory leak when failure to connect to GPM.
794         + correct check for notimeout() in wgetch() (report on linux.redhat
795           newsgroup by FurtiveBertie).
796         + add an example warning-suppression file for valgrind,
797           misc/ncurses.supp (based on example from Reuben Thomas)
798
799 20080913
800         + change shared-library configuration for OpenBSD, make rpath work.
801         + build-fixes for using libutf8, e.g., on OpenBSD 3.7
802
803 20080907
804         + corrected fix for --enable-weak-symbols (report by Frederic L W
805           Meunier).
806
807 20080906
808         + corrected gcc options for building shared libraries on IRIX64.
809         + add configure check for awk programs unable to handle big-strings,
810           use that to improve the default for --enable-big-strings option.
811         + makefile-fixes for --enable-weak-symbols (report by Frederic L W
812           Meunier).
813         + update test/configure script.
814         + adapt ifdef's from library to make test/view.c build when mbrtowc()
815           is unavailable, e.g., with HPUX 10.20.
816         + add configure check for wcsrtombs, mbsrtowcs, which are used in
817           test/ncurses.c, and use wcstombs, mbstowcs instead if available,
818           fixing build of ncursew for HPUX 11.00
819
820 20080830
821         + fixes to make Ada95 demo_panels() example work.
822         + modify Ada95 'rain' test program to accept keyboard commands like the
823           C-version.
824         + modify BeOS-specific ifdef's to build on Haiku (patch by Scott
825           Mccreary).
826         + add configure-check to see if the std namespace is legal for cerr
827           and endl, to fix a build issue with Tru64.
828         + consistently use NCURSES_BOOL in lib_gen.c
829         + filter #line's from lib_gen.c
830         + change delimiter in MKlib_gen.sh from '%' to '@', to avoid
831           substitution by IBM xlc to '#' as part of its extensions to digraphs.
832         + update config.guess, config.sub from
833                 http://savannah.gnu.org/projects/config
834           (caveat - its maintainer removed support for older Linux systems).
835
836 20080823
837         + modify configure check for pthread library to work with OSF/1 5.1,
838           which uses #define's to associate its header and library.
839         + use pthread_mutexattr_init() for initializing pthread_mutexattr_t,
840           makes threaded code work on HPUX 11.23
841         + fix a bug in demo_menus in freeing menus (cf: 20080804).
842         + modify configure script for the case where tic library is used (and
843           possibly renamed) to remove its dependency upon ncurses/ncursew
844           library (patch by Dr Werner Fink).
845         + correct manpage for menu_fore() which gave wrong default for
846           the attribute used to display a selected entry (report by Mike Gran).
847         + add Eterm-256color, Eterm-88color and rxvt-88color (prompted by
848           Debian #495815) -TD
849
850 20080816
851         + add configure option --enable-weak-symbols to turn on new feature.
852         + add configure-check for availability of weak symbols.
853         + modify linkage with pthread library to use weak symbols so that
854           applications not linked to that library will not use the mutexes,
855           etc.  This relies on gcc, and may be platform-specific (patch by Dr
856           Werner Fink).
857         + add note to INSTALL to document limitation of renaming of tic library
858           using the --with-ticlib configure option (report by Dr Werner Fink).
859         + document (in manpage) why tputs does not detect I/O errors (prompted
860           by comments by Samuel Thibault).
861         + fix remaining warnings from Klocwork report.
862
863 20080804
864         + modify _nc_panelhook() data to account for a permanent memory leak.
865         + fix memory leaks in test/demo_menus
866         + fix most warnings from Klocwork tool (report by Larry Zhou).
867         + modify configure script CF_XOPEN_SOURCE macro to add case for
868           "dragonfly" from xterm #236 changes.
869         + modify configure script --with-hashed-db to let $LIBS override the
870           search for the db library (prompted by report by Samson Pierre).
871
872 20080726
873         + build-fixes for gcc 4.3.1 (changes to gnat "warnings", and C inlining
874           thresholds).
875
876 20080713
877         + build-fix (reports by Christian Ebert, Funda Wang).
878
879 20080712
880         + compiler-warning fixes for Solaris.
881
882 20080705
883         + use NCURSES_MOUSE_MASK() in definition of BUTTON_RELEASE(), etc., to
884           make those work properly with the "--enable-ext-mouse" configuration
885           (cf: 20050205).
886         + improve documentation of build-cc options in INSTALL.
887         + work-around a bug in gcc 4.2.4 on AIX, which does not pass the
888           -static/-dynamic flags properly to linker, causing test/bs to
889           not link.
890
891 20080628
892         + correct some ifdef's needed for the broken-linker configuration.
893         + make debugging library's $BAUDRATE feature work for termcap
894           interface.
895         + make $NCURSES_NO_PADDING feature work for termcap interface (prompted
896           by comment on FreeBSD mailing list).
897         + add screen.mlterm terminfo entry -TD
898         + improve mlterm and mlterm+pcfkeys terminfo entries -TD
899
900 20080621
901         + regenerated html documentation.
902         + expand manpage description of parameters for form_driver() and
903           menu_driver() (prompted by discussion with Adam Spragg).
904         + add null-pointer checks for cur_term in baudrate() and
905           def_shell_mode(), def_prog_mode()
906         + fix some memory leaks in delscreen() and wide acs.
907
908 20080614
909         + modify test/ditto.c to illustrate multi-threaded use_screen().
910         + change CC_SHARED_OPTS from -KPIC to -xcode=pic32 for Solaris.
911         + add "-shared" option to MK_SHARED_LIB for gcc on Solaris (report
912           by Poor Yorick).
913
914 20080607
915         + finish changes to wgetch(), making it switch as needed to the
916           window's actual screen when calling wrefresh() and wgetnstr().  That
917           allows wgetch() to get used concurrently in different threads with
918           some minor restrictions, e.g., the application should not delete a
919           window which is being used in a wgetch().
920         + simplify mutex's, combining the window- and screen-mutex's.
921
922 20080531
923         + modify wgetch() to use the screen which corresponds to its window
924           parameter rather than relying on SP; some dependent functions still
925           use SP internally.
926         + factor out most use of SP in lib_mouse.c, using parameter.
927         + add internal _nc_keyname(), replacing keyname() to associate with a
928           particular SCREEN rather than the global SP.
929         + add internal _nc_unctrl(), replacing unctrl() to associate with a
930           particular SCREEN rather than the global SP.
931         + add internal _nc_tracemouse(), replacing _tracemouse() to eliminate
932           its associated global buffer _nc_globals.tracemse_buf now in SCREEN.
933         + add internal _nc_tracechar(), replacing _tracechar() to use SCREEN in
934           preference to the global _nc_globals.tracechr_buf buffer.
935
936 20080524
937         + modify _nc_keypad() to make it switch temporarily as needed to the
938           screen which must be updated.
939         + wrap cur_term variable to help make _nc_keymap() thread-safe, and
940           always set the screen's copy of this variable in set_curterm().
941         + restore curs_set() state after endwin()/refresh() (report/patch
942           Miroslav Lichvar)
943
944 20080517
945         + modify configure script to note that --enable-ext-colors and
946           --enable-ext-mouse are not experimental, but extensions from
947           the ncurses ABI 5.
948         + corrected manpage description of setcchar() (discussion with
949           Emanuele Giaquinta).
950         + fix for adding a non-spacing character at the beginning of a line
951           (report/patch by Miroslav Lichvar).
952
953 20080503
954         + modify screen.* terminfo entries using new screen+fkeys to fix
955           overridden keys in screen.rxvt (Debian #478094) -TD
956         + modify internal interfaces to reduce wgetch()'s dependency on the
957           global SP.
958         + simplify some loops with macros each_screen(), each_window() and
959           each_ripoff().
960
961 20080426
962         + continue modifying test/ditto.c toward making it demonstrate
963           multithreaded use_screen(), using fifos to pass data between screens.
964         + fix typo in form.3x (report by Mike Gran).
965
966 20080419
967         + add screen.rxvt terminfo entry -TD
968         + modify tic -f option to format spaces as \s to prevent them from
969           being lost when that is read back in unformatted strings.
970         + improve test/ditto.c, using a "talk"-style layout.
971
972 20080412
973         + change test/ditto.c to use openpty() and xterm.
974         + add locks for copywin(), dupwin(), overlap(), overlay() on their
975           window parameters.
976         + add locks for initscr() and newterm() on updates to the SCREEN
977           pointer.
978         + finish table in curs_thread.3x manpage.
979
980 20080405
981         + begin table in curs_thread.3x manpage describing the scope of data
982           used by each function (or symbol) for threading analysis.
983         + add null-pointer checks to setsyx() and getsyx() (prompted by
984           discussion by Martin v. Lowis and Jeroen Ruigrok van der Werven on
985           python-dev2 mailing list).
986
987 20080329
988         + add null-pointer checks in set_term() and delscreen().
989         + move _nc_windows into _nc_globals, since windows can be pads, which
990           are not associated with a particular screen.
991         + change use_screen() to pass the SCREEN* parameter rather than
992           stdscr to the callback function.
993         + force libtool to use tag for 'CC' in case it does not detect this,
994           e.g., on aix when using CC=powerpc-ibm-aix5.3.0.0-gcc
995           (report/patch by Michael Haubenwallner).
996         + override OBJEXT to "lo" when building with libtool, to work on
997           platforms such as AIX where libtool may use a different suffix for
998           the object files than ".o" (report/patch by Michael Haubenwallner).
999         + add configure --with-pthread option, for building with the POSIX
1000           thread library.
1001
1002 20080322
1003         + fill in extended-color pair two more places in wbkgrndset() and
1004           waddch_nosync() (prompted by Sedeno's patch).
1005         + fill in extended-color pair in _nc_build_wch() to make colors work
1006           for wide-characters using extended-colors (patch by Alejandro R
1007           Sedeno).
1008         + add x/X toggles to ncurses.c C color test to test/demo
1009           wide-characters with extended-colors.
1010         + add a/A toggles to ncurses.c c/C color tests.
1011         + modify test/ditto.c to use use_screen().
1012         + finish modifying test/rain.c to demonstrate threads.
1013
1014 20080308
1015         + start modifying test/rain.c for threading demo.
1016         + modify test/ncurses.c to make 'f' test accept the f/F/b/F/</> toggles
1017           that the 'F' accepts.
1018         + modify test/worm.c to show trail in reverse-video when other threads
1019           are working concurrently.
1020         + fix a deadlock from improper nesting of mutexes for windowlist and
1021           window.
1022
1023 20080301
1024         + fixes from 20080223 resolved issue with mutexes; change to use
1025           recursive mutexes to fix memory leak in delwin() as called from
1026           _nc_free_and_exit().
1027
1028 20080223
1029         + fix a size-difference in _nc_globals which caused hanging of mutex
1030           lock/unlock when termlib was built separately.
1031
1032 20080216
1033         + avoid using nanosleep() in threaded configuration since that often
1034           is implemented to suspend the entire process.
1035
1036 20080209
1037         + update test programs to build/work with various UNIX curses for
1038           comparisons.  This was to reinvestigate statement in X/Open curses
1039           that insnstr and winsnstr perform wrapping.  None of the Unix-branded
1040           implementations do this, as noted in manpage (cf: 20040228).
1041
1042 20080203
1043         + modify _nc_setupscreen() to set the legacy-coding value the same
1044           for both narrow/wide models.  It had been set only for wide model,
1045           but is needed to make unctrl() work with locale in the narrow model.
1046         + improve waddch() and winsch() handling of EILSEQ from mbrtowc() by
1047           using unctrl() to display illegal bytes rather than trying to append
1048           further bytes to make up a valid sequence (reported by Andrey A
1049           Chernov).
1050         + modify unctrl() to check codes in 128-255 range versus isprint().
1051           If they are not printable, and locale was set, use a "M-" or "~"
1052           sequence.
1053
1054 20080126
1055         + improve threading in test/worm.c (wrap refresh calls, and KEY_RESIZE
1056           handling).  Now it hangs in napms(), no matter whether nanosleep()
1057           or poll() or select() are used on Linux.
1058
1059 20080119
1060         + fixes to build with --disable-ext-funcs
1061         + add manpage for use_window and use_screen.
1062         + add set_tabsize() and set_escdelay() functions.
1063
1064 20080112
1065         + remove recursive-mutex definitions, finish threading demo for worm.c
1066         + remove a redundant adjustment of lines in resizeterm.c's
1067           adjust_window() which caused occasional misadjustment of stdscr when
1068           softkeys were used.
1069
1070 20080105
1071         + several improvements to terminfo entries based on xterm #230 -TD
1072         + modify MKlib_gen.sh to handle keyname/key_name prototypes, so the
1073           "link_test" builds properly.
1074         + fix for toe command-line options -u/-U to ensure filename is given.
1075         + fix allocation-size for command-line parsing in infocmp from 20070728
1076           (report by Miroslav Lichvar)
1077         + improve resizeterm() by moving ripped-off lines, and repainting the
1078           soft-keys (report by Katarina Machalkova)
1079         + add clarification in wclear's manpage noting that the screen will be
1080           cleared even if a subwindow is cleared (prompted by Christer Enfors
1081           question).
1082         + change test/ncurses.c soft-key tests to work with KEY_RESIZE.
1083
1084 20071222
1085         + continue implementing support for threading demo by adding mutex
1086           for delwin().
1087
1088 20071215
1089         + add several functions to C++ binding which wrap C functions that
1090           pass a WINDOW* parameter (request by Chris Lee).
1091
1092 20071201
1093         + add note about configure options needed for Berkeley database to the
1094           INSTALL file.
1095         + improve checks for version of Berkeley database libraries.
1096         + amend fix for rpath to not modify LDFLAGS if the platform has no
1097           applicable transformation (report by Christian Ebert, cf: 20071124).
1098
1099 20071124
1100         + modify configure option --with-hashed-db to accept a parameter which
1101           is the install-prefix of a given Berkeley Database (prompted by
1102           pierre4d2 comments).
1103         + rewrite wrapper for wcrtomb(), making it work on Solaris.  This is
1104           used in the form library to determine the length of the buffer needed
1105           by field_buffer (report by Alfred Fung).
1106         + remove unneeded window-parameter from C++ binding for wresize (report
1107           by Chris Lee).
1108
1109 20071117
1110         + modify the support for filesystems which do not support mixed-case to
1111           generate 2-character (hexadecimal) codes for the lower-level of the
1112           filesystem terminfo database (request by Michail Vidiassov).
1113         + add configure option --enable-mixed-case, to allow overriding the
1114           configure script's check if the filesystem supports mixed-case
1115           filenames.
1116         + add wresize() to C++ binding (request by Chris Lee).
1117         + define NCURSES_EXT_FUNCS and NCURSES_EXT_COLORS in curses.h to make
1118           it simpler to tell if the extended functions and/or colors are
1119           declared.
1120
1121 20071103
1122         + update memory-leak checks for changes to names.c and codes.c
1123         + correct acsc strings in h19, z100 (patch by Benjamin C W Sittler).
1124
1125 20071020
1126         + continue implementing support for threading demo by adding mutex
1127           for use_window().
1128         + add mrxvt terminfo entry, add/fix xterm building blocks for modified
1129           cursor keys -TD
1130         + compile with FreeBSD "contemporary" TTY interface (patch by
1131           Rong-En Fan).
1132
1133 20071013
1134         + modify makefile rules to allow clear, tput and tset to be built
1135           without libtic.  The other programs (infocmp, tic and toe) rely on
1136           that library.
1137         + add/modify null-pointer checks in several functions for SP and/or
1138           the WINDOW* parameter (report by Thorben Krueger).
1139         + fixes for field_buffer() in formw library (see Redhat Bugzilla
1140           #310071, patches by Miroslav Lichvar).
1141         + improve performance of NCURSES_CHAR_EQ code (patch by Miroslav
1142           Lichvar).
1143         + update/improve mlterm and rxvt terminfo entries, e.g., for
1144           the modified cursor- and keypad-keys -TD
1145
1146 20071006
1147         + add code to curses.priv.h ifdef'd with NCURSES_CHAR_EQ, which
1148           changes the CharEq() macro to an inline function to allow comparing
1149           cchar_t struct's without comparing gaps in a possibly unpacked
1150           memory layout (report by Miroslav Lichvar).
1151
1152 20070929
1153         + add new functions to lib_trace.c to setup mutex's for the _tracef()
1154           calls within the ncurses library.
1155         + for the reentrant model, move _nc_tputs_trace and _nc_outchars into
1156           the SCREEN.
1157         + start modifying test/worm.c to provide threading demo (incomplete).
1158         + separated ifdef's for some BSD-related symbols in tset.c, to make
1159           it compile on LynxOS (report by Greg Gemmer).
1160 20070915
1161         + modify Ada95/gen/Makefile to use shlib script, to simplify building
1162           shared-library configuration on platforms lacking rpath support.
1163         + build-fix for Ada95/src/Makefile to reflect changed dependency for
1164           the terminal-interface-curses-aux.adb file which is now generated.
1165         + restructuring test/worm.c, for use_window() example.
1166
1167 20070908
1168         + add use_window() and use_screen() functions, to develop into support
1169           for threaded library (incomplete).
1170         + fix typos in man/curs_opaque.3x which kept the install script from
1171           creating symbolic links to two aliases created in 20070818 (report by
1172           Rong-En Fan).
1173
1174 20070901
1175         + remove a spurious newline from output of html.m4, which caused links
1176           for Ada95 html to be incorrect for the files generated using m4.
1177         + start investigating mutex's for SCREEN manipulation (incomplete).
1178         + minor cleanup of codes.c/names.c for --enable-const
1179         + expand/revise "Routine and Argument Names" section of ncurses manpage
1180           to address report by David Givens in newsgroup discussion.
1181         + fix interaction between --without-progs/--with-termcap configure
1182           options (report by Michail Vidiassov).
1183         + fix typo in "--disable-relink" option (report by Michail Vidiassov).
1184
1185 20070825
1186         + fix a sign-extension bug in infocmp's repair_acsc() function
1187           (cf: 971004).
1188         + fix old configure script bug which prevented "--disable-warnings"
1189           option from working (patch by Mike Frysinger).
1190
1191 20070818
1192         + add 9term terminal description (request by Juhapekka Tolvanen) -TD
1193         + modify comp_hash.c's string output to avoid misinterpreting a null
1194           "\0" followed by a digit.
1195         + modify MKnames.awk and MKcodes.awk to support big-strings.
1196           This only applies to the cases (broken linker, reentrant) where
1197           the corresponding arrays are accessed via wrapper functions.
1198         + split MKnames.awk into two scripts, eliminating the shell redirection
1199           which complicated the make process and also the bogus timestamp file
1200           which was introduced to fix "make -j".
1201         + add test/test_opaque.c, test/test_arrays.c
1202         + add wgetscrreg() and wgetparent() for applications that may need it
1203           when NCURSES_OPAQUE is defined (prompted by Bryan Christ).
1204
1205 20070812
1206         + amend treatment of infocmp "-r" option to retain the 1023-byte limit
1207           unless "-T" is given (cf: 981017).
1208         + modify comp_captab.c generation to use big-strings.
1209         + make _nc_capalias_table and _nc_infoalias_table private accessed via
1210           _nc_get_alias_table() since the tables are used only within the tic
1211           library.
1212         + modify configure script to skip Intel compiler in CF_C_INLINE.
1213         + make _nc_info_hash_table and _nc_cap_hash_table private accessed via
1214           _nc_get_hash_table() since the tables are used only within the tic
1215           library.
1216
1217 20070728
1218         + make _nc_capalias_table and _nc_infoalias_table private, accessed via
1219           _nc_get_alias_table() since they are used only by parse_entry.c
1220         + make _nc_key_names private since it is used only by lib_keyname.c
1221         + add --disable-big-strings configure option to control whether
1222           unctrl.c is generated using the big-string optimization - which may
1223           use strings longer than supported by a given compiler.
1224         + reduce relocation tables for tic, infocmp by changing type of
1225           internal hash tables to short, and make those private symbols.
1226         + eliminate large fixed arrays from progs/infocmp.c
1227
1228 20070721
1229         + change winnstr() to stop at the end of the line (cf: 970315).
1230         + add test/test_get_wstr.c
1231         + add test/test_getstr.c
1232         + add test/test_inwstr.c
1233         + add test/test_instr.c
1234
1235 20070716
1236         + restore a call to obtain screen-size in _nc_setupterm(), which
1237           is used in tput and other non-screen applications via setupterm()
1238           (Debian #433357, reported by Florent Bayle, Christian Ohm,
1239           cf: 20070310).
1240
1241 20070714
1242         + add test/savescreen.c test-program
1243         + add check to trace-file open, if the given name is a directory, add
1244           ".log" to the name and try again.
1245         + add konsole-256color entry -TD
1246         + add extra gcc warning options from xterm.
1247         + minor fixes for ncurses/hashmap test-program.
1248         + modify configure script to quiet c++ build with libtool when the
1249           --disable-echo option is used.
1250         + modify configure script to disable ada95 if libtool is selected,
1251           writing a warning message (addresses FreeBSD ports/114493).
1252         + update config.guess, config.sub
1253
1254 20070707
1255         + add continuous-move "M" to demo_panels to help test refresh changes.
1256         + improve fix for refresh of window on top of multi-column characters,
1257           taking into account some split characters on left/right window
1258           boundaries.
1259
1260 20070630
1261         + add "widec" row to _tracedump() output to help diagnose remaining
1262           problems with multi-column characters.
1263         + partial fix for refresh of window on top of multi-column characters
1264           which are partly overwritten (report by Sadrul H Chowdhury).
1265         + ignore A_CHARTEXT bits in vidattr() and vid_attr(), in case
1266           multi-column extension bits are passed there.
1267         + add setlocale() call to demo_panels.c, needed for wide-characters.
1268         + add some output flags to _nc_trace_ttymode to help diagnose a bug
1269           report by Larry Virden, i.e., ONLCR, OCRNL, ONOCR and ONLRET,
1270
1271 20070623
1272         + add test/demo_panels.c
1273         + implement opaque version of setsyx() and getsyx().
1274
1275 20070612
1276         + corrected xterm+pcf2 terminfo modifiers for F1-F4, to match xterm
1277           #226 -TD
1278         + split-out key_name() from MKkeyname.awk since it now depends upon
1279           wunctrl() which is not in libtinfo (report by Rong-En Fan).
1280
1281 20070609
1282         + add test/key_name.c
1283         + add stdscr cases to test/inchs.c and test/inch_wide.c
1284         + update test/configure
1285         + correct formatting of DEL (0x7f) in _nc_vischar().
1286         + null-terminate result of wunctrl().
1287         + add null-pointer check in key_name() (report by Andreas Krennmair,
1288           cf: 20020901).
1289
1290 20070602
1291         + adapt mouse-handling code from menu library in form-library
1292           (discussion with Clive Nicolson).
1293         + add a modification of test/dots.c, i.e., test/dots_mvcur.c to
1294           illustrate how to use mvcur().
1295         + modify wide-character flavor of SetAttr() to preserve the
1296           WidecExt() value stored in the .attr field, e.g., in case it
1297           is overwritten by chgat (report by Aleksi Torhamo).
1298         + correct buffer-size for _nc_viswbuf2n() (report by Aleksi Torhamo).
1299         + build-fixes for Solaris 2.6 and 2.7 (patch by Peter O'Gorman).
1300
1301 20070526
1302         + modify keyname() to use "^X" form only if meta() has been called, or
1303           if keyname() is called without initializing curses, e.g., via
1304           initscr() or newterm() (prompted by LinuxBase #1604).
1305         + document some portability issues in man/curs_util.3x
1306         + add a shadow copy of TTY buffer to _nc_prescreen to fix applications
1307           broken by moving that data into SCREEN (cf: 20061230).
1308
1309 20070512
1310         + add 'O' (wide-character panel test) in ncurses.c to demonstrate a
1311           problem reported by Sadrul H Chowdhury with repainting parts of
1312           a fullwidth cell.
1313         + modify slk_init() so that if there are preceding calls to
1314           ripoffline(), those affect the available lines for soft-keys (adapted
1315           from patch by Clive Nicolson).
1316         + document some portability issues in man/curs_getyx.3x
1317
1318 20070505
1319         + fix a bug in Ada95/samples/ncurses which caused a variable to
1320           become uninitialized in the "b" test.
1321         + fix Ada95/gen/Makefile.in adahtml rule to account for recent
1322           movement of files, fix a few incorrect manpage references in the
1323           generated html.
1324         + add Ada95 binding to _nc_freeall() as Curses_Free_All to help with
1325           memory-checking.
1326         + correct some functions in Ada95 binding which were using return value
1327           from C where none was returned:  idcok(), immedok() and wtimeout().
1328         + amend recent changes for Ada95 binding to make it build with
1329           Cygwin's linker, e.g., with configure options
1330                 --enable-broken-linker --with-ticlib
1331
1332 20070428
1333         + add a configure check for gcc's options for inlining, use that to
1334           quiet a warning message where gcc's default behavior changed from
1335           3.x to 4.x.
1336         + improve warning message when checking if GPM is linked to curses
1337           library by not warning if its use of "wgetch" is via a weak symbol.
1338         + add loader options when building with static libraries to ensure that
1339           an installed shared library for ncurses does not conflict.  This is
1340           reported as problem with Tru64, but could affect other platforms
1341           (report Martin Mokrejs, analysis by Tim Mooney).
1342         + fix build on cygwin after recent ticlib/termlib changes, i.e.,
1343           + adjust TINFO_SUFFIX value to work with cygwin's dll naming
1344           + revert a change from 20070303 which commented out dependency of
1345             SHLIB_LIST in form/menu/panel/c++ libraries.
1346         + fix initialization of ripoff stack pointer (cf: 20070421).
1347
1348 20070421
1349         + move most static variables into structures _nc_globals and
1350           _nc_prescreen, to simplify storage.
1351         + add/use configure script macro CF_SIG_ATOMIC_T, use the corresponding
1352           type for data manipulated by signal handlers (prompted by comments
1353           in mailing.openbsd.bugs newsgroup).
1354         + modify CF_WITH_LIBTOOL to allow one to pass options such as -static
1355           to the libtool create- and link-operations.
1356
1357 20070414
1358         + fix whitespace in curs_opaque.3x which caused a spurious ';' in
1359           the installed aliases (report by Peter Santoro).
1360         + fix configure script to not try to generate adacurses-config when
1361           Ada95 tree is not built.
1362
1363 20070407
1364         + add man/curs_legacy.3x, man/curs_opaque.3x
1365         + fix acs_map binding for Ada95 when --enable-reentrant is used.
1366         + add adacurses-config to the Ada95 install, based on version from
1367           FreeBSD port, in turn by Juergen Pfeifer in 2000 (prompted by
1368           comment on comp.lang.ada newsgroup).
1369         + fix includes in c++ binding to build with Intel compiler
1370           (cf: 20061209).
1371         + update install rule in Ada95 to use mkdirs.sh
1372         > other fixes prompted by inspection for Coverity report:
1373         + modify ifdef's for c++ binding to use try/catch/throw statements
1374         + add a null-pointer check in tack/ansi.c request_cfss()
1375         + fix a memory leak in ncurses/base/wresize.c
1376         + corrected check for valid memu/meml capabilities in
1377           progs/dump_entry.c when handling V_HPUX case.
1378         > fixes based on Coverity report:
1379         + remove dead code in test/bs.c
1380         + remove dead code in test/demo_defkey.c
1381         + remove an unused assignment in progs/infocmp.c
1382         + fix a limit check in tack/ansi.c tools_charset()
1383         + fix tack/ansi.c tools_status() to perform the VT320/VT420
1384           tests in request_cfss().  The function had exited too soon.
1385         + fix a memory leak in tic.c's make_namelist()
1386         + fix a couple of places in tack/output.c which did not check for EOF.
1387         + fix a loop-condition in test/bs.c
1388         + add index checks in lib_color.c for color palettes
1389         + add index checks in progs/dump_entry.c for version_filter() handling
1390           of V_BSD case.
1391         + fix a possible null-pointer dereference in copywin()
1392         + fix a possible null-pointer dereference in waddchnstr()
1393         + add a null-pointer check in _nc_expand_try()
1394         + add a null-pointer check in tic.c's make_namelist()
1395         + add a null-pointer check in _nc_expand_try()
1396         + add null-pointer checks in test/cardfile.c
1397         + fix a double-free in ncurses/tinfo/trim_sgr0.c
1398         + fix a double-free in ncurses/base/wresize.c
1399         + add try/catch block to c++/cursesmain.cc
1400
1401 20070331
1402         + modify Ada95 binding to build with --enable-reentrant by wrapping
1403           global variables (bug: acs_map does not yet work).
1404         + modify Ada95 binding to use the new access-functions, allowing it
1405           to build/run when NCURSES_OPAQUE is set.
1406         + add access-functions and macros to return properties of the WINDOW
1407           structure, e.g., when NCURSES_OPAQUE is set.
1408         + improved install-sh's quoting.
1409         + use mkdirs.sh rather than mkinstalldirs, e.g., to use fixes from
1410           other programs.
1411
1412 20070324
1413         + eliminate part of the direct use of WINDOW data from Ada95 interface.
1414         + fix substitutions for termlib filename to make configure option
1415           --enable-reentrant work with --with-termlib.
1416         + change a constructor for NCursesWindow to allow compiling with
1417           NCURSES_OPAQUE set, since we cannot pass a reference to
1418           an opaque pointer.
1419
1420 20070317
1421         + ignore --with-chtype=unsigned since unsigned is always added to
1422           the type in curses.h; do the same for --with-mmask-t.
1423         + change warning regarding --enable-ext-colors and wide-character
1424           in the configure script to an error.
1425         + tweak error message in CF_WITH_LIBTOOL to distinguish other programs
1426           such as Darwin's libtool program (report by Michail Vidiassov)
1427         + modify edit_man.sh to allow for multiple substitutions per line.
1428         + set locale in misc/ncurses-config.in since it uses a range
1429         + change permissions libncurses++.a install (report by Michail
1430           Vidiassov).
1431         + corrected length of temporary buffer in wide-character version
1432           of set_field_buffer() (related to report by Bryan Christ).
1433
1434 20070311
1435         + fix mk-1st.awk script install_shlib() function, broken in 20070224
1436           changes for cygwin (report by  Michail Vidiassov).
1437
1438 20070310
1439         + increase size of array in _nc_visbuf2n() to make "tic -v" work
1440           properly in its similar_sgr() function (report/analysis by Peter
1441           Santoro).
1442         + add --enable-reentrant configure option for ongoing changes to
1443           implement a reentrant version of ncurses:
1444           + libraries are suffixed with "t"
1445           + wrap several global variables (curscr, newscr, stdscr, ttytype,
1446             COLORS, COLOR_PAIRS, COLS, ESCDELAY, LINES and TABSIZE) as
1447             functions returning values stored in SCREEN or cur_term.
1448           + move some initialization (LINES, COLS) from lib_setup.c,
1449             i.e., setupterm() to _nc_setupscreen(), i.e., newterm().
1450
1451 20070303
1452         + regenerated html documentation.
1453         + add NCURSES_OPAQUE symbol to curses.h, will use to make structs
1454           opaque in selected configurations.
1455         + move the chunk in lib_acs.c which resets acs capabilities when
1456           running on a terminal whose locale interferes with those into
1457           _nc_setupscreen(), so the libtinfo/libtinfow files can be made
1458           identical (requested by Miroslav Lichvar).
1459         + do not use configure variable SHLIB_LIBS for building libraries
1460           outside the ncurses directory, since that symbol is customized
1461           only for that directory, and using it introduces an unneeded
1462           dependency on libdl (requested by Miroslav Lichvar).
1463         + modify mk-1st.awk so the generated makefile rules for linking or
1464           installing shared libraries do not first remove the library, in
1465           case it is in use, e.g., libncurses.so by /bin/sh (report by Jeff
1466           Chua).
1467         + revised section "Using NCURSES under XTERM" in ncurses-intro.html
1468           (prompted by newsgroup comment by Nick Guenther).
1469
1470 20070224
1471         + change internal return codes of _nc_wgetch() to check for cases
1472           where KEY_CODE_YES should be returned, e.g., if a KEY_RESIZE was
1473           ungetch'd, and read by wget_wch().
1474         + fix static-library build broken in 20070217 changes to remove "-ldl"
1475           (report by Miroslav Lichvar).
1476         + change makefile/scripts for cygwin to allow building termlib.
1477         + use Form_Hook in manpages to match form.h
1478         + use Menu_Hook in manpages, as well as a few places in menu.h
1479         + correct form- and menu-manpages to use specific Field_Options,
1480           Menu_Options and Item_Options types.
1481         + correct prototype for _tracechar() in manpage (cf: 20011229).
1482         + correct prototype for wunctrl() in manpage.
1483
1484 20070217
1485         + fixes for $(TICS_LIST) in ncurses/Makefile (report by Miroslav
1486           Lichvar).
1487         + modify relinking of shared libraries to apply only when rpath is
1488           enabled, and add --disable-relink option which can be used to
1489           disable the feature altogether (reports by Michail Vidiassov,
1490           Adam J Richter).
1491         + fix --with-termlib option for wide-character configuration, stripping
1492           the "w" suffix in one place (report by Miroslav Lichvar).
1493         + remove "-ldl" from some library lists to reduce dependencies in
1494           programs (report by Miroslav Lichvar).
1495         + correct description of --enable-signed-char in configure --help
1496           (report by Michail Vidiassov).
1497         + add pattern for GNU/kFreeBSD configuration to CF_XOPEN_SOURCE,
1498           which matches an earlier change to CF_SHARED_OPTS, from xterm #224
1499           fixes.
1500         + remove "${DESTDIR}" from -install_name option used for linking
1501           shared libraries on Darwin (report by Michail Vidiassov).
1502
1503 20070210
1504         + add test/inchs.c, test/inch_wide.c, to test win_wchnstr().
1505         + remove libdl from library list for termlib (report by Miroslav
1506           Lichvar).
1507         + fix configure.in to allow --without-progs --with-termlib (patch by
1508           Miroslav Lichvar).
1509         + modify win_wchnstr() to ensure that only a base cell is returned
1510           for each multi-column character (prompted by report by Wei Kong
1511           regarding change in mvwin_wch() cf: 20041023).
1512
1513 20070203
1514         + modify fix_wchnstr() in form library to strip attributes (and color)
1515           from the cchar_t array (field cells) read from a field's window.
1516           Otherwise, when copying the field cells back to the window, the
1517           associated color overrides the field's background color (report by
1518           Ricardo Cantu).
1519         + improve tracing for form library, showing created forms, fields, etc.
1520         + ignore --enable-rpath configure option if --with-shared was omitted.
1521         + add _nc_leaks_tinfo(), _nc_free_tic(), _nc_free_tinfo() entrypoints
1522           to allow leak-checking when both tic- and tinfo-libraries are built.
1523         + drop CF_CPP_VSCAN_FUNC macro from configure script, since C++ binding
1524           no longer relies on it.
1525         + disallow combining configure script options --with-ticlib and
1526           --enable-termcap (report by Rong-En Fan).
1527         + remove tack from ncurses tree.
1528
1529 20070128
1530         + fix typo in configure script that broke --with-termlib option
1531           (report by Rong-En Fan).
1532
1533 20070127
1534         + improve fix for FreeBSD gnu/98975, to allow for null pointer passed
1535           to tgetent() (report by Rong-en Fan).
1536         + update tack/HISTORY and tack/README to tell how to build it after
1537           it is removed from the ncurses tree.
1538         + fix configure check for libtool's version to trim blank lines
1539           (report by sci-fi@hush.ai).
1540         + review/eliminate other original-file artifacts in cursesw.cc, making
1541           its license consistent with ncurses.
1542         + use ncurses vw_scanw() rather than reading into a fixed buffer in
1543           the c++ binding for scanw() methods (prompted by report by Nuno Dias).
1544         + eliminate fixed-buffer vsprintf() calls in c++ binding.
1545
1546 20070120
1547         + add _nc_leaks_tic() to separate leak-checking of tic library from
1548           term/ncurses libraries, and thereby eliminate a library dependency.
1549         + fix test/mk-test.awk to ignore blank lines.
1550         + correct paths in include/headers, for --srcdir (patch by Miroslav
1551           Lichvar).
1552
1553 20070113
1554         + add a break-statement in misc/shlib to ensure that it exits on the
1555           _first_ matched directory (report by Paul Novak).
1556         + add tack/configure, which can be used to build tack outside the
1557           ncurses build-tree.
1558         + add --with-ticlib option, to build/install the tic-support functions
1559           in a separate library (suggested by Miroslav Lichvar).
1560
1561 20070106
1562         + change MKunctrl.awk to reduce relocation table for unctrl.o
1563         + change MKkeyname.awk to reduce relocation table for keyname.o
1564           (patch by Miroslav Lichvar).
1565
1566 20061230
1567         + modify configure check for libtool's version to trim blank lines
1568           (report by sci-fi@hush.ai).
1569         + modify some modules to allow them to be reentrant if _REENTRANT is
1570           defined: lib_baudrate.c, resizeterm.c (local data only)
1571         + eliminate static data from some modules: add_tries.c, hardscroll.c,
1572           lib_ttyflags.c, lib_twait.c
1573         + improve manpage install to add aliases for the transformed program
1574           names, e.g., from --program-prefix.
1575         + used linklint to verify links in the HTML documentation, made fixes
1576           to manpages as needed.
1577         + fix a typo in curs_mouse.3x (report by William McBrine).
1578         + fix install-rule for ncurses5-config to make the bin-directory.
1579
1580 20061223
1581         + modify configure script to omit the tic (terminfo compiler) support
1582           from ncurses library if --without-progs option is given.
1583         + modify install rule for ncurses5-config to do this via "install.libs"
1584         + modify shared-library rules to allow FreeBSD 3.x to use rpath.
1585         + update config.guess, config.sub
1586
1587 20061217 5.6 release for upload to ftp.gnu.org
1588
1589 20061217
1590         + add ifdef's for <wctype.h> for HPUX, which has the corresponding
1591           definitions in <wchar.h>.
1592         + revert the va_copy() change from 20061202, since it was neither
1593           correct nor portable.
1594         + add $(LOCAL_LIBS) definition to progs/Makefile.in, needed for
1595           rpath on Solaris.
1596         + ignore wide-acs line-drawing characters that wcwidth() claims are
1597           not one-column.  This is a workaround for Solaris' broken locale
1598           support.
1599
1600 20061216
1601         + modify configure --with-gpm option to allow it to accept a parameter,
1602           i.e., the name of the dynamic GPM library to load via dlopen()
1603           (requested by Bryan Henderson).
1604         + add configure option --with-valgrind, changes from vile.
1605         + modify configure script AC_TRY_RUN and AC_TRY_LINK checks to use
1606           'return' in preference to 'exit()'.
1607
1608 20061209
1609         + change default for --with-develop back to "no".
1610         + add XTABS to tracing of TTY bits.
1611         + updated autoconf patch to ifdef-out the misfeature which declares
1612           exit() for configure tests.  This fixes a redefinition warning on
1613           Solaris.
1614         + use ${CC} rather than ${LD} in shared library rules for IRIX64,
1615           Solaris to help ensure that initialization sections are provided for
1616           extra linkage requirements, e.g., of C++ applications (prompted by
1617           comment by Casper Dik in newsgroup).
1618         + rename "$target" in CF_MAN_PAGES to make it easier to distinguish
1619           from the autoconf predefined symbol.  There was no conflict,
1620           since "$target" was used only in the generated edit_man.sh file,
1621           but SuSE's rpm package contains a patch.
1622
1623 20061202
1624         + update man/term.5 to reflect extended terminfo support and hashed
1625           database configuration.
1626         + updates for test/configure script.
1627         + adapted from SuSE rpm package:
1628           + remove long-obsolete workaround for broken-linker which declared
1629             cur_term in tic.c
1630           + improve error recovery in PUTC() macro when wcrtomb() does not
1631             return usable results for an 8-bit character.
1632         + patches from rpm package (SuSE):
1633           + use va_copy() in extra varargs manipulation for tracing version
1634             of printw, etc.
1635           + use a va_list rather than a null in _nc_freeall()'s call to
1636             _nc_printf_string().
1637         + add some see-also references in manpages to show related
1638           wide-character functions (suggested by Claus Fischer).
1639
1640 20061125
1641         + add a check in lib_color.c to ensure caller does not increase COLORS
1642           above max_colors, which is used as an array index (discussion with
1643           Simon Sasburg).
1644         + add ifdef's allowing ncurses to be built with tparm() using either
1645           varargs (the existing status), or using a fixed-parameter list (to
1646           match X/Open).
1647
1648 20061104
1649         + fix redrawing of windows other than stdscr using wredrawln() by
1650           touching the corresponding rows in curscr (discussion with Dan
1651           Gookin).
1652         + add test/redraw.c
1653         + add test/echochar.c
1654         + review/cleanup manpage descriptions of error-returns for form- and
1655           menu-libraries (prompted by FreeBSD docs/46196).
1656
1657 20061028
1658         + add AUTHORS file -TD
1659         + omit the -D options from output of the new config script --cflags
1660           option (suggested by Ralf S Engelschall).
1661         + make NCURSES_INLINE unconditionally defined in curses.h
1662
1663 20061021
1664         + revert change to accommodate bash 3.2, since that breaks other
1665           platforms, e.g., Solaris.
1666         + minor fixes to NEWS file to simplify scripting to obtain list of
1667           contributors.
1668         + improve some shared-library configure scripting for Linux, FreeBSD
1669           and NetBSD to make "--with-shlib-version" work.
1670         + change configure-script rules for FreeBSD shared libraries to allow
1671           for rpath support in versions past 3.
1672         + use $(DESTDIR) in makefile rules for installing/uninstalling the
1673           package config script (reports/patches by Christian Wiese,
1674           Ralf S Engelschall).
1675         + fix a warning in the configure script for NetBSD 2.0, working around
1676           spurious blanks embedded in its ${MAKEFLAGS} symbol.
1677         + change test/Makefile to simplify installing test programs in a
1678           different directory when --enable-rpath is used.
1679
1680 20061014
1681         + work around bug in bash 3.2 by adding extra quotes (Jim Gifford).
1682         + add/install a package config script, e.g., "ncurses5-config" or
1683           "ncursesw5-config", according to configuration options.
1684
1685 20061007
1686         + add several GNU Screen terminfo variations with 16- and 256-colors,
1687           and status line (Alain Bench).
1688         + change the way shared libraries (other than libtool) are installed.
1689           Rather than copying the build-tree's libraries, link the shared
1690           objects into the install directory.  This makes the --with-rpath
1691           option work except with $(DESTDIR) (cf: 20000930).
1692
1693 20060930
1694         + fix ifdef in c++/internal.h for QNX 6.1
1695         + test-compiled with (old) egcs-1.1.2, modified configure script to
1696           not unset the $CXX and related variables which would prevent this.
1697         + fix a few terminfo.src typos exposed by improvments to "-f" option.
1698         + improve infocmp/tic "-f" option formatting.
1699
1700 20060923
1701         + make --disable-largefile option work (report by Thomas M Ott).
1702         + updated html documentation.
1703         + add ka2, kb1, kb3, kc2 to vt220-keypad as an extension -TD
1704         + minor improvements to rxvt+pcfkeys -TD
1705
1706 20060916
1707         + move static data from lib_mouse.c into SCREEN struct.
1708         + improve ifdef's for _POSIX_VDISABLE in tset to work with Mac OS X
1709           (report by Michail Vidiassov).
1710         + modify CF_PATH_SYNTAX to ensure it uses the result from --prefix
1711           option (from lynx changes) -TD
1712         + adapt AC_PROG_EGREP check, noting that this is likely to be another
1713           place aggravated by POSIXLY_CORRECT.
1714         + modify configure check for awk to ensure that it is found (prompted
1715           by report by Christopher Parker).
1716         + update config.sub
1717
1718 20060909
1719         + add kon, kon2 and jfbterm terminfo entry (request by Till Maas) -TD
1720         + remove invis capability from klone+sgr, mainly used by linux entry,
1721           since it does not really do this -TD
1722
1723 20060903
1724         + correct logic in wadd_wch() and wecho_wch(), which did not guard
1725           against passing the multi-column attribute into a call on waddch(),
1726           e.g., using data returned by win_wch() (cf: 20041023)
1727           (report by Sadrul H Chowdhury).
1728
1729 20060902
1730         + fix kterm's acsc string -TD
1731         + fix for change to tic/infocmp in 20060819 to ensure no blank is
1732           embedded into a termcap description.
1733         + workaround for 20050806 ifdef's change to allow visbuf.c to compile
1734           when using --with-termlib --with-trace options.
1735         + improve tgetstr() by making the return value point into the user's
1736           buffer, if provided (patch by Miroslav Lichvar (see Redhat Bugzilla
1737           #202480)).
1738         + correct libraries needed for foldkeys (report by Stanislav Ievlev)
1739
1740 20060826
1741         + add terminfo entries for xfce terminal (xfce) and multi gnome
1742           terminal (mgt) -TD
1743         + add test/foldkeys.c
1744
1745 20060819
1746         + modify tic and infocmp to avoid writing trailing blanks on terminfo
1747           source output (Debian #378783).
1748         + modify configure script to ensure that if the C compiler is used
1749           rather than the loader in making shared libraries, the $(CFLAGS)
1750           variable is also used (Redhat Bugzilla #199369).
1751         + port hashed-db code to db2 and db3.
1752         + fix a bug in tgetent() from 20060625 and 20060715 changes
1753           (patch/analysis by Miroslav Lichvar (see Redhat Bugzilla #202480)).
1754
1755 20060805
1756         + updated xterm function-keys terminfo to match xterm #216 -TD
1757         + add configure --with-hashed-db option (tested only with FreeBSD 6.0,
1758           e.g., the db 1.8.5 interface).
1759
1760 20060729
1761         + modify toe to access termcap data, e.g., via cgetent() functions,
1762           or as a text file if those are not available.
1763         + use _nc_basename() in tset to improve $SHELL check for csh/sh.
1764         + modify _nc_read_entry() and _nc_read_termcap_entry() so infocmp,
1765           can access termcap data when the terminfo database is disabled.
1766
1767 20060722
1768         + widen the test for xterm kmous a little to allow for other strings
1769           than \E[M, e.g., for xterm-sco functionality in xterm.
1770         + update xterm-related terminfo entries to match xterm patch #216 -TD
1771         + update config.guess, config.sub
1772
1773 20060715
1774         + fix for install-rule in Ada95 to add terminal_interface.ads
1775           and terminal_interface.ali (anonymous posting in comp.lang.ada).
1776         + correction to manpage for getcchar() (report by William McBrine).
1777         + add test/chgat.c
1778         + modify wchgat() to mark updated cells as changed so a refresh will
1779           repaint those cells (comments by Sadrul H Chowdhury and William
1780           McBrine).
1781         + split up dependency of names.c and codes.c in ncurses/Makefile to
1782           work with parallel make (report/analysis by Joseph S Myers).
1783         + suppress a warning message (which is ignored) for systems without
1784           an ldconfig program (patch by Justin Hibbits).
1785         + modify configure script --disable-symlinks option to allow one to
1786           disable symlink() in tic even when link() does not work (report by
1787           Nigel Horne).
1788         + modify MKfallback.sh to use tic -x when constructing fallback tables
1789           to allow extended capabilities to be retrieved from a fallback entry.
1790         + improve leak-checking logic in tgetent() from 20060625 to ensure that
1791           it does not free the current screen (report by Miroslav Lichvar).
1792
1793 20060708
1794         + add a check for _POSIX_VDISABLE in tset (NetBSD #33916).
1795         + correct _nc_free_entries() and related functions used for memory leak
1796           checking of tic.
1797
1798 20060701
1799         + revert a minor change for magic-cookie support from 20060513, which
1800           caused unexpected reset of attributes, e.g., when resizing test/view
1801           in color mode.
1802         + note in clear manpage that the program ignores command-line
1803           parameters (prompted by Debian #371855).
1804         + fixes to make lib_gen.c build properly with changes to the configure
1805           --disable-macros option and NCURSES_NOMACROS (cf:  20060527)
1806         + update/correct several terminfo entries -TD
1807         + add some notes regarding copyright to terminfo.src -TD
1808
1809 20060625
1810         + fixes to build Ada95 binding with gnat-4.1.0
1811         + modify read_termtype() so the term_names data is always allocated as
1812           part of the str_table, a better fix for a memory leak (cf: 20030809).
1813         + reduce memory leaks in repeated calls to tgetent() by remembering the
1814           last TERMINAL* value allocated to hold the corresponding data and
1815           freeing that if the tgetent() result buffer is the same as the
1816           previous call (report by "Matt" for FreeBSD gnu/98975).
1817         + modify tack to test extended capability function-key strings.
1818         + improved gnome terminfo entry (GenToo #122566).
1819         + improved xterm-256color terminfo entry (patch by Alain Bench).
1820
1821 20060617
1822         + fix two small memory leaks related to repeated tgetent() calls
1823           with TERM=screen (report by "Matt" for FreeBSD gnu/98975).
1824         + add --enable-signed-char to simplify Debian package.
1825         + reduce name-pollution in term.h by removing #define's for HAVE_xxx
1826           symbols.
1827         + correct typo in curs_terminfo.3x (Debian #369168).
1828
1829 20060603
1830         + enable the mouse in test/movewindow.c
1831         + improve a limit-check in frm_def.c (John Heasley).
1832         + minor copyright fixes.
1833         + change configure script to produce test/Makefile from data file.
1834
1835 20060527
1836         + add a configure option --enable-wgetch-events to enable
1837           NCURSES_WGETCH_EVENTS, and correct the associated loop-logic in
1838           lib_twait.c (report by Bernd Jendrissek).
1839         + remove include/nomacros.h from build, since the ifdef for
1840           NCURSES_NOMACROS makes that obsolete.
1841         + add entrypoints for some functions which were only provided as macros
1842           to make NCURSES_NOMACROS ifdef work properly:  getcurx(), getcury(),
1843           getbegx(), getbegy(), getmaxx(), getmaxy(), getparx() and getpary(),
1844           wgetbkgrnd().
1845         + provide ifdef for NCURSES_NOMACROS which suppresses most macro
1846           definitions from curses.h, i.e., where a macro is defined to override
1847           a function to improve performance.  Allowing a developer to suppress
1848           these definitions can simplify some application (discussion with
1849           Stanislav Ievlev).
1850         + improve description of memu/meml in terminfo manpage.
1851
1852 20060520
1853         + if msgr is false, reset video attributes when doing an automargin
1854           wrap to the next line.  This makes the ncurses 'k' test work properly
1855           for hpterm.
1856         + correct caching of keyname(), which was using only half of its table.
1857         + minor fixes to memory-leak checking.
1858         + make SCREEN._acs_map and SCREEN._screen_acs_map pointers rather than
1859           arrays, making ACS_LEN less visible to applications (suggested by
1860           Stanislav Ievlev).
1861         + move chunk in SCREEN ifdef'd for USE_WIDEC_SUPPORT to the end, so
1862           _screen_acs_map will have the same offset in both ncurses/ncursesw,
1863           making the corresponding tinfo/tinfow libraries binary-compatible
1864           (cf: 20041016, report by Stanislav Ievlev).
1865
1866 20060513
1867         + improve debug-tracing for EmitRange().
1868         + change default for --with-develop to "yes".  Add NCURSES_NO_HARD_TABS
1869           and NCURSES_NO_MAGIC_COOKIE environment variables to allow runtime
1870           suppression of the related hard-tabs and xmc-glitch features.
1871         + add ncurses version number to top-level manpages, e.g., ncurses, tic,
1872           infocmp, terminfo as well as form, menu, panel.
1873         + update config.guess, config.sub
1874         + modify ncurses.c to work around a bug in NetBSD 3.0 curses
1875           (field_buffer returning null for a valid field).  The 'r' test
1876           appears to not work with that configuration since the new_fieldtype()
1877           function is broken in that implementation.
1878
1879 20060506
1880         + add hpterm-color terminfo entry -TD
1881         + fixes to compile test-programs with HPUX 11.23
1882
1883 20060422
1884         + add copyright notices to files other than those that are generated,
1885           data or adapted from pdcurses (reports by William McBrine, David
1886           Taylor).
1887         + improve rendering on hpterm by not resetting attributes at the end
1888           of doupdate() if the terminal has the magic-cookie feature (report
1889           by Bernd Rieke).
1890         + add 256color variants of terminfo entries for programs which are
1891           reported to implement this feature -TD
1892
1893 20060416
1894         + fix typo in change to NewChar() macro from 20060311 changes, which
1895           broke tab-expansion (report by Frederic L W Meunier).
1896
1897 20060415
1898         + document -U option of tic and infocmp.
1899         + modify tic/infocmp to suppress smacs/rmacs when acsc is suppressed
1900           due to size limit, e.g., converting to termcap format.  Also
1901           suppress them if the output format does not contain acsc and it
1902           was not VT100-like, i.e., a one-one mapping (Novell #163715).
1903         + add configure check to ensure that SIGWINCH is defined on platforms
1904           such as OS X which exclude that when _XOPEN_SOURCE, etc., are
1905           defined (report by Nicholas Cole)
1906
1907 20060408
1908         + modify write_object() to not write coincidental extensions of an
1909           entry made due to it being referenced in a use= clause (report by
1910           Alain Bench).
1911         + another fix for infocmp -i option, which did not ensure that some
1912           escape sequences had comparable prefixes (report by Alain Bench).
1913
1914 20060401
1915         + improve discussion of init/reset in terminfo and tput manpages
1916           (report by Alain Bench).
1917         + use is3 string for a fallback of rs3 in the reset program; it was
1918           using is2 (report by Alain Bench).
1919         + correct logic for infocmp -i option, which did not account for
1920           multiple digits in a parameter (cf: 20040828) (report by Alain
1921           Bench).
1922         + move _nc_handle_sigwinch() to lib_setup.c to make --with-termlib
1923           option work after 20060114 changes (report by Arkadiusz Miskiewicz).
1924         + add copyright notices to test-programs as needed (report by William
1925           McBrine).
1926
1927 20060318
1928         + modify ncurses.c 'F' test to combine the wide-characters with color
1929           and/or video attributes.
1930         + modify test/ncurses to use CTL/Q or ESC consistently for exiting
1931           a test-screen (some commands used 'x' or 'q').
1932
1933 20060312
1934         + fix an off-by-one in the scrolling-region change (cf_ 20060311).
1935
1936 20060311
1937         + add checks in waddchnstr() and wadd_wchnstr() to stop copying when
1938           a null character is found (report by Igor Bogomazov).
1939         + modify progs/Makefile.in to make "tput init" work properly with
1940           cygwin, i.e., do not pass a ".exe" in the reference string used
1941           in check_aliases (report by Samuel Thibault).
1942         + add some checks to ensure current position is within scrolling
1943           region before scrolling on a new line (report by Dan Gookin).
1944         + change some NewChar() usage to static variables to work around
1945           stack garbage introduced when cchar_t is not packed (Redhat #182024).
1946
1947 20060225
1948         + workarounds to build test/movewindow with PDcurses 2.7.
1949         + fix for nsterm-16color entry (patch by Alain Bench).
1950         + correct a typo in infocmp manpage (Debian #354281).
1951
1952 20060218
1953         + add nsterm-16color entry -TD
1954         + updated mlterm terminfo entry -TD
1955         + remove 970913 feature for copying subwindows as they are moved in
1956           mvwin() (discussion with Bryan Christ).
1957         + modify test/demo_menus.c to demonstrate moving a menu (both the
1958           window and subwindow) using shifted cursor-keys.
1959         + start implementing recursive mvwin() in movewindow.c (incomplete).
1960         + add a fallback definition for GCC_PRINTFLIKE() in test.priv.h,
1961           for movewindow.c (report by William McBrine).
1962         + add help-message to test/movewindow.c
1963
1964 20060211
1965         + add test/movewindow.c, to test mvderwin().
1966         + fix ncurses soft-key test so color changes are shown immediately
1967           rather than delayed.
1968         + modify ncurses soft-key test to hide the keys when exiting the test
1969           screen.
1970         + fixes to build test programs with PDCurses 2.7, e.g., its headers
1971           rely on autoconf symbols, and it declares stubs for nonfunctional
1972           terminfo and termcap entrypoints.
1973
1974 20060204
1975         + improved test/configure to build test/ncurses on HPUX 11 using the
1976           vendor curses.
1977         + documented ALTERNATE CONFIGURATIONS in the ncurses manpage, for the
1978           benefit of developers who do not read INSTALL.
1979
1980 20060128
1981         + correct form library Window_To_Buffer() change (cf:  20040516), which
1982           should ignore the video attributes (report by Ricardo Cantu).
1983
1984 20060121
1985         + minor fixes to xmc-glitch experimental code:
1986           + suppress line-drawing
1987           + implement max_attributes
1988           tested with xterm.
1989         + minor fixes for the database iterator.
1990         + fix some buffer limits in c++ demo (comment by Falk Hueffner in
1991           Debian #348117).
1992
1993 20060114
1994         + add toe -a option, to show all databases.  This uses new private
1995           interfaces in the ncurses library for iterating through the list of
1996           databases.
1997         + fix toe from 20000909 changes which made it not look at
1998           $HOME/.terminfo
1999         + make toe's -v option parameter optional as per manpage.
2000         + improve SIGWINCH handling by postponing its effect during newterm(),
2001           etc., when allocating screens.
2002
2003 20060111
2004         + modify wgetnstr() to return KEY_RESIZE if a sigwinch occurs.  Use
2005           this in test/filter.c
2006         + fix an error in filter() modification which caused some applications
2007           to fail.
2008
2009 20060107
2010         + check if filter() was called when getting the screensize.  Keep it
2011           at 1 if so (based on Redhat #174498).
2012         + add extension nofilter().
2013         + refined the workaround for ACS mapping.
2014         + make ifdef's consistent in curses.h for the extended colors so the
2015           header file can be used for the normal curses library.  The header
2016           file installed for extended colors is a variation of the
2017           wide-character configuration (report by Frederic L W Meunier).
2018
2019 20051231
2020         + add a workaround to ACS mapping to allow applications such as
2021           test/blue.c to use the "PC ROM" characters by masking them with
2022           A_ALTCHARSET.  This worked up til 5.5, but was lost in the revision
2023           of legacy coding (report by Michael Deutschmann).
2024         + add a null-pointer check in the wide-character version of
2025           calculate_actual_width() (report by Victor Julien).
2026         + improve test/ncurses 'd' (color-edit) test by allowing the RGB
2027           values to be set independently (patch by William McBrine).
2028         + modify test/configure script to allow building test programs with
2029           PDCurses/X11.
2030         + modified test programs to allow some to work with NetBSD curses.
2031           Several do not because NetBSD curses implements a subset of X/Open
2032           curses, and also lacks much of SVr4 additions.  But it's enough for
2033           comparison.
2034         + update config.guess and config.sub
2035
2036 20051224
2037         + use BSD-specific fix for return-value from cgetent() from CVS where
2038           an unknown terminal type would be reportd as "database not found".
2039         + make tgetent() return code more readable using new symbols
2040           TGETENT_YES, etc.
2041         + remove references to non-existent "tctest" program.
2042         + remove TESTPROGS from progs/Makefile.in (it was referring to code
2043           that was never built in that directory).
2044         + typos in curs_addchstr.3x, some doc files (noticed in OpenBSD CVS).
2045
2046 20051217
2047         + add use_legacy_coding() function to support lynx's font-switching
2048           feature.
2049         + fix formatting in curs_termcap.3x (report by Mike Frysinger).
2050         + modify MKlib_gen.sh to change preprocessor-expanded _Bool back to
2051           bool.
2052
2053 20051210
2054         + extend test/ncurses.c 's' (overlay window) test to exercise overlay(),
2055           overwrite() and copywin() with different combinations of colors and
2056           attributes (including background color) to make it easy to see the
2057           effect of the different functions.
2058         + corrections to menu/m_global.c for wide-characters (report by
2059           Victor Julien).
2060
2061 20051203
2062         + add configure option --without-dlsym, allowing developers to
2063           configure GPM support without using dlsym() (discussion with Michael
2064           Setzer).
2065         + fix wins_nwstr(), which did not handle single-column non-8bit codes
2066           (Debian #341661).
2067
2068 20051126
2069         + move prototypes for wide-character trace functions from curses.tail
2070           to curses.wide to avoid accidental reference to those if
2071           _XOPEN_SOURCE_EXTENDED is defined without ensuring that <wchar.h> is
2072           included.
2073         + add/use NCURSES_INLINE definition.
2074         + change some internal functions to use int/unsigned rather than the
2075           short equivalents.
2076
2077 20051119
2078         + remove a redundant check in lib_color.c (Debian #335655).
2079         + use ld's -search_paths_first option on Darwin to work around odd
2080           search rules on that platform (report by Christian Gennerat, analysis
2081           by Andrea Govoni).
2082         + remove special case for Darwin in CF_XOPEN_SOURCE configure macro.
2083         + ignore EINTR in tcgetattr/tcsetattr calls (Debian #339518).
2084         + fix several bugs in test/bs.c (patch by Stephen Lindholm).
2085
2086 20051112
2087         + other minor fixes to cygwin based on tack -TD
2088         + correct smacs in cygwin (Debian #338234, report by Baurzhan
2089           Ismagulov, who noted that it was fixed in Cygwin).
2090
2091 20051029
2092         + add shifted up/down arrow codes to xterm-new as kind/kri strings -TD
2093         + modify wbkgrnd() to avoid clearing the A_CHARTEXT attribute bits
2094           since those record the state of multicolumn characters (Debian
2095           #316663).
2096         + modify werase to clear multicolumn characters that extend into
2097           a derived window (Debian #316663).
2098
2099 20051022
2100         + move assignment from environment variable ESCDELAY from initscr()
2101           down to newterm() so the environment variable affects timeouts for
2102           terminals opened with newterm() as well.
2103         + fix a memory leak in keyname().
2104         + add test/demo_altkeys.c
2105         + modify test/demo_defkey.c to exit from loop via 'q' to allow
2106           leak-checking, as well as fix a buffer size in winnstr() call.
2107
2108 20051015
2109         + correct order of use-clauses in rxvt-basic entry which made codes for
2110           f1-f4 vt100-style rather than vt220-style (report by Gabor Z Papp).
2111         + suppress configure check for gnatmake if Ada95/Makefile.in is not
2112           found.
2113         + correct a typo in configure --with-bool option for the case where
2114           --without-cxx is used (report by Daniel Jacobowitz).
2115         + add a note to INSTALL's discussion of --with-normal, pointing out
2116           that one may wish to use --without-gpm to ensure a completely
2117           static link (prompted by report by Felix von Leitner).
2118
2119 20051010 5.5 release for upload to ftp.gnu.org
2120
2121 20051008
2122         + document in demo_forms.c some portability issues.
2123
2124 20051001
2125         + document side-effect of werase() which sets the cursor position.
2126         + save/restore the current position in form field editing to make
2127           overlay mode work.
2128
2129 20050924
2130         + correct header dependencies in progs, allowing parallel make (report
2131           by Daniel Jacobowitz).
2132         + modify CF_BUILD_CC to ensure that pre-setting $BUILD_CC overrides
2133           the configure check for --with-build-cc (report by Daniel Jacobowitz).
2134         + modify CF_CFG_DEFAULTS to not use /usr as the default prefix for
2135           NetBSD.
2136         + update config.guess and config.sub from
2137                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
2138
2139 20050917
2140         + modify sed expression which computes path for /usr/lib/terminfo
2141           symbolic link in install to ensure that it does not change unexpected
2142           levels of the path (Gentoo #42336).
2143         + modify default for --disable-lp64 configure option to reduce impact
2144           on existing 64-bit builds.  Enabling the _LP64 option may change the
2145           size of chtype and mmask_t.  However, for ABI 6, it is enabled by
2146           default (report by Mike Frysinger).
2147         + add configure script check for --enable-ext-mouse, bump ABI to 6 by
2148           default if it is used.
2149         + improve configure script logic for bumping ABI to omit this if the
2150           --with-abi-version option was used.
2151         + update address for Free Software Foundation in tack's source.
2152         + correct wins_wch(), which was not marking the filler-cells of
2153           multi-column characters (cf:  20041023).
2154
2155 20050910
2156         + modify mouse initialization to ensure that Gpm_Open() is called only
2157           once.  Otherwise GPM gets confused in its initialization of signal
2158           handlers (Debian #326709).
2159
2160 20050903
2161         + modify logic for backspacing in a multiline form field to ensure that
2162           it works even when the preceding line is full (report by Frank van
2163           Vugt).
2164         + remove comment about BUGS section of ncurses manpage (Debian #325481)
2165
2166 20050827
2167         + document some workarounds for shared and libtool library
2168           configurations in INSTALL (see --with-shared and --with-libtool).
2169         + modify CF_GCC_VERSION and CF_GXX_VERSION macros to accommodate
2170           cross-compilers which emit the platform name in their version
2171           message, e.g.,
2172                 arm-sa1100-linux-gnu-g++ (GCC) 4.0.1
2173           (report by Frank van Vugt).
2174
2175 20050820
2176         + start updating documentation for upcoming 5.5 release.
2177         + fix to make libtool  and libtinfo work together again (cf: 20050122).
2178         + fixes to allow building traces into libtinfo
2179         + add debug trace to tic that shows if/how ncurses will write to the
2180           lower corner of a terminal's screen.
2181         + update llib-l* files.
2182
2183 20050813
2184         + modify initializers in c++ binding to build with old versions of g++.
2185         + improve special case for 20050115 repainting fix, ensuring that if
2186           the first changed cell is not a character that the range to be
2187           repainted is adjusted to start at a character's beginning (Debian
2188           #316663).
2189
2190 20050806
2191         + fixes to build on QNX 6.1
2192         + improve configure script checks for Intel 9.0 compiler.
2193         + remove #include's for libc.h (obsolete).
2194         + adjust ifdef's in curses.priv.h so that when cross-compiling to
2195           produce comp_hash and make_keys, no dependency on wchar.h is needed.
2196           That simplifies the build-cppflags (report by Frank van Vugt).
2197         + move modules related to key-binding into libtinfo to fix linkage
2198           problem caused by 20050430 changes to MKkeyname.sh (report by
2199           Konstantin Andreev).
2200
2201 20050723
2202         + updates/fixes for configure script macros from vile -TD
2203         + make prism9's sgr string agree with the rest of the terminfo -TD
2204         + make vt220's sgr0 string consistent with sgr string, do this for
2205           several related cases -TD
2206         + improve translation to termcap by filtering the 'me' (sgr0) strings
2207           as in the runtime call to tgetent() (prompted by a discussion with
2208           Thomas Klausner).
2209         + improve tic check for sgr0 versus sgr(0), to help ensure that sgr0
2210           resets line-drawing.
2211
2212 20050716
2213         + fix special cases for trimming sgr0 for hurd and vt220 (Debian
2214           #318621).
2215         + split-out _nc_trim_sgr0() from modifications made to tgetent(), to
2216           allow it to be used by tic to provide information about the runtime
2217           changes that would be made to sgr0 for termcap applications.
2218         + modify make_sed.sh to make the group-name in the NAME section of
2219           form/menu library manpage agree with the TITLE string when renaming
2220           is done for Debian (Debian #78866).
2221
2222 20050702
2223         + modify parameter type in c++ binding for insch() and mvwinsch() to
2224           be consistent with underlying ncurses library (was char, is chtype).
2225         + modify treatment of Intel compiler to allow _GNU_SOURCE to be defined
2226           on Linux.
2227         + improve configure check for nanosleep(), checking that it works since
2228           some older systems such as AIX 4.3 have a nonworking version.
2229
2230 20050625
2231         + update config.guess and config.sub from
2232                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
2233         + modify misc/shlib to work in test-directory.
2234         + suppress $suffix in misc/run_tic.sh when cross-compiling.  This
2235           allows cross-compiles to use the host's tic program to handle the
2236           "make install.data" step.
2237         + improve description of $LINES and $COLUMNS variables in manpages
2238           (prompted by report by Dave Ulrick).
2239         + improve description of cross-compiling in INSTALL
2240         + add NCURSES-Programming-HOWTO.html by Pradeep Padala
2241           (see http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/).
2242         + modify configure script to obtain soname for GPM library (discussion
2243           with Daniel Jacobowitz).
2244         + modify configure script so that --with-chtype option will still
2245           compute the unsigned literals suffix for constants in curses.h
2246           (report by Daniel Jacobowitz:
2247         + patches from Daniel Jacobowitz:
2248           + the man_db.renames entry for tack.1 was backwards.
2249           + tack.1 had some 1m's that should have been 1M's.
2250           + the section for curs_inwstr.3 was wrong.
2251
2252 20050619
2253         + correction to --with-chtype option (report by Daniel Jacobowitz).
2254
2255 20050618
2256         + move build-time edit_man.sh and edit_man.sed scripts to top directory
2257           to simplify reusing them for renaming tack's manpage (prompted by a
2258           review of Debian package).
2259         + revert minor optimization from 20041030 (Debian #313609).
2260         + libtool-specific fixes, tested with libtool 1.4.3, 1.5.0, 1.5.6,
2261           1.5.10 and 1.5.18 (all work except as noted previously for the c++
2262           install using libtool 1.5.0):
2263           + modify the clean-rule in c++/Makefile.in to work with IRIX64 make
2264             program.
2265           + use $(LIBTOOL_UNINSTALL) symbol, overlooked in 20030830
2266         + add configure options --with-chtype and --with-mmask-t, to allow
2267           overriding of the non-LP64 model's use of the corresponding types.
2268         + revise test for size of chtype (and mmask_t), which always returned
2269           "long" due to an uninitialized variable (report by Daniel Jacobowitz).
2270
2271 20050611
2272         + change _tracef's that used "%p" format for va_list values to ignore
2273           that, since on some platforms those are not pointers.
2274         + fixes for long-formats in printf's due to largefile support.
2275
2276 20050604
2277         + fixes for termcap support:
2278           + reset pointer to _nc_curr_token.tk_name when the input stream is
2279             closed, which could point to free memory (cf: 20030215).
2280           + delink TERMTYPE data which is used by the termcap reader, so that
2281             extended names data will be freed consistently.
2282           + free pointer to TERMTYPE data in _nc_free_termtype() rather than
2283             its callers.
2284           + add some entrypoints for freeing permanently allocated data via
2285             _nc_freeall() when NO_LEAKS is defined.
2286         + amend 20041030 change to _nc_do_color to ensure that optimization is
2287           applied only when the terminal supports back_color_erase (bce).
2288
2289 20050528
2290         + add sun-color terminfo entry -TD
2291         + correct a missing assignment in c++ binding's method
2292           NCursesPanel::UserPointer() from 20050409 changes.
2293         + improve configure check for large-files, adding check for dirent64
2294           from vile -TD
2295         + minor change to configure script to improve linker options for the
2296           Ada95 tree.
2297
2298 20050515
2299         + document error conditions for ncurses library functions (report by
2300           Stanislav Ievlev).
2301         + regenerated html documentation for ada binding.
2302           see ftp://invisible-island.net/ncurses/patches/gnathtml
2303
2304 20050507
2305         + regenerated html documentation for manpages.
2306         + add $(BUILD_EXEEXT) suffix to invocation of make_keys in
2307           ncurses/Makefile (Gentoo #89772).
2308         + modify c++/demo.cc to build with g++ -fno-implicit-templates option
2309           (patch by Mike Frysinger).
2310         + modify tic to filter out long extended names when translating to
2311           termcap format.  Only two characters are permissible for termcap
2312           capability names.
2313
2314 20050430
2315         + modify terminfo entries xterm-new and rxvt to add strings for
2316           shift-, control-cursor keys.
2317         + workaround to allow c++ binding to compile with g++ 2.95.3, which
2318           has a broken implementation of static_cast<> (patch by Jeff Chua).
2319         + modify initialization of key lookup table so that if an extended
2320           capability (tic -x) string is defined, and its name begins with 'k',
2321           it will automatically be treated as a key.
2322         + modify test/keynames.c to allow for the possibility of extended
2323           key names, e.g., via define_key(), or via "tic -x".
2324         + add test/demo_termcap.c to show the contents of given entry via the
2325           termcap interface.
2326
2327 20050423
2328         + minor fixes for vt100/vt52 entries -TD
2329         + add configure option --enable-largefile
2330         + corrected libraries used to build Ada95/gen/gen, found in testing
2331           gcc 4.0.0.
2332
2333 20050416
2334         + update config.guess, config.sub
2335         + modify configure script check for _XOPEN_SOURCE, disable that on
2336           Darwin whose header files have problems (patch by Chris Zubrzycki).
2337         + modify form library Is_Printable_String() to use iswprint() rather
2338           than wcwidth() for determining if a character is printable.  The
2339           latter caused it to reject menu items containing non-spacing
2340           characters.
2341         + modify ncurses test program's F-test to handle non-spacing characters
2342           by combining them with a reverse-video blank.
2343         + review/fix several gcc -Wconversion warnings.
2344
2345 20050409
2346         + correct an off-by-one error in m_driver() for mouse-clicks used to
2347           position the mouse to a particular item.
2348         + implement test/demo_menus.c
2349         + add some checks in lib_mouse to ensure SP is set.
2350         + modify C++ binding to make 20050403 changes work with the configure
2351           --enable-const option.
2352
2353 20050403
2354         + modify start_color() to return ERR if it cannot allocate memory.
2355         + address g++ compiler warnings in C++ binding by adding explicit
2356           member initialization, assignment operators and copy constructors.
2357           Most of the changes simply preserve the existing semantics of the
2358           binding, which can leak memory, etc., but by making these features
2359           visible, it provides a framework for improving the binding.
2360         + improve C++ binding using static_cast, etc.
2361         + modify configure script --enable-warnings to add options to g++ to
2362           correspond to the gcc --enable-warnings.
2363         + modify C++ binding to use some C internal functions to make it
2364           compile properly on Solaris (and other platforms).
2365
2366 20050327
2367         + amend change from 20050320 to limit it to configurations with a
2368           valid locale.
2369         + fix a bug introduced in 20050320 which broke the translation of
2370           nonprinting characters to uparrow form (report by Takahashi Tamotsu).
2371
2372 20050326
2373         + add ifdef's for _LP64 in curses.h to avoid using wasteful 64-bits for
2374           chtype and mmask_t, but add configure option --disable-lp64 in case
2375           anyone used that configuration.
2376         + update misc/shlib script to account for Mac OS X (report by Michail
2377           Vidiassov).
2378         + correct comparison for wrapping multibyte characters in
2379           waddch_literal() (report by Takahashi Tamotsu).
2380
2381 20050320
2382         + add -c and -w options to tset to allow user to suppress ncurses'
2383           resizing of the terminal emulator window in the special case where it
2384           is not able to detect the true size (report by Win Delvaux, Debian
2385           #300419).
2386         + modify waddch_nosync() to account for locale zn_CH.GBK, which uses
2387           codes 128-159 as part of multibyte characters (report by Wang
2388           WenRui, Debian #300512).
2389
2390 20050319
2391         + modify ncurses.c 'd' test to make it work with 88-color
2392           configuration, i.e., by implementing scrolling.
2393         + improve scrolling in ncurses.c 'c' and 'C' tests, e.g., for 88-color
2394           configuration.
2395
2396 20050312
2397         + change tracemunch to use strict checking.
2398         + modify ncurses.c 'p' test to test line-drawing within a pad.
2399         + implement environment variable NCURSES_NO_UTF8_ACS to support
2400           miscellaneous terminal emulators which ignore alternate character
2401           set escape sequences when in UTF-8 mode.
2402
2403 20050305
2404         + change NCursesWindow::err_handler() to a virtual function (request by
2405           Steve Beal).
2406         + modify fty_int.c and fty_num.c to handle wide characters (report by
2407           Wolfgang Gutjahr).
2408         + adapt fix for fty_alpha.c to fty_alnum.c, which also handled normal
2409           and wide characters inconsistently (report by Wolfgang Gutjahr).
2410         + update llib-* files to reflect internal interface additions/changes.
2411
2412 20050226
2413         + improve test/configure script, adding tests for _XOPEN_SOURCE, etc.,
2414           from lynx.
2415         + add aixterm-16color terminfo entry -TD
2416         + modified xterm-new terminfo entry to work with tgetent() changes -TD
2417         + extended changes in tgetent() from 20040710 to allow the substring of
2418           sgr0 which matches rmacs to be at the beginning of the sgr0 string
2419           (request by Thomas Wolff).  Wolff says the visual effect in
2420           combination with pre-20040710 ncurses is improved.
2421         + fix off-by-one in winnstr() call which caused form field validation
2422           of multibyte characters to ignore the last character in a field.
2423         + correct logic in winsch() for inserting multibyte strings; the code
2424           would clear cells after the insertion rather than push them to the
2425           right (cf: 20040228).
2426         + fix an inconsistency in Check_Alpha_Field() between normal and wide
2427           character logic (report by Wolfgang Gutjahr).
2428
2429 20050219
2430         + fix a bug in editing wide-characters in form library: deleting a
2431           nonwide character modified the previous wide-character.
2432         + update manpage to describe NCURSES_MOUSE_VERSION 2.
2433         + correct manpage description of mouseinterval() (Debian #280687).
2434         + add a note to default_colors.3x explaining why this extension was
2435           added (Debian #295083).
2436         + add traces to panel library.
2437
2438 20050212
2439         + improve editing of wide-characters in form library:  left/right
2440           cursor movement, and single-character deletions work properly.
2441         + disable GPM mouse support when $TERM happens to be prefixed with
2442           "xterm".  Gpm_Open() would otherwise assert that it can deal with
2443           mouse events in this case.
2444         + modify GPM mouse support so it closes the server connection when
2445           the caller disables the mouse (report by Stanislav Ievlev).
2446
2447 20050205
2448         + add traces for callback functions in form library.
2449         + add experimental configure option --enable-ext-mouse, which defines
2450           NCURSES_MOUSE_VERSION 2, and modifies the encoding of mouse events to
2451           support wheel mice, which may transmit buttons 4 and 5.  This works
2452           with xterm and similar X terminal emulators (prompted by question by
2453           Andreas Henningsson, this is also related to Debian #230990).
2454         + improve configure macros CF_XOPEN_SOURCE and CF_POSIX_C_SOURCE to
2455           avoid redefinition warnings on cygwin.
2456
2457 20050129
2458         + merge remaining development changes for extended colors (mostly
2459           complete, does not appear to break other configurations).
2460         + add xterm-88color.dat (part of extended colors testing).
2461         + improve _tracedump() handling of color pairs past 96.
2462         + modify return-value from start_color() to return OK if colors have
2463           already been started.
2464         + modify curs_color.3x list error conditions for init_pair(),
2465           pair_content() and color_content().
2466         + modify pair_content() to return -1 for consistency with init_pair()
2467           if it corresponds to the default-color.
2468         + change internal representation of default-color to allow application
2469           to use color number 255.  This does not affect the total number of
2470           color pairs which are allowed.
2471         + add a top-level tags rule.
2472
2473 20050122
2474         + add a null-pointer check in wgetch() in case it is called without
2475           first calling initscr().
2476         + add some null-pointer checks for SP, which is not set by libtinfo.
2477         + modify misc/shlib to ensure that absolute pathnames are used.
2478         + modify test/Makefile.in, etc., to link test programs only against the
2479           libraries needed, e.g., omit form/menu/panel library for the ones
2480           that are curses-specific.
2481         + change SP->_current_attr to a pointer, adjust ifdef's to ensure that
2482           libtinfo.so and libtinfow.so have the same ABI.  The reason for this
2483           is that the corresponding data which belongs to the upper-level
2484           ncurses library has a different size in each model (report by
2485           Stanislav Ievlev).
2486
2487 20050115
2488         + minor fixes to allow test-compiles with g++.
2489         + correct column value shown in tic's warnings, which did not account
2490           for leading whitespace.
2491         + add a check in _nc_trans_string() for improperly ended strings, i.e.,
2492           where a following line begins in column 1.
2493         + modify _nc_save_str() to return a null pointer on buffer overflow.
2494         + improve repainting while scrolling wide-character data (Eungkyu Song).
2495
2496 20050108
2497         + merge some development changes to extend color capabilities.
2498
2499 20050101
2500         + merge some development changes to extend color capabilities.
2501         + fix manpage typo (FreeBSD report docs/75544).
2502         + update config.guess, config.sub
2503         > patches for configure script (Albert Chin-A-Young):
2504         + improved fix to make mbstate_t recognized on HPUX 11i (cf:
2505           20030705), making vsscanf() prototype visible on IRIX64.  Tested for
2506           on HP-UX 11i, Solaris 7, 8, 9, AIX 4.3.3, 5.2, Tru64 UNIX 4.0D, 5.1,
2507           IRIX64 6.5, Redhat Linux 7.1, 9, and RHEL 2.1, 3.0.
2508         + print the result of the --disable-home-terminfo option.
2509         + use -rpath when compiling with SGI C compiler.
2510
2511 20041225
2512         + add trace calls to remaining public functions in form and menu
2513           libraries.
2514         + fix check for numeric digits in test/ncurses.c 'b' and 'B' tests.
2515         + fix typo in test/ncurses.c 'c' test from 20041218.
2516
2517 20041218
2518         + revise test/ncurses.c 'c' color test to improve use for xterm-88color
2519           and xterm-256color, added 'C' test using the wide-character color_set
2520           and attr_set functions.
2521
2522 20041211
2523         + modify configure script to work with Intel compiler.
2524         + fix an limit-check in wadd_wchnstr() which caused labels in the
2525           forms-demo to be one character short.
2526         + fix typo in curs_addchstr.3x (Jared Yanovich).
2527         + add trace calls to most functions in form and menu libraries.
2528         + update working-position for adding wide-characters when window is
2529           scrolled (prompted by related report by Eungkyu Song).
2530
2531 20041204
2532         + replace some references on Linux to wcrtomb() which use it to obtain
2533           the length of a multibyte string with _nc_wcrtomb, since wcrtomb() is
2534           broken in glibc (see Debian #284260).
2535         + corrected length-computation in wide-character support for
2536           field_buffer().
2537         + some fixes to frm_driver.c to allow it to accept multibyte input.
2538         + modify configure script to work with Intel 8.0 compiler.
2539
2540 20041127
2541         + amend change to setupterm() in 20030405 which would reuse the value
2542           of cur_term if the same output was selected.  This now reuses it only
2543           when setupterm() is called from tgetent(), which has no notion of
2544           separate SCREENs.  Note that tgetent() must be called after initscr()
2545           or newterm() to use this feature (Redhat Bugzilla #140326).
2546         + add a check in CF_BUILD_CC macro to ensure that developer has given
2547           the --with-build-cc option when cross-compiling (report by Alexandre
2548           Campo).
2549         + improved configure script checks for _XOPEN_SOURCE and
2550           _POSIX_C_SOURCE (fix for IRIX 5.3 from Georg Schwarz, _POSIX_C_SOURCE
2551           updates from lynx).
2552         + cosmetic fix to test/gdc.c to recolor the bottom edge of the box
2553           for consistency (comment by Dan Nelson).
2554
2555 20041120
2556         + update wsvt25 terminfo entry -TD
2557         + modify test/ins_wide.c to test all flavors of ins_wstr().
2558         + ignore filler-cells in wadd_wchnstr() when adding a cchar_t array
2559           which consists of multi-column characters, since this function
2560           constructs them (cf: 20041023).
2561         + modify winnstr() to return multibyte character strings for the
2562           wide-character configuration.
2563
2564 20041106
2565         + fixes to make slk_set() and slk_wset() accept and store multibyte
2566           or multicolumn characters.
2567
2568 20041030
2569         + improve color optimization a little by making _nc_do_color() check
2570           if the old/new pairs are equivalent to the default pair 0.
2571         + modify assume_default_colors() to not require that
2572           use_default_colors() be called first.
2573
2574 20041023
2575         + modify term_attrs() to use termattrs(), add the extended attributes
2576           such as enter_horizontal_hl_mode for WA_HORIZONTAL to term_attrs().
2577         + add logic in waddch_literal() to clear orphaned cells when one
2578           multi-column character partly overwrites another.
2579         + improved logic for clearing cells when a multi-column character
2580           must be wrapped to a new line.
2581         + revise storage of cells for multi-column characters to correct a
2582           problem with repainting.  In the old scheme, it was possible for
2583           doupdate() to decide that only part of a multi-column character
2584           should be repainted since the filler cells stored only an attribute
2585           to denote them as fillers, rather than the character value and the
2586           attribute.
2587
2588 20041016
2589         + minor fixes for traces.
2590         + add SP->_screen_acs_map[], used to ensure that mapping of missing
2591           line-drawing characters is handled properly.  For example, ACS_DARROW
2592           is absent from xterm-new, and it was coincidentally displayed the
2593           same as ACS_BTEE.
2594
2595 20041009
2596         + amend 20021221 workaround for broken acs to reset the sgr, rmacs
2597           and smacs strings as well.  Also modify the check for screen's
2598           limitations in that area to allow the multi-character shift-in
2599           and shift-out which seem to work.
2600         + change GPM initialization, using dl library to load it dynamically
2601           at runtime (Debian #110586).
2602
2603 20041002
2604         + correct logic for color pair in setcchar() and getcchar() (patch by
2605           Marcin 'Qrczak' Kowalczyk).
2606         + add t/T commands to ncurses b/B tests to allow a different color to
2607           be tested for the attrset part of the test than is used in the
2608           background color.
2609
2610 20040925
2611         + fix to make setcchar() to work when its wchar_t* parameter is
2612           pointing to a string which contains more data than can be converted.
2613         + modify wget_wstr() and example in ncurses.c to work if wchar_t and
2614           wint_t are different sizes (report by Marcin 'Qrczak' Kowalczyk).
2615
2616 20040918
2617         + remove check in wget_wch() added to fix an infinite loop, appears to
2618           have been working around a transitory glibc bug, and interferes
2619           with normal operation (report by Marcin 'Qrczak' Kowalczyk).
2620         + correct wadd_wch() and wecho_wch(), which did not pass the rendition
2621           information (report by Marcin 'Qrczak' Kowalczyk).
2622         + fix aclocal.m4 so that the wide-character version of ncurses gets
2623           compiled as libncursesw.5.dylib, instead of libncurses.5w.dylib
2624           (adapted from patch by James J Ramsey).
2625         + change configure script for --with-caps option to indicate that it
2626           is no longer experimental.
2627         + change configure script to reflect the fact that --enable-widec has
2628           not been "experimental" since 5.3 (report by Bruno Lustosa).
2629
2630 20040911
2631         + add 'B' test to ncurses.c, to exercise some wide-character functions.
2632
2633 20040828
2634         + modify infocmp -i option to match 8-bit controls against its table
2635           entries, e.g., so it can analyze the xterm-8bit entry.
2636         + add morphos terminfo entry, improve amiga-8bit entry (Pavel Fedin).
2637         + correct translation of "%%" in terminfo format to termcap, e.g.,
2638           using "tic -C" (Redhat Bugzilla #130921).
2639         + modified configure script CF_XOPEN_SOURCE macro to ensure that if
2640           it defines _POSIX_C_SOURCE, that it defines it to a specific value
2641           (comp.os.stratus newsgroup comment).
2642
2643 20040821
2644         + fixes to build with Ada95 binding with gnat 3.4 (all warnings are
2645           fatal, and gnat does not follow the guidelines for pragmas).
2646           However that did find a coding error in Assume_Default_Colors().
2647         + modify several terminfo entries to ensure xterm mouse and cursor
2648           visibility are reset in rs2 string:  hurd, putty, gnome,
2649           konsole-base, mlterm, Eterm, screen (Debian #265784, #55637).  The
2650           xterm entries are left alone - old ones for compatibility, and the
2651           new ones do not require this change. -TD
2652
2653 20040814
2654         + fake a SIGWINCH in newterm() to accommodate buggy terminal emulators
2655           and window managers (Debian #265631).
2656         > terminfo updates -TD
2657         + remove dch/dch1 from rxvt because they are implemented inconsistently
2658           with the common usage of bce/ech
2659         + remove khome from vt220 (vt220's have no home key)
2660         + add rxvt+pcfkeys
2661
2662 20040807
2663         + modify test/ncurses.c 'b' test, adding v/V toggles to cycle through
2664           combinations of video attributes so that for instance bold and
2665           underline can be tested.  This made the legend too crowded, added
2666           a help window as well.
2667         + modify test/ncurses.c 'b' test to cycle through default colors if
2668           the -d option is set.
2669         + update putty terminfo entry (Robert de Bath).
2670
2671 20040731
2672         + modify test/cardfile.c to allow it to read more data than can be
2673           displayed.
2674         + correct logic in resizeterm.c which kept it from processing all
2675           levels of window hierarchy (reports by Folkert van Heusden,
2676           Chris Share).
2677
2678 20040724
2679         + modify "tic -cv" to ignore delays when comparing strings.  Also
2680           modify it to ignore a canceled sgr string, e.g., for terminals which
2681           cannot properly combine attributes in one control sequence.
2682         + corrections for gnome and konsole entries (Redhat Bugzilla #122815,
2683           patch by Hans de Goede)
2684         > terminfo updates -TD
2685         + make ncsa-m rmacs/smacs consistent with sgr
2686         + add sgr, rc/sc and ech to syscons entries
2687         + add function-keys to decansi
2688         + add sgr to mterm-ansi
2689         + add sgr, civis, cnorm to emu
2690         + correct/simplify cup in addrinfo
2691
2692 20040717
2693         > terminfo updates -TD
2694         + add xterm-pc-fkeys
2695         + review/update gnome and gnome-rh90 entries (prompted by Redhat
2696           Bugzilla #122815).
2697         + review/update konsole entries
2698         + add sgr, correct sgr0 for kterm and mlterm
2699         + correct tsl string in kterm
2700
2701 20040711
2702         + add configure option --without-xterm-new
2703
2704 20040710
2705         + add check in wget_wch() for printable bytes that are not part of a
2706           multibyte character.
2707         + modify wadd_wchnstr() to render text using window's background
2708           attributes.
2709         + improve tic's check to compare sgr and sgr0.
2710         + fix c++ directory's .cc.i rule.
2711         + modify logic in tgetent() which adjusts the termcap "me" string
2712           to work with ISO-2022 string used in xterm-new (cf: 20010908).
2713         + modify tic's check for conflicting function keys to omit that if
2714           converting termcap to termcap format.
2715         + add -U option to tic and infocmp.
2716         + add rmam/smam to linux terminfo entry (Trevor Van Bremen)
2717         > terminfo updates -TD
2718         + minor fixes for emu
2719         + add emu-220
2720         + change wyse acsc strings to use 'i' map rather than 'I'
2721         + fixes for avatar0
2722         + fixes for vp3a+
2723
2724 20040703
2725         + use tic -x to install terminfo database -TD
2726         + add -x to infocmp's usage message.
2727         + correct field used for comparing O_ROWMAJOR in set_menu_format()
2728           (report/patch by Tony Li).
2729         + fix a missing nul check in set_field_buffer() from 20040508 changes.
2730         > terminfo updates -TD
2731           + make xterm-xf86-v43 derived from xterm-xf86-v40 rather than
2732             xterm-basic -TD
2733           + align with xterm patch #192's use of xterm-new -TD
2734           + update xterm-new and xterm-8bit for cvvis/cnorm strings -TD
2735           + make xterm-new the default "xterm" entry -TD
2736
2737 20040626
2738         + correct BUILD_CPPFLAGS substitution in ncurses/Makefile.in, to allow
2739           cross-compiling from a separate directory tree (report/patch by
2740           Dan Engel).
2741         + modify is_term_resized() to ensure that window sizes are nonzero,
2742           as documented in the manpage (report by Ian Collier).
2743         + modify CF_XOPEN_SOURCE configure macro to make Hurd port build
2744           (Debian #249214, report/patch by Jeff Bailey).
2745         + configure-script mods from xterm, e.g., updates to CF_ADD_CFLAGS
2746         + update config.guess, config.sub
2747         > terminfo updates -TD
2748           + add mlterm
2749           + add xterm-xf86-v44
2750           + modify xterm-new aka xterm-xfree86 to accommodate luit, which
2751             relies on G1 being used via an ISO-2022 escape sequence (report by
2752             Juliusz Chroboczek)
2753           + add 'hurd' entry
2754
2755 20040619
2756         + reconsidered winsnstr(), decided after comparing other
2757           implementations that wrapping is an X/Open documentation error.
2758         + modify test/inserts.c to test all flavors of insstr().
2759
2760 20040605
2761         + add setlocale() calls to a few test programs which may require it:
2762           demo_forms.c, filter.c, ins_wide.c, inserts.c
2763         + correct a few misspelled function names in ncurses-intro.html (report
2764           by Tony Li).
2765         + correct internal name of key_defined() manpage, which conflicted with
2766           define_key().
2767
2768 20040529
2769         + correct size of internal pad used for holding wide-character
2770           field_buffer() results.
2771         + modify data_ahead() to work with wide-characters.
2772
2773 20040522
2774         + improve description of terminfo if-then-else expressions (suggested
2775           by Arne Thomassen).
2776         + improve test/ncurses.c 'd' test, allow it to use external file for
2777           initial palette (added xterm-16color.dat and linux-color.dat), and
2778           reset colors to the initial palette when starting/ending the test.
2779         + change limit-check in init_color() to allow r/g/b component to
2780           reach 1000 (cf: 20020928).
2781
2782 20040516
2783         + modify form library to use cchar_t's rather than char's in the
2784           wide-character configuration for storing data for field buffers.
2785         + correct logic of win_wchnstr(), which did not work for more than
2786           one cell.
2787
2788 20040508
2789         + replace memset/memcpy usage in form library with for-loops to
2790           simplify changing the datatype of FIELD.buf, part of wide-character
2791           changes.
2792         + fix some inconsistent use of #if/#ifdef (report by Alain Guibert).
2793
2794 20040501
2795         + modify menu library to account for actual number of columns used by
2796           multibyte character strings, in the wide-character configuration
2797           (adapted from patch by Philipp Tomsich).
2798         + add "-x" option to infocmp like tic's "-x", for use in "-F"
2799           comparisons.  This modifies infocmp to only report extended
2800           capabilities if the -x option is given, making this more consistent
2801           with tic.  Some scripts may break, since infocmp previous gave this
2802           information without an option.
2803         + modify termcap-parsing to retain 2-character aliases at the beginning
2804           of an entry if the "-x" option is used in tic.
2805
2806 20040424
2807         + minor compiler-warning and test-program fixes.
2808
2809 20040417
2810         + modify tic's missing-sgr warning to apply to terminfo only.
2811         + free some memory leaks in tic.
2812         + remove check in post_menu() that prevented menus from extending
2813           beyond the screen (request by Max J. Werner).
2814         + remove check in newwin() that prevents allocating windows
2815           that extend beyond the screen.  Solaris curses does this.
2816         + add ifdef in test/color_set.c to allow it to compile with older
2817           curses.
2818         + add napms() calls to test/dots.c to make it not be a CPU hog.
2819
2820 20040403
2821         + modify unctrl() to return null if its parameter does not correspond
2822           to an unsigned char.
2823         + add some limit-checks to guard isprint(), etc., from being used on
2824           values that do not fit into an unsigned char (report by Sami Farin).
2825
2826 20040328
2827         + fix a typo in the _nc_get_locale() change.
2828
2829 20040327
2830         + modify _nc_get_locale() to use setlocale() to query the program's
2831           current locale rather than using getenv().  This fixes a case in tin
2832           which relies on legacy treatment of 8-bit characters when the locale
2833           is not initialized (reported by Urs Jansen).
2834         + add sgr string to screen's and rxvt's terminfo entries -TD.
2835         + add a check in tic for terminfo entries having an sgr0 but no sgr
2836           string.  This confuses Tru64 and HPUX curses when combined with
2837           color, e.g., making them leave line-drawing characters in odd places.
2838         + correct casts used in ABSENT_BOOLEAN, CANCELLED_BOOLEAN, matches the
2839           original definitions used in Debian package to fix PowerPC bug before
2840           20030802 (Debian #237629).
2841
2842 20040320
2843         + modify PutAttrChar() and PUTC() macro to improve use of
2844           A_ALTCHARSET attribute to prevent line-drawing characters from
2845           being lost in situations where the locale would otherwise treat the
2846           raw data as nonprintable (Debian #227879).
2847
2848 20040313
2849         + fix a redefinition of CTRL() macro in test/view.c for AIX 5.2 (report
2850           by Jim Idle).
2851         + remove ".PP" after ".SH NAME" in a few manpages; this confuses
2852           some apropos script (Debian #237831).
2853
2854 20040306
2855         + modify ncurses.c 'r' test so editing commands, like inserted text,
2856           set the field background, and the state of insert/overlay editing
2857           mode is shown in that test.
2858         + change syntax of dummy targets in Ada95 makefiles to work with pmake.
2859         + correct logic in test/ncurses.c 'b' for noncolor terminals which
2860           did not recognize a quit-command (cf: 20030419).
2861
2862 20040228
2863         + modify _nc_insert_ch() to allow for its input to be part of a
2864           multibyte string.
2865         + split out lib_insnstr.c, to prepare to rewrite it.  X/Open states
2866           that this function performs wrapping, unlike all of the other
2867           insert-functions.  Currently it does not wrap.
2868         + check for nl_langinfo(CODESET), use it if available (report by
2869           Stanislav Ievlev).
2870         + split-out CF_BUILD_CC macro, actually did this for lynx first.
2871         + fixes for configure script CF_WITH_DBMALLOC and CF_WITH_DMALLOC,
2872           which happened to work with bash, but not with Bourne shell (report
2873           by Marco d'Itri via tin-dev).
2874
2875 20040221
2876         + some changes to adapt the form library to wide characters, incomplete
2877           (request by Mike Aubury).
2878         + add symbol to curses.h which can be used to suppress include of
2879           stdbool.h, e.g.,
2880                 #define NCURSES_ENABLE_STDBOOL_H 0
2881                 #include <curses.h>
2882           (discussion on XFree86 mailing list).
2883
2884 20040214
2885         + modify configure --with-termlib option to accept a value which sets
2886           the name of the terminfo library.  This would allow a packager to
2887           build libtinfow.so renamed to coincide with libtinfo.so (discussion
2888           with Stanislav Ievlev).
2889         + improve documentation of --with-install-prefix, --prefix and
2890           $(DESTDIR) in INSTALL (prompted by discussion with Paul Lew).
2891         + add configure check if the compiler can use -c -o options to rename
2892           its output file, use that to omit the 'cd' command which was used to
2893           ensure object files are created in a separate staging directory
2894           (prompted by comments by Johnny Wezel, Martin Mokrejs).
2895
2896 20040208 5.4 release for upload to ftp.gnu.org
2897         + update TO-DO.
2898
2899 20040207 pre-release
2900         + minor fixes to _nc_tparm_analyze(), i.e., do not count %i as a param,
2901           and do not count %d if it follows a %p.
2902         + correct an inconsistency between handling of codes in the 128-255
2903           range, e.g., as illustrated by test/ncurses.c f/F tests.  In POSIX
2904           locale, the latter did not show printable results, while the former
2905           did.
2906         + modify MKlib_gen.sh to compensate for broken C preprocessor on Mac
2907           OS X, which alters "%%" to "% % " (report by Robert Simms, fix
2908           verified by Scott Corscadden).
2909
2910 20040131 pre-release
2911         + modify SCREEN struct to align it between normal/wide curses flavors
2912           to simplify future changes to build a single version of libtinfo
2913           (patch by Stanislav Ievlev).
2914         + document handling of carriage return by addch() in manpage.
2915         + document special features of unctrl() in manpage.
2916         + documented interface changes in INSTALL.
2917         + corrected control-char test in lib_addch.c to account for locale
2918           (Debian #230335, cf: 971206).
2919         + updated test/configure.in to use AC_EXEEXT and AC_OBJEXT.
2920         + fixes to compile Ada95 binding with Debian gnat 3.15p-4 package.
2921         + minor configure-script fixes for older ports, e.g., BeOS R4.5.
2922
2923 20040125 pre-release
2924         + amend change to PutAttrChar() from 20030614 which computed the number
2925           of cells for a possibly multi-cell character.  The 20030614 change
2926           forced the cell to a blank if the result from wcwidth() was not
2927           greater than zero.  However, wcwidth() called for parameters in the
2928           range 128-255 can give this return value.  The logic now simply
2929           ensures that the number of cells is greater than zero without
2930           modifying the displayed value.
2931
2932 20040124 pre-release
2933         + looked good for 5.4 release for upload to ftp.gnu.org (but see above)
2934         + modify configure script check for ranlib to use AC_CHECK_TOOL, since
2935           that works better for cross-compiling.
2936
2937 20040117 pre-release
2938         + modify lib_get_wch.c to prefer mblen/mbtowc over mbrlen/mbrtowc to
2939           work around core dump in Solaris 8's locale support, e.g., for
2940           zh_CN.GB18030 (report by Saravanan Bellan).
2941         + add includes for <stdarg.h> and <stdio.h> in configure script macro
2942           to make <wchar.h> check work with Tru64 4.0d.
2943         + add terminfo entry for U/Win -TD
2944         + add terminfo entries for SFU aka Interix aka OpenNT (Federico
2945           Bianchi).
2946         + modify tput's error messages to prefix them with the program name
2947           (report by Vincent Lefevre, patch by Daniel Jacobowitz (see Debian
2948           #227586)).
2949         + correct a place in tack where exit_standout_mode was used instead of
2950           exit_attribute_mode (patch by Jochen Voss (see Debian #224443)).
2951         + modify c++/cursesf.h to use const in the Enumeration_Field method.
2952         + remove an ambiguous (actually redundant) method from c++/cursesf.h
2953         + make $HOME/.terminfo update optional (suggested by Stanislav Ievlev).
2954         + improve sed script which extracts libtool's version in the
2955           CF_WITH_LIBTOOL macro.
2956         + add ifdef'd call to AC_PROG_LIBTOOL to CF_WITH_LIBTOOL macro (to
2957           simplify local patch for Albert Chin-A-Young)..
2958         + add $(CXXFLAGS) to link command in c++/Makefile.in (adapted from
2959           patch by Albert Chin-A-Young)..
2960         + fix a missing substitution in configure.in for "$target" needed for
2961           HPUX .so/.sl case.
2962         + resync CF_XOPEN_SOURCE configure macro with lynx; fixes IRIX64 and
2963           NetBSD 1.6 conflicts with _XOPEN_SOURCE.
2964         + make check for stdbool.h more specific, to ensure that including it
2965           will actually define/declare bool for the configured compiler.
2966         + rewrite ifdef's in curses.h relating NCURSES_BOOL and bool.  The
2967           intention of that is to #define NCURSES_BOOL as bool when the
2968           compiler declares bool, and to #define bool as NCURSES_BOOL when it
2969           does not (reported by Jim Gifford, Sam Varshavchik, cf: 20031213).
2970
2971 20040110 pre-release
2972         + change minor version to 4, i.e., ncurses 5.4
2973         + revised/improved terminfo entries for tvi912b, tvi920b (Benjamin C W
2974           Sittler).
2975         + simplified ncurses/base/version.c by defining the result from the
2976           configure script rather than using sprintf (suggested by Stanislav
2977           Ievlev).
2978         + remove obsolete casts from c++/cursesw.h (reported by Stanislav
2979           Ievlev).
2980         + modify configure script so that when configuring for termlib, programs
2981           such as tic are not linked with the upper-level ncurses library
2982           (suggested by Stanislav Ievlev).
2983         + move version.c from ncurses/base to ncurses/tinfo to allow linking
2984           of tic, etc., using libtinfo (suggested by Stanislav Ievlev).
2985
2986 20040103
2987         + adjust -D's to build ncursesw on OpenBSD.
2988         + modify CF_PROG_EXT to make OS/2 build with EXEEXT.
2989         + add pecho_wchar().
2990         + remove <wctype.h> include from lib_slk_wset.c which is not needed (or
2991           available) on older platforms.
2992
2993 20031227
2994         + add -D's to build ncursew on FreeBSD 5.1.
2995         + modify shared library configuration for FreeBSD 4.x/5.x to add the
2996           soname information (request by Marc Glisse).
2997         + modify _nc_read_tic_entry() to not use MAX_ALIAS, but PATH_MAX only
2998           for limiting the length of a filename in the terminfo database.
2999         + modify termname() to return the terminal name used by setupterm()
3000           rather than $TERM, without truncating to 14 characters as documented
3001           by X/Open (report by Stanislav Ievlev, cf:  970719).
3002         + re-add definition for _BSD_TYPES, lost in merge (cf: 20031206).
3003
3004 20031220
3005         + add configure option --with-manpage-format=catonly to address
3006           behavior of BSDI, allow install of man+cat files on NetBSD, whose
3007           behavior has diverged by requiring both to be present.
3008         + remove leading blanks from comment-lines in manlinks.sed script to
3009           work with Tru64 4.0d.
3010         + add screen.linux terminfo entry (discussion on mutt-users mailing
3011           list).
3012
3013 20031213
3014         + add a check for tic to flag missing backslashes for termcap
3015           continuation lines.  ncurses reads the whole entry, but termcap
3016           applications do not.
3017         + add configure option "--with-manpage-aliases" extending
3018           "--with-manpage-aliases" to provide the option of generating ".so"
3019           files rather than symbolic links for manpage aliases.
3020         + add bool definition in include/curses.h.in for configurations with no
3021           usable C++ compiler (cf: 20030607).
3022         + fix pathname of SigAction.h for building with --srcdir (reported by
3023           Mike Castle).
3024
3025 20031206
3026         + folded ncurses/base/sigaction.c into includes of ncurses/SigAction.h,
3027           since that header is used only within ncurses/tty/lib_tstp.c, for
3028           non-POSIX systems (discussion with Stanislav Ievlev).
3029         + remove obsolete _nc_outstr() function (report by Stanislav Ievlev
3030           <inger@altlinux.org>).
3031         + add test/background.c and test/color_set.c
3032         + modify color_set() function to work with color pair 0 (report by
3033           George Andreou <gbandreo@tem.uoc.gr>).
3034         + add configure option --with-trace, since defining TRACE seems too
3035           awkward for some cases.
3036         + remove a call to _nc_free_termtype() from read_termtype(), since the
3037           corresponding buffer contents were already zeroed by a memset (cf:
3038           20000101).
3039         + improve configure check for _XOPEN_SOURCE and related definitions,
3040           adding special cases for Solaris' __EXTENSIONS__ and FreeBSD's
3041           __BSD_TYPES (reports by Marc Glisse <marc.glisse@normalesup.org>).
3042         + small fixes to compile on Solaris and IRIX64 using cc.
3043         + correct typo in check for pre-POSIX sort options in MKkey_defs.sh
3044           (cf: 20031101).
3045
3046 20031129
3047         + modify _nc_gettime() to avoid a problem with arithmetic on unsigned
3048           values (Philippe Blain).
3049         + improve the nanosleep() logic in napms() by checking for EINTR and
3050           restarting (Philippe Blain).
3051         + correct expression for "%D" in lib_tgoto.c (Juha Jarvi
3052           <mooz@welho.com>).
3053
3054 20031122
3055         + add linux-vt terminfo entry (Andrey V Lukyanov <land@long.yar.ru>).
3056         + allow "\|" escape in terminfo; tic should not warn about this.
3057         + save the full pathname of the trace-file the first time it is opened,
3058           to avoid creating it in different directories if the application
3059           opens and closes it while changing its working directory.
3060         + modify configure script to provide a non-empty default for
3061           $BROKEN_LINKER
3062
3063 20031108
3064         + add DJGPP to special case of DOS-style drive letters potentially
3065           appearing in TERMCAP environment variable.
3066         + fix some spelling in comments (reports by Jason McIntyre, Jonathon
3067           Gray).
3068         + update config.guess, config.sub
3069
3070 20031101
3071         + fix a memory leak in error-return from setupterm() (report by
3072           Stanislav Ievlev <inger@altlinux.org>).
3073         + use EXEEXT and OBJEXT consistently in makefiles.
3074         + amend fixes for cross-compiling to use separate executable-suffix
3075           BUILD_EXEEXT (cf: 20031018).
3076         + modify MKkey_defs.sh to check for sort utility that does not
3077           recognize key options, e.g., busybox (report by Peter S Mazinger
3078           <ps.m@gmx.net>).
3079         + fix potential out-of-bounds indexing in _nc_infotocap() (found by
3080           David Krause using some of the new malloc debugging features
3081           under OpenBSD, patch by Ted Unangst).
3082         + modify CF_LIB_SUFFIX for Itanium releases of HP-UX, which use a
3083           ".so" suffix (patch by Jonathan Ward <Jonathan.Ward@hp.com>).
3084
3085 20031025
3086         + update terminfo for xterm-xfree86 -TD
3087         + add check for multiple "tc=" clauses in a termcap to tic.
3088         + check for missing op/oc in tic.
3089         + correct _nc_resolve_uses() and _nc_merge_entry() to allow infocmp and
3090           tic to show cancelled capabilities.  These functions were ignoring
3091           the state of the target entry, which should be untouched if cancelled.
3092         + correct comment in tack/output.c (Debian #215806).
3093         + add some null-pointer checks to lib_options.c (report by Michael
3094           Bienia).
3095         + regenerated html documentation.
3096         + correction to tar-copy.sh, remove a trap command that resulted in
3097           leaving temporary files (cf: 20030510).
3098         + remove contact/maintainer addresses for Juergen Pfeifer (his request).
3099
3100 20031018
3101         + updated test/configure to reflect changes for libtool (cf: 20030830).
3102         + fix several places in tack/pad.c which tested and used the parameter-
3103           and parameterless strings inconsistently, i.e., in pad_rin(),
3104           pad_il(), pad_indn() and pad_dl() (Debian #215805).
3105         + minor fixes for configure script and makefiles to cleanup executables
3106           generated when cross-compiling for DJGPP.
3107         + modify infocmp to omit check for $TERM for operations that do not
3108           require it, e.g., "infocmp -e" used to build fallback list (report by
3109           Koblinger Egmont).
3110
3111 20031004
3112         + add terminfo entries for DJGPP.
3113         + updated note about maintainer in ncurses-intro.html
3114
3115 20030927
3116         + update terminfo entries for gnome terminal.
3117         + modify tack to reset colors after each color test, correct a place
3118           where exit_standout_mode was used instead of exit_attribute_mode.
3119         + improve tack's bce test by making it set colors other than black
3120           on white.
3121         + plug a potential recursion between napms() and _nc_timed_wait()
3122           (report by Philippe Blain).
3123
3124 20030920
3125         + add --with-rel-version option to allow workaround to allow making
3126           libtool on Darwin generate the "same" library names as with the
3127           --with-shared option.  The Darwin ld program does not work well
3128           with a zero as the minor-version value (request by Chris Zubrzycki).
3129         + modify CF_MIXEDCASE_FILENAMES macro to work with cross-compiling.
3130         + modify tack to allow it to run from fallback terminfo data.
3131         > patch by Philippe Blain:
3132         + improve PutRange() by adjusting call to EmitRange() and corresponding
3133           return-value to not emit unchanged characters on the end of the
3134           range.
3135         + improve a check for changed-attribute by exiting a loop when the
3136           change is found.
3137         + improve logic in TransformLine(), eliminating a duplicated comparison
3138           in the clr_bol logic.
3139
3140 20030913
3141         > patch by Philippe Blain:
3142         + in ncurses/tty/lib_mvcur.c,
3143           move the label 'nonlocal' just before the second gettimeofday() to
3144           be able to compute the diff time when 'goto nonlocal' used.
3145           Rename 'msec' to 'microsec' in the debug-message.
3146         + in ncurses/tty/lib_mvcur.c,
3147           Use _nc_outch() in carriage return/newline movement instead of
3148           putchar() which goes to stdout.  Move test for xold>0 out of loop.
3149         + in ncurses/tinfo/setbuf.c,
3150           Set the flag SP->_buffered at the end of operations when all has been
3151           successful (typeMalloc can fail).
3152         + simplify NC_BUFFERED macro by moving check inside _nc_setbuf().
3153
3154 20030906
3155         + modify configure script to avoid using "head -1", which does not
3156           work if POSIXLY_CORRECT (sic) is set.
3157         + modify run_tic.in to avoid using wrong shared libraries when
3158           cross-compiling (Dan Kegel).
3159
3160 20030830
3161         + alter configure script help message to make it clearer that
3162           --with-build-cc does not specify a cross-compiler (suggested by Dan
3163           Kegel <dank@kegel.com>).
3164         + modify configure script to accommodate libtool 1.5, as well as add an
3165           parameter to the "--with-libtool" option which can specify the
3166           pathname of libtool (report by Chris Zubrzycki).  We note that
3167           libtool 1.5 has more than one bug in its C++ support, so it is not
3168           able to install libncurses++, for instance, if $DESTDIR or the option
3169           --with-install-prefix is used.
3170
3171 20030823
3172         > patch by Philippe Blain:
3173         + move assignments to SP->_cursrow, SP->_curscol into online_mvcur().
3174         + make baudrate computation in delay_output() consistent with the
3175           assumption in _nc_mvcur_init(), i.e., a byte is 9 bits.
3176
3177 20030816
3178         + modify logic in waddch_literal() to take into account zh_TW.Big5
3179           whose multibyte sequences may contain "printable" characters, e.g.,
3180           a "g" in the sequence "\247g" (Debian #204889, cf: 20030621).
3181         + improve storage used by _nc_safe_strcpy() by ensuring that the size
3182           is reset based on the initialization call, in case it were called
3183           after other strcpy/strcat calls (report by Philippe Blain).
3184         > patch by Philippe Blain:
3185         + remove an unused ifdef for REAL_ATTR & WANT_CHAR
3186         + correct a place where _cup_cost was used rather than _cuu_cost
3187
3188 20030809
3189         + fix a small memory leak in _nc_free_termtype().
3190         + close trace-file if trace() is called with a zero parameter.
3191         + free memory allocated for soft-key strings, in delscreen().
3192         + fix an allocation size in safe_sprintf.c for the "*" format code.
3193         + correct safe_sprintf.c to not return a null pointer if the format
3194           happens to be an empty string.  This applies to the "configure
3195           --enable-safe-sprintf" option (Redhat #101486).
3196
3197 20030802
3198         + modify casts used for ABSENT_BOOLEAN and CANCELLED_BOOLEAN (report by
3199           Daniel Jacobowitz).
3200         > patch by Philippe Blain:
3201         + change padding for change_scroll_region to not be proportional to
3202           the size of the scroll-region.
3203         + correct error-return in _nc_safe_strcat().
3204
3205 20030726
3206         + correct limit-checks in _nc_scroll_window() (report and test-case by
3207           Thomas Graf <graf@dms.at> cf: 20011020).
3208         + re-order configure checks for _XOPEN_SOURCE to avoid conflict with
3209           _GNU_SOURCE check.
3210
3211 20030719
3212         + use clr_eol in preference to blanks for bce terminals, so select and
3213           paste will have fewer trailing blanks, e.g., when using xterm
3214           (request by Vincent Lefevre).
3215         + correct prototype for wunctrl() in manpage.
3216         + add configure --with-abi-version option (discussion with Charles
3217           Wilson).
3218         > cygwin changes from Charles Wilson:
3219           + aclocal.m4: on cygwin, use autodetected prefix for import
3220             and static lib, but use "cyg" for DLL.
3221           + include/ncurses_dll.h: correct the comments to reflect current
3222             status of cygwin/mingw port.  Fix compiler warning.
3223           + misc/run_tic.in: ensure that tic.exe can find the uninstalled
3224             DLL, by adding the lib-directory to the PATH variable.
3225           + misc/terminfo.src (nxterm|xterm-color): make xterm-color
3226             primary instead of nxterm, to match XFree86's xterm.terminfo
3227             usage and to prevent circular links.
3228             (rxvt): add additional codes from rxvt.org.
3229             (rxvt-color): new alias
3230             (rxvt-xpm): new alias
3231             (rxvt-cygwin): like rxvt, but with special acsc codes.
3232             (rxvt-cygwin-native): ditto.  rxvt may be run under XWindows, or
3233             with a "native" MSWin GUI.  Each takes different acsc codes,
3234             which are both different from the "normal" rxvt's acsc.
3235             (cygwin): cygwin-in-cmd.exe window.  Lots of fixes.
3236             (cygwinDBG): ditto.
3237           + mk-1st.awk: use "cyg" for the DLL prefix, but "lib" for import
3238             and static libs.
3239
3240 20030712
3241         + update config.guess, config.sub
3242         + add triples for configuring shared libraries with the Debian
3243           GNU/FreeBSD packages (patch by Robert Millan <zeratul2@wanadoo.es>).
3244
3245 20030705
3246         + modify CF_GCC_WARNINGS so it only applies to gcc, not g++.  Some
3247           platforms have installed g++ along with the native C compiler, which
3248           would not accept gcc warning options.
3249         + add -D_XOPEN_SOURCE=500 when configuring with --enable-widec, to
3250           get mbstate_t declaration on HPUX 11.11 (report by David Ellement).
3251         + add _nc_pathlast() to get rid of casts in _nc_basename() calls.
3252         + correct a sign-extension in wadd_wch() and wecho_wchar() from
3253           20030628 (report by Tomohiro Kubota).
3254         + work around omission of btowc() and wctob() from wide-character
3255           support (sic) in NetBSD 1.6 using mbtowc() and wctomb() (report by
3256           Gabor Z Papp).
3257         + add portability note to curs_get_wstr.3x (Debian #199957).
3258
3259 20030628
3260         + rewrite wadd_wch() and wecho_wchar() to call waddch() and wechochar()
3261           respectively, to avoid calling waddch_noecho() with wide-character
3262           data, since that function assumes its input is 8-bit data.
3263           Similarly, modify waddnwstr() to call wadd_wch().
3264         + remove logic from waddnstr() which transformed multibyte character
3265           strings into wide-characters.  Rewrite of waddch_literal() from
3266           20030621 assumes its input is raw multibyte data rather than wide
3267           characters (report by Tomohiro Kubota).
3268
3269 20030621
3270         + write getyx() and related 2-return macros in terms of getcury(),
3271           getcurx(), etc.
3272         + modify waddch_literal() in case an application passes bytes of a
3273           multibyte character directly to waddch().  In this case, waddch()
3274           must reassemble the bytes into a wide-character (report by Tomohiro
3275           Kubota <kubota@debian.org>).
3276
3277 20030614
3278         + modify waddch_literal() in case a multibyte value occupies more than
3279           two cells.
3280         + modify PutAttrChar() to compute the number of character cells that
3281           are used in multibyte values.  This fixes a problem displaying
3282           double-width characters (report/test by Mitsuru Chinen
3283           <mchinen@yamato.ibm.com>).
3284         + add a null-pointer check for result of keyname() in _tracechar()
3285         + modify _tracechar() to work around glibc sprintf bug.
3286
3287 20030607
3288         + add a call to setlocale() in cursesmain.cc, making demo display
3289           properly in a UTF-8 locale.
3290         + add a fallback definition in curses.priv.h for MB_LEN_MAX (prompted
3291           by discussion with Gabor Z Papp).
3292         + use macros NCURSES_ACS() and NCURSES_WACS() to hide cast needed to
3293           appease -Wchar-subscript with g++ 3.3 (Debian #195732).
3294         + fix a redefinition of $RANLIB in the configure script when libtool
3295           is used, which broke configure on Mac OS X (report by Chris Zubrzycki
3296           <beren@mac.com>).
3297         + simplify ifdef for bool declaration in curses.h.in (suggested by
3298           Albert Chin-A-Young).
3299         + remove configure script check to allow -Wconversion for older
3300           versions of gcc (suggested by Albert Chin-A-Young).
3301
3302 20030531
3303         + regenerated html manpages.
3304         + modify ifdef's in curses.h.in that disabled use of __attribute__()
3305           for g++, since recent versions implement the cases which ncurses uses
3306           (Debian #195230).
3307         + modify _nc_get_token() to handle a case where an entry has no
3308           description, and capabilities begin on the same line as the entry
3309           name.
3310         + fix a typo in ncurses_dll.h reported by gcc 3.3.
3311         + add an entry for key_defined.3x to man_db.renames.
3312
3313 20030524
3314         + modify setcchar() to allow converting control characters to complex
3315           characters (report/test by Mitsuru Chinen <mchinen@yamato.ibm.com>).
3316         + add tkterm entry -TD
3317         + modify parse_entry.c to allow a terminfo entry with a leading
3318           2-character name (report by Don Libes).
3319         + corrected acsc in screen.teraterm, which requires a PC-style mapping.
3320         + fix trace statements in read_entry.c to use lseek() rather than
3321           tell().
3322         + fix signed/unsigned warnings from Sun's compiler (gcc should give
3323           these warnings, but it is unpredictable).
3324         + modify configure script to omit -Winline for gcc 3.3, since that
3325           feature is broken.
3326         + modify manlinks.sed to add a few functions that were overlooked since
3327           they return function pointers:  field_init, field_term, form_init,
3328           form_term, item_init, item_term, menu_init and menu_term.
3329
3330 20030517
3331         + prevent recursion in wgetch() via wgetnstr() if the connection cannot
3332           be switched between cooked/raw modes because it is not a TTY (report
3333           by Wolfgang Gutjahr <gutw@knapp.com>).
3334         + change parameter of define_key() and key_defined() to const (prompted
3335           by Debian #192860).
3336         + add a check in test/configure for ncurses extensions, since there
3337           are some older versions, etc., which would not compile with the
3338           current test programs.
3339         + corrected demo in test/ncurses.c of wgetn_wstr(), which did not
3340           convert wchar_t string to multibyte form before printing it.
3341         + corrections to lib_get_wstr.c:
3342           + null-terminate buffer passed to setcchar(), which occasionally
3343             failed.
3344           + map special characters such as erase- and kill-characters into
3345             key-codes so those will work as expected even if they are not
3346             mentioned in the terminfo.
3347         + modify PUTC() and Charable() macros to make wide-character line
3348           drawing work for POSIX locale on Linux console (cf: 20021221).
3349
3350 20030510
3351         + make typography for program options in manpages consistent (report
3352           by Miloslav Trmac <mitr@volny.cz>).
3353         + correct dependencies in Ada95/src/Makefile.in, so the builds with
3354           "--srcdir" work (report by Warren L Dodge).
3355         + correct missing definition of $(CC) in Ada95/gen/Makefile.in
3356           (reported by Warren L Dodge <warrend@mdhost.cse.tek.com>).
3357         + fix typos and whitespace in manpages (patch by Jason McIntyre
3358           <jmc@prioris.mini.pw.edu.pl>).
3359
3360 20030503
3361         + fix form_driver() cases for REQ_CLR_EOF, REQ_CLR_EOL, REQ_DEL_CHAR,
3362           REQ_DEL_PREV and REQ_NEW_LINE, which did not ensure the cursor was at
3363           the editing position before making modifications.
3364         + add test/demo_forms and associated test/edit_field.c demos.
3365         + modify test/configure.in to use test/modules for the list of objects
3366           to compile rather than using the list of programs.
3367
3368 20030419
3369         + modify logic of acsc to use the original character if no mapping is
3370           defined, noting that Solaris does this.
3371         + modify ncurses 'b' test to avoid using the acs_map[] array since
3372           20021231 changes it to no longer contain information from the acsc
3373           string.
3374         + modify makefile rules in c++, progs, tack and test to ensure that
3375           the compiler flags (e.g., $CFLAGS or $CCFLAGS) are used in the link
3376           command (report by Jose Luis Rico Botella <informatica@serpis.com>).
3377         + modify soft-key initialization to use A_REVERSE if A_STANDOUT would
3378           not be shown when colors are used, i.e., if ncv#1 is set in the
3379           terminfo as is done in "screen".
3380
3381 20030412
3382         + add a test for slk_color(), in ncurses.c
3383         + fix some issues reported by valgrind in the slk_set() and slk_wset()
3384           code, from recent rewrite.
3385         + modify ncurses 'E' test to use show previous label via slk_label(),
3386           as in 'e' test.
3387         + modify wide-character versions of NewChar(), NewChar2() macros to
3388           ensure that the whole struct is initialized.
3389
3390 20030405
3391         + modify setupterm() to check if the terminfo and terminal-modes have
3392           already been read.  This ensures that it does not reinvoke
3393           def_prog_mode() when an application calls more than one function,
3394           such as tgetent() and initscr() (report by Olaf Buddenhagen).
3395
3396 20030329
3397         + add 'E' test to ncurses.c, to exercise slk_wset().
3398         + correct handling of carriage-return in wgetn_wstr(), used in demo of
3399           slk_wset().
3400         + first draft of slk_wset() function.
3401
3402 20030322
3403         + improved warnings in tic when suppressing items to fit in termcap's
3404           1023-byte limit.
3405         + built a list in test/README showing which externals are being used
3406           by either programs in the test-directory or via internal library
3407           calls.
3408         + adjust include-options in CF_ETIP_DEFINES to avoid missing
3409           ncurses_dll.h, fixing special definitions that may be needed for
3410           etip.h (reported by Greg Schafer <gschafer@zip.com.au>).
3411
3412 20030315
3413         + minor fixes for cardfile.c, to make it write the updated fields to
3414           a file when ^W is given.
3415         + add/use _nc_trace_bufcat() to eliminate some fixed buffer limits in
3416           trace code.
3417
3418 20030308
3419         + correct a case in _nc_remove_string(), used by define_key(), to avoid
3420           infinite loop if the given string happens to be a substring of other
3421           strings which are assigned to keys (report by John McCutchan).
3422         + add key_defined() function, to tell which keycode a string is bound
3423           to (discussion with John McCutchan <ttb@tentacle.dhs.org>).
3424         + correct keybound(), which reported definitions in the wrong table,
3425           i.e., the list of definitions which are disabled by keyok().
3426         + modify demo_keydef.c to show the details it changes, and to check
3427           for errors.
3428
3429 20030301
3430         + restructured test/configure script, make it work for libncursesw.
3431         + add description of link_fieldtype() to manpage (report by
3432           L Dee Holtsclaw <dee@sunbeltsoft.com>).
3433
3434 20030222
3435         + corrected ifdef's relating to configure check for wchar_t, etc.
3436         + if the output is a socket or other non-tty device, use 1 millisecond
3437           for the cost in mvcur; previously it was 9 milliseconds because the
3438           baudrate was not known.
3439         + in _nc_get_tty_mode(), initialize the TTY buffer on error, since
3440           glibc copies uninitialized data in that case, as noted by valgrind.
3441         + modify tput to use the same parameter analysis as tparm() does, to
3442           provide for user-defined strings, e.g., for xterm title, a
3443           corresponding capability might be
3444                 title=\E]2;%p1%s^G,
3445         + modify MKlib_gen.sh to avoid passing "#" tokens through the C
3446           preprocessor.  This works around Mac OS X's preprocessor, which
3447           insists on adding a blank on each side of the token (report/analysis
3448           by Kevin Murphy <murphy@genome.chop.edu>).
3449
3450 20030215
3451         + add configure check for wchar_t and wint_t types, rather than rely
3452           on preprocessor definitions.  Also work around for gcc fixinclude
3453           bug which creates a shadow copy of curses.h if it sees these symbols
3454           apparently typedef'd.
3455         + if database is disabled, do not generate run_tic.sh
3456         + minor fixes for memory-leak checking when termcap is read.
3457
3458 20030208
3459         + add checking in tic for incomplete line-drawing character mapping.
3460         + update configure script to reflect fix for AC_PROG_GCC_TRADITIONAL,
3461           which is broken in autoconf 2.5x for Mac OS X 10.2.3 (report by
3462           Gerben Wierda <Sherlock@rna.nl>).
3463         + make return value from _nc_printf_string() consistent.  Before,
3464           depending on whether --enable-safe-sprintf was used, it might not be
3465           cached for reallocating.
3466
3467 20030201
3468         + minor fixes for memory-leak checking in lib_tparm.c, hardscroll.c
3469         + correct a potentially-uninitialized value if _read_termtype() does
3470           not read as much data as expected (report by Wolfgang Rohdewald
3471           <wr6@uni.de>).
3472         + correct several places where the aclocal.m4 macros relied on cache
3473           variable names which were incompatible (as usual) between autoconf
3474           2.13 and 2.5x, causing the test for broken-linker to give incorrect
3475           results (reports by Gerben Wierda <Sherlock@rna.nl> and Thomas Esser
3476           <te@dbs.uni-hannover.de>).
3477         + do not try to open gpm mouse driver if standard output is not a tty;
3478           the gpm library does not make this check (bug report for dialog
3479           by David Oliveira <davidoliveira@develop.prozone.ws>).
3480
3481 20030125
3482         + modified emx.src to correspond more closely to terminfo.src, added
3483           emx-base to the latter -TD
3484         + add configure option for FreeBSD sysmouse, --with-sysmouse, and
3485           implement support for that in lib_mouse.c, lib_getch.c
3486
3487 20030118
3488         + revert 20030105 change to can_clear_with(), does not work for the
3489           case where the update is made on cells which are blanks with
3490           attributes, e.g., reverse.
3491         + improve ifdef's to guard against redefinition of wchar_t and wint_t
3492           in curses.h (report by Urs Jansen).
3493
3494 20030111
3495         + improve mvcur() by checking if it is safe to move when video
3496           attributes are set (msgr), and if not, reset/restore attributes
3497           within that function rather than doing it separately in the GoTo()
3498           function in tty_update.c (suggested by Philippe Blain).
3499         + add a message in run_tic.in to explain more clearly what does not
3500           work when attempting to create a symbolic link for /usr/lib/terminfo
3501           on OS/2 and other platforms with no symbolic links (report by John
3502           Polterak).
3503         + change several sed scripts to avoid using "\+" since it is not a BRE
3504           (basic regular expression).  One instance caused terminfo.5 to be
3505           misformatted on FreeBSD (report by Kazuo Horikawa
3506           <horikawa@FreeBSD.org> (see FreeBSD docs/46709)).
3507         + correct misspelled 'wint_t' in curs_get_wch.3x (Michael Elkins).
3508
3509 20030105
3510         + improve description of terminfo operators, especially static/dynamic
3511           variables (comments by Mark I Manning IV <mark4th@earthlink.net>).
3512         + demonstrate use of FIELDTYPE by modifying test/ncurses 'r' test to
3513           use the predefined TYPE_ALPHA field-type, and by defining a
3514           specialized type for the middle initial/name.
3515         + fix MKterminfo.sh, another workaround for POSIXLY_CORRECT misfeature
3516           of sed 4.0
3517         > patch by Philippe Blain:
3518         + optimize can_clear_with() a little by testing first if the parameter
3519           is indeed a "blank".
3520         + simplify ClrBottom() a little by allowing it to use clr_eos to clear
3521           sections as small as one line.
3522         + improve ClrToEOL() by checking if clr_eos is available before trying
3523           to use it.
3524         + use tputs() rather than putp() in a few cases in tty_update.c since
3525           the corresponding delays are proportional to the number of lines
3526           affected: repeat_char, clr_eos, change_scroll_region.
3527
3528 20021231
3529         + rewrite of lib_acs.c conflicts with copying of SCREEN acs_map to/from
3530           global acs_map[] array; removed the lines that did the copying.
3531
3532 20021228
3533         + change some overlooked tputs() calls in scrolling code to use putp()
3534           (report by Philippe Blain).
3535         + modify lib_getch.c to avoid recursion via wgetnstr() when the input
3536           is not a tty and consequently mode-changes do not work (report by
3537           <R.Chamberlin@querix.com>).
3538         + rewrote lib_acs.c to allow PutAttrChar() to decide how to render
3539           alternate-characters, i.e., to work with Linux console and UTF-8
3540           locale.
3541         + correct line/column reference in adjust_window(), needed to make
3542           special windows such as curscr track properly when resizing (report
3543           by Lucas Gonze <lgonze@panix.com>).
3544         > patch by Philippe Blain:
3545         + correct the value used for blank in ClrBottom() (broken in 20000708).
3546         + correct an off-by-one in GoTo() parameter in _nc_scrolln().
3547
3548 20021221
3549         + change several tputs() calls in scrolling code to use putp(), to
3550           enable padding which may be needed for some terminals (patch by
3551           Philippe Blain).
3552         + use '%' as sed substitute delimiter in run_tic script to avoid
3553           problems with pathname delimiters such as ':' and '@' (report by John
3554           Polterak).
3555         + implement a workaround so that line-drawing works with screen's
3556           crippled UTF-8 support (tested with 3.9.13).  This only works with
3557           the wide-character support (--enable-widec); the normal library will
3558           simply suppress line-drawing when running in a UTF-8 locale in screen.
3559
3560 20021214
3561         + allow BUILD_CC and related configure script variables to be
3562           overridden from the environment.
3563         + make build-tools variables in ncurses/Makefile.in consistent with
3564           the configure script variables (report by Maciej W Rozycki).
3565         + modify ncurses/modules to allow
3566                 configure --disable-leaks --disable-ext-funcs
3567           to build (report by Gary Samuelson).
3568         + fix a few places in configure.in which lacked quotes (report by
3569           Gary Samuelson <gary.samuelson@verizon.com>).
3570         + correct handling of multibyte characters in waddch_literal() which
3571           force wrapping because they are started too late on the line (report
3572           by Sam Varshavchik).
3573         + small fix for CF_GNAT_VERSION to ignore the help-message which
3574           gnatmake adds to its version-message.
3575         > Maciej W Rozycki <macro@ds2.pg.gda.pl>:
3576         + use AC_CHECK_TOOL to get proper values for AR and LD for cross
3577           compiling.
3578         + use $cross_compiling variable in configure script rather than
3579           comparing $host_alias and $target alias, since "host" is
3580           traditionally misused in autoconf to refer to the target platform.
3581         + change configure --help message to use "build" rather than "host"
3582           when referring to the --with-build-XXX options.
3583
3584 20021206
3585         + modify CF_GNAT_VERSION to print gnatmake's version, and to allow for
3586           possible gnat versions such as 3.2 (report by Chris Lingard
3587           <chris@stockwith.co.uk>).
3588         + modify #define's for CKILL and other default control characters in
3589           tset to use the system's default values if they are defined.
3590         + correct interchanged defaults for kill and interrupt characters
3591           in tset, which caused it to report unnecessarily (Debian #171583).
3592         + repair check for missing C++ compiler, which is broken in autoconf
3593           2.5x by hardcoding it to g++ (report by Martin Mokrejs).
3594         + update config.guess, config.sub (2002-11-30)
3595         + modify configure script to skip --with-shared, etc., when the
3596           --with-libtool option is given, since they would be ignored anyway.
3597         + fix to allow "configure --with-libtool --with-termlib" to build.
3598         + modify configure script to show version number of libtool, to help
3599           with bug reports.  libtool still gets confused if the installed
3600           ncurses libraries are old, since it ignores the -L options at some
3601           point (tested with libtool 1.3.3 and 1.4.3).
3602         + reorder configure script's updating of $CPPFLAGS and $CFLAGS to
3603           prevent -I options in the user's environment from introducing
3604           conflicts with the build -I options (may be related to reports by
3605           Patrick Ash and George Goffe).
3606         + rename test/define_key.c to test/demo_defkey.c, test/keyok.c to
3607           test/demo_keyok.c to allow building these with libtool.
3608
3609 20021123
3610         + add example program test/define_key.c for define_key().
3611         + add example program test/keyok.c for keyok().
3612         + add example program test/ins_wide.c for wins_wch() and wins_wstr().
3613         + modify wins_wch() and wins_wstr() to interpret tabs by using the
3614           winsch() internal function.
3615         + modify setcchar() to allow for wchar_t input strings that have
3616           more than one spacing character.
3617
3618 20021116
3619         + fix a boundary check in lib_insch.c (patch by Philippe Blain).
3620         + change type for *printw functions from NCURSES_CONST to const
3621           (prompted by comment by Pedro Palhoto Matos <plpm@mega.ist.utl.pt>,
3622           but really from a note on X/Open's website stating that either is
3623           acceptable, and the latter will be used in a future revision).
3624         + add xterm-1002, xterm-1003 terminfo entries to demonstrate changes in
3625           lib_mouse.c (20021026) -TD
3626         + add screen-bce, screen-s entries from screen 3.9.13 (report by
3627           Adam Lazur <zal@debian.org>) -TD
3628         + add mterm terminfo entries -TD
3629
3630 20021109
3631         + split-out useful fragments in terminfo for vt100 and vt220 numeric
3632           keypad, i.e., vt100+keypad, vt100+pfkeys, vt100+fnkeys and
3633           vt220+keypad.  The last as embedded in various entries had ka3 and
3634           kb2 interchanged (report/discussion with Leonard den Ottolander
3635           <leonardjo@hetnet.nl>).
3636         + add check in tic for keypads consistent with vt100 layout.
3637         + improve checks in tic for color capabilities
3638
3639 20021102
3640         + check for missing/empty/illegal terminfo name in _nc_read_entry()
3641           (report by Martin Mokrejs, where $TERM was set to an empty string).
3642         + rewrote lib_insch.c, combining it with lib_insstr.c so both handle
3643           tab and other control characters consistently (report by Philippe
3644           Blain).
3645         + remove an #undef for KEY_EVENT from curses.tail used in the
3646           experimental NCURSES_WGETCH_EVENTS feature.  The #undef confuses
3647           dpkg's build script (Debian #165897).
3648         + fix MKlib_gen.sh, working around the ironically named POSIXLY_CORRECT
3649           feature of GNU sed 4.0 (reported by Ervin Nemeth <airwin@inf.bme.hu>).
3650
3651 20021026
3652         + implement logic in lib_mouse.c to handle position reports which are
3653           generated when XFree86 xterm is initialized with private modes 1002
3654           or 1003.  These are returned to the application as the
3655           REPORT_MOUSE_POSITION mask, which was not implemented.  Tested both
3656           with ncurses 'a' menu (prompted by discussion with Larry Riedel
3657           <Larry@Riedel.org>).
3658         + modify lib_mouse.c to look for "XM" terminfo string, which allows
3659           one to override the escape sequence used to enable/disable mouse
3660           mode.  In particular this works for XFree86 xterm private modes
3661           1002 and 1003.  If "XM" is missing (note that this is an extended
3662           name), lib_mouse uses the conventional private mode 1000.
3663         + correct NOT_LOCAL() macro in lib_mvcur.c to refer to screen_columns
3664           where it used screen_lines (report by Philippe Blain).
3665         + correct makefile rules for the case when both --with-libtool and
3666           --with-gpm are given (report by Mr E_T <troll@logi.net.au>).
3667         + add note to terminfo manpage regarding the differences between
3668           setaf/setab and setf/setb capabilities (report by Pavel Roskin).
3669
3670 20021019
3671         + remove redundant initialization of TABSIZE in newterm(), since it is
3672           already done in setupterm() (report by Philippe Blain).
3673         + add test/inserts.c, to test winnstr() and winsch().
3674         + replace 'sort' in dist.mk with script that sets locale to POSIX.
3675         + update URLs in announce.html.in (patch by Frederic L W Meunier).
3676         + remove glibc add-on files, which are no longer needed (report by
3677           Frederic L W Meunier).
3678
3679 20021012 5.3 release for upload to ftp.gnu.org
3680         + modify ifdef's in etip.h.in to allow the etip.h header to compile
3681           with gcc 3.2 (patch by Dimitar Zhekov <jimmy@is-vn.bg>).
3682         + add logic to setupterm() to make it like initscr() and newterm(),
3683           by checking for $NCURSES_TRACE environment variable and enabling
3684           the debug trace in that case.
3685         + modify setupterm() to ensure that it initializes the baudrate, for
3686           applications such as tput (report by Frank Henigman).
3687         + modify definition of bits used for command-line and library debug
3688           traces to avoid overlap, using new definition TRACE_SHIFT to relate
3689           the two.
3690         + document tput's interpretation of parameterized strings according to
3691           whether parameters are given, etc. (discussion with Robert De Bath).
3692
3693 20021005 pre-release
3694         + correct winnwstr() to account for non-character cells generated when
3695           a double-width character is added (report by Michael Bienia
3696           <michael@vorlon.ping.de>).
3697         + modify _nc_viswbuf2n() to provide better results using wctomb().
3698         + correct logic in _nc_varargs() which broke tracing of parameters for
3699           formats such as "%.*s".
3700         + correct scale factor in linux-c and linux-c-nc terminfo entries
3701           (report Floyd Davidson).
3702         + change tic -A option to -t, add the same option to infocmp for
3703           consistency.
3704         + correct "%c" implementation in lib_tparm.c, which did not map a null
3705           character to a 128 (cf: 980620) (patch by Frank Henigman
3706           <fjhenigman@mud.cgl.uwaterloo.ca>).
3707
3708 20020928 pre-release
3709         + modify MKkey_defs.sh to check for POSIX sort -k option, use that if
3710           it is found, to accommodate newer utility which dropped the
3711           compatibility support for +number options (reported by Andrey A
3712           Chernov).
3713         + modify linux terminfo entry to use color palette feature from
3714           linux-c-nc entry (comments by Tomasz Wasiak and Floyd Davidson).
3715         + restore original color definitions in endwin() if init_color() was
3716           used, and resume those colors on the next doupdate() or refresh()
3717           (report by Tomasz Wasiak <tjwasiak@komputom.com.pl>).
3718         + improve debug-traces by modifying MKlib_gen.sh to generate calls
3719           to returnBool() and returnAttr().
3720         + add/use _nc_visbufn() and _nc_viswbufn() to limit the debug trace
3721           of waddnstr() and similar functions to match the parameters as used.
3722         + add/use _nc_retrace_bool() and _nc_retrace_unsigned().
3723         + correct type used by _nc_retrace_chtype().
3724         + add debug traces to some functions in lib_mouse.c
3725         + modify lib_addch.c to handle non-spacing characters.
3726         + correct parameter of RemAttr() in lib_bkgd.c, which caused the c++
3727           demo's boxes to lose the A_ALTCHARSET flag (broken in 20020629).
3728         + correct width computed in _tracedump(), which did not account for
3729           the attributes (broken in 20010602).
3730         + modify test/tracemunch to replace addresses for windows other than
3731           curscr, newscr and stdscr with window0, window1, etc.
3732
3733 20020921 pre-release
3734         + redid fix for edit_man.sed path.
3735         + workaround for Cygwin bug which makes subprocess writes to stdout
3736           result in core dump.
3737         + documented getbegx(), etc.
3738         + minor fixes to configure script to use '%' consistently as a sed
3739           delimiter rather than '@'.
3740         > patch by Philippe Blain:
3741         + add check in lib_overlay.c to ensure that the windows to be merged
3742           actually overlap, and in copywin(), limit the area to be touched
3743           to the lines given for the destination window.
3744
3745 20020914 pre-release
3746         + modified curses.h so that if the wide-character version is installed
3747           overwriting /usr/include/curses.h, and if it relied on libutf8.h,
3748           then applications that use that header for wide-character support
3749           must define HAVE_LIBUTF8_H.
3750         + modify putwin(), getwin() and dupwin() to allow them to operate on
3751           pads (request by Philippe Blain).
3752         + correct attribute-merging in wborder(), broken in 20020216 (report
3753           by Tomasz Wasiak <tjwasiak@grubasek.komputom.com.pl>).
3754         > patch by Philippe Blain:
3755         + corrected pop-counts in tparam_internal() to '!' and '~' cases.
3756         + use sizeof(NCURSES_CH_T) in one place that used sizeof(chtype).
3757         + remove some unused variables from mvcur test-driver.
3758
3759 20020907 pre-release
3760         + change configure script to allow install of widec-character
3761           (ncursesw) headers to overwrite normal (ncurses) headers, since the
3762           latter is a compatible subset of the former.
3763         + fix path of edit_man.sed in configure script, needed to regenerate
3764           html manpages on Debian.
3765         + fix mismatched enums in vsscanf.c, which caused warning on Solaris.
3766         + update README.emx to reflect current patch used for autoconf.
3767         + change web- and ftp-site to invisible-island.net
3768         > patch by Philippe Blain:
3769         + change case for 'P' in tparam_internal() to indicate that it pops
3770           a variable from the stack.
3771         + correct sense of precision and width in parse_format(), to avoid
3772           confusion.
3773         + modify lib_tparm.c, absorb really_get_space() into get_space().
3774         + modify getwin() and dupwin() to copy the _notimeout, _idlok and
3775           _idcok window fields.
3776         + better fix for _nc_set_type(), using typeMalloc().
3777
3778 20020901 pre-release
3779         + change minor version to 3, i.e., ncurses 5.3
3780         + update config.guess, config.sub
3781         + retest build with each configure option; minor ifdef fixes.
3782         + make keyname() return a null pointer rather than "UNKNOWN STRING" to
3783           match XSI.
3784         + modify handling of wide line-drawing character functions to use the
3785           normal line-drawing characters when not in UTF-8 locale.
3786         + add check/fix to comp_parse.c to suppress warning about missing acsc
3787           string.  This happens in configurations where raw termcap information
3788           is processed; tic already does this and other checks.
3789         + modify tic's check for ich/ich1 versus rmir/smir to only warn about
3790           ich1, to match xterm patch #70 notes.
3791         + moved information for ripped-off lines into SCREEN struct to allow
3792           use in resizeterm().
3793         + add experimental wgetch_events(), ifdef'd with NCURSES_WGETCH_EVENTS
3794           (adapted from patch by Ilya Zakharevich - see ncurses/README.IZ).
3795         + amend check in kgetch() from 20020824 to look only for function-keys,
3796           otherwise escape sequences are not resolved properly.
3797         > patch by Philippe Blain:
3798         + removed redundant assignment to SP->_checkfd from newterm().
3799         + check return-value of setupterm() in restartterm().
3800         + use sizeof(NCURSES_CH_T) in a few places that used sizeof(chtype).
3801         + prevent dupwin() from duplicating a pad.
3802         + prevent putwin() from writing a pad.
3803         + use typeRealloc() or typeMalloc() in preference to direct calls on
3804           _nc_doalloc().
3805
3806 20020824
3807         + add a check in kgetch() for cooked characters in the fifo to avoid
3808           calling fifo_push() when a KEY_RESIZE is available (report/analysis
3809           by Sam Varshavchik <mrsam@courier-mta.com>).
3810         + fix an overlooked case for bugzilla #68199 (Philippe Blain).
3811         + ensure clearerr() is called before using ferror() e.g., in
3812           lib_screen.c (report by Philippe Blain).
3813
3814 20020817
3815         + modify lib_screen.c and lib_newwin.c to maintain the SCREEN-specific
3816           pointers for curscr/stdscr/newscr when scr_save() and scr_restore()
3817           modify the global curscr/stdscr/newscr variables.  Fixes Redhat
3818           bugzilla #68199 dated 2002-07-07.
3819         + add checks for null pointer in calls to tparm() and tgoto() based on
3820           FreeBSD bug report.  If ncurses were built with termcap support, and
3821           the first call to tgoto() were a zero-length string, the result would
3822           be a null pointer, which was not handled properly.
3823         + correct a typo in terminfo.head, which gave the octal code for colon
3824           rather than comma.
3825         + remove the "tic -u" option from 20020810, since it did not account
3826           for nested "tc=" clauses, and when that was addressed, was still
3827           unsatisfactory.
3828
3829 20020810
3830         + add tic -A option to suppress capabilities which are commented out
3831           when translating to termcap.
3832         + add tic -u option to provide older behavior of "tc=" clauses.
3833         + modified tic to expand all but the final "tc=" clause in a termcap
3834           entry, to accommodate termcap libraries which do not handle multiple
3835           tc clauses.
3836         + correct typo in curs_inopts.3x regarding CS8/CS7 usage (report by
3837           Philippe Blain).
3838         + remove a couple of redundant uses of A_ATTRIBUTES in expressions
3839           using AttrOf(), which already incorporates that mask (report by
3840           Philippe Blain).
3841         + document TABSIZE variable.
3842         + add NCURSES_ASSUMED_COLORS environment variable, to allow users to
3843           override compiled-in default black-on-white assumption used in
3844           assume_default_colors().
3845         + correct an off-by-one comparison against max_colors in COLORFGBG
3846           logic.
3847         + correct a use of uninitialized memory found by valgrind (reported by
3848           Olaf Buddenhagen <olafBuddenhagen@web.de>).
3849         + modified wresize() to ensure that a failed realloc will not corrupt
3850           the window structure, and to make subwindows fit within the resized
3851           window (completes Debian #87678, #101699)
3852
3853 20020803
3854         + fix an off-by-one in lib_pad.c check for limits of pad (patch by
3855           Philippe Blain).
3856         + revise logic for BeOS in lib_twait.c altered in 20011013 to restore
3857           logic used by lib_getch.c's support for GPM or EMX mouse (report by
3858           Philippe Blain)
3859         + remove NCURSES_CONST from several prototypes in curses.wide, to make
3860           the --enable-const --enable-widec configure options to work together
3861           (report by George Goffe <grgoffe@yahoo.com>).
3862
3863 20020727
3864         + finish no-leak checking in cardfile.c, using this for testing changes
3865           to resizeterm().
3866         + simplify _nc_freeall() using delscreen().
3867
3868 20020720
3869         + check error-return from _nc_set_tty_mode() in _nc_initscr() and
3870           reset_prog_mode() (report/patch by Philippe Blain).
3871         + regenerate configure using patch for autoconf 2.52, to address
3872           problem with identifying C++ bool type.
3873         + correct/improve logic to produce an exit status for errors in tput,
3874           which did not exit with an error when told to put a string not in the
3875           current terminfo entry (report by David Gomez <david@pleyades.net>).
3876         + modify configure script AC_OUTPUT() call to work around defect in
3877           autoconf 2.52 which adds an ifdef'd include to the generated
3878           configure definitions.
3879         + remove fstat() check from scr_init(), which also fixes a missing
3880           include for <sys/stat.h> from 20020713 (reported by David Ellement,
3881           fix suggested by Philippe Blain).
3882         + update curs_scanw.3x manpage to note that XSI curses differs from
3883           SVr4 curses: return-values are incompatible.
3884         + correct several prototypes in manpages which used const
3885           inconsistently with the curses.h file, and removed spurious const's
3886           in a few places from curses.h, e.g., for wbkgd() (report by Glenn
3887           Maynard <glenn@zewt.org>).
3888         + change internal type used by tparm() to long, to work with LP64 model.
3889         + modify nc_alloc.h to allow building with g++, for testing.
3890
3891 20020713
3892         + add resize-handling to cardfile.c test program.
3893         + altered resizeterm() to avoid having it fail when a child window
3894           cannot be resized because it would be larger than its parent.  (More
3895           work must be done on this, but it works well enough to integrate).
3896         + improve a limit-check in lib_refresh.c
3897         + remove check in lib_screen.c relating dumptime to file's modification
3898           times, since that would not necessarily work for remotely mounted
3899           filesystems.
3900         + modify lrtest to simplify debugging changes to resizeterm, e.g.,
3901           t/T commands to enable/disable tracing.
3902         + updated status of multibyte support in TO-DO.
3903         + update contact info in source-files (patch by Juergen Pfeifer).
3904
3905 20020706
3906         + add Caps.hpux11, as an example.
3907         + modify version_filter(), used to implement -R option for tic and
3908           infocmp, to use computed array offsets based on the Caps.* file which
3909           is actually configured, rather than constants which correspond to
3910           the Caps file.
3911         + reorganized lib_raw.c to avoid updating SP and cur_term state if the
3912           functions fail (reported by Philippe Blain).
3913         + add -Wundef to gcc warnings, adjust a few ifdef's to accommodate gcc.
3914
3915 20020629
3916         + correct parameters to setcchar() in ncurses.c (cf: 20020406).
3917         + set locale in most test programs (view.c and ncurses.c were the
3918           only ones).
3919         + add configure option --with-build-cppflags (report by Maksim A
3920           Nikulin <M.A.Nikulin@inp.nsk.su>).
3921         + correct a typo in wide-character logic for lib_bkgnd.c (Philippe
3922           Blain).
3923         + modify lib_wacs.c to not cancel the acsc, smacs, rmacs strings when
3924           in UTF-8 locale.  Wide-character functions use Unicode values, while
3925           narrow-character functions use the terminfo data.
3926         + fix a couple of places in Ada95/samples which did not compile with
3927           gnat 3.14
3928         + modify mkinstalldirs so the DOS-pathname case is locale-independent.
3929         + fix locale problem in MKlib_gen.sh by forcing related variables to
3930           POSIX (C), using same approach as autoconf (set variables only if
3931           they were set before).  Update MKterminfo.sh and MKtermsort.sh to
3932           match.
3933
3934 20020622
3935         + add charset to generated html.
3936         + add mvterm entry, adapted from a FreeBSD bug-report by Daniel Rudy
3937           <dcrudy@pacbell.net> -TD
3938         + add rxvt-16color, ibm+16color entries -TD
3939         + modify check in --disable-overwrite option so that it is used by
3940           default unless the --prefix/$prefix value is not /usr, in attempt to
3941           work around packagers, e.g., for Sun's freeware, who do not read the
3942           INSTALL notes.
3943
3944 20020615
3945         + modify wgetch() to allow returning ungetch'd KEY_RESIZE as a function
3946           key code in get_wch().
3947         + extended resize-handling in test/ncurses 'a' menu to the entire
3948           stack of windows created with 'w' commands.
3949         + improve $COLORFGBG feature by interpreting an out-of-range color
3950           value as an SGR 39 or 49, for foreground/background respectively.
3951         + correct a typo in configure --enable-colorfgbg option, and move it
3952           to the experimental section (cf: 20011208).
3953
3954 20020601
3955         + add logic to dump_entry.c to remove function-key definitions that do
3956           not fit into the 1023-byte limit for generated termcaps.  This makes
3957           hds200 fit.
3958         + more improvements to tic's warnings, including logic to ignore
3959           differences between delay values in sgr strings.
3960         + move definition of KEY_RESIZE into MKkeydefs.sh script, to
3961           accommodate Caps.osf1r5 which introduced a conflicting definition.
3962
3963 20020525
3964         + add simple resize-handling in test/ncurses.c 'a' menu.
3965         + fixes in keyname() and _tracechar() to handle negative values.
3966         + make tic's warnings about mismatches in sgr strings easier to follow.
3967         + correct tic checks for number of parameters in smgbp and smglp.
3968         + improve scoansi terminfo entry, and add scoansi-new entry -TD
3969         + add pcvt25-color terminfo entry -TD
3970         + add kf13-kf48 strings to cons25w terminfo entry (reported by Stephen
3971           Hurd <deuce@lordlegacy.org> in newsgroup lucky.freebsd.bugs) -TD
3972         + add entrypoint _nc_trace_ttymode(), use this to distinguish the
3973           Ottyb and Nttyb members of terminal (aka cur_term), for tracing.
3974
3975 20020523
3976         + correct and simplify logic for lib_pad.c change in 20020518 (reported
3977           by Mike Castle).
3978
3979 20020518
3980         + fix lib_pad.c for case of drawing a double-width character which
3981           falls off the left margin of the pad (patch by Kriang Lerdsuwanakij
3982           <lerdsuwa@users.sourceforge.net>)
3983         + modify configure script to work around broken gcc 3.1 "--version"
3984           option, which adds unnecessary trash to the requested information.
3985         + adjust ifdef's in case SIGWINCH is not defined, e.g., with DJGPP
3986           (reported by Ben Decker <deckerben@freenet.de>).
3987
3988 20020511
3989         + implement vid_puts(), vid_attr(), term_attrs() based on the narrow-
3990           character versions as well.
3991         + implement erasewchar(), killwchar() based on erasechar() and
3992           killchar().
3993         + modify erasechar() and killchar() to return ERR if the value was
3994           VDISABLE.
3995         + correct a bug in wresize() in handling subwindows (based on patch by
3996           Roger Gammans <rgammans@computer-surgery.co.uk>, report by Scott Beck
3997           <scott@gossamer-threads.com>).
3998         + improve test/tclock.c by making the second-hand update more often
3999           if gettimeofday() is available.
4000
4001 20020429
4002         + workaround for Solaris sed with MKlib_gen.sh (reported by Andy
4003           Tsouladze <andyt@mypoints.com>).
4004
4005 20020427
4006         + correct return-value from getcchar(), making it consistent with
4007           Solaris and Tru64.
4008         + reorder loops that generate makefile rules for different models vs
4009           subsets so configure --with-termlib works again.  This was broken by
4010           logic added to avoid duplicate rules in changes to accommodate cygwin
4011           dll's (reported by George.R.Goffe@seagate.com).
4012         + update config.guess, config.sub
4013
4014 20020421
4015         + modify ifdef's in write_entry.c to allow use of symbolic links on
4016           platforms with no hard links, e.g., BeOS.
4017         + modify a few includes to allow compile with BeOS, which has stdbool.h
4018           with a conflicting definition for 'bool' versus its OS.h definition.
4019         + amend MKlib_gen.sh to work with gawk, which defines 'func' as an
4020           alias for 'function'.
4021
4022 20020420
4023         + correct form of prototype for ripoffline().
4024         + modify MKlib_gen.sh to test that all functions marked as implemented
4025           can be linked.
4026
4027 20020413
4028         + add manpages: curs_get_wstr.3x, curs_in_wchstr.3x
4029         + implement wgetn_wstr().
4030         + implement win_wchnstr().
4031         + remove redefinition of unget_wch() in lib_gen.c (reported by
4032           Jungshik Shin <jshin@jtan.com>).
4033
4034 20020406
4035         + modified several of the test programs to allow them to compile with
4036           vendor curses implementations, e.g., Solaris, AIX -TD
4037
4038 20020323
4039         + modified test/configure to allow configuring against ncursesw.
4040         + change WACS_xxx definition to use address, to work like Tru64 curses.
4041
4042 20020317
4043         + add 'e' and 'm' toggles to 'a', 'A' tests in ncurses.c to demonstrate
4044           effect of echo/noecho and meta modes.
4045         + add 'A' test to ncurses.c to demonstrate wget_wch() and related
4046           functions.
4047         + add manpage: curs_get_wch.3x
4048         + implement unget_wch().
4049         + implement wget_wch().
4050
4051 20020310
4052         + regenerated html manpages.
4053         + add manpages: curs_in_wch.3x, curs_ins_wch.3x, curs_ins_wstr.3x
4054         + implement wins_wch().
4055         + implement win_wch().
4056         + implement wins_nwstr(), wins_wstr().
4057
4058 20020309
4059         + add manpages: curs_addwstr.3x, curs_winwstr.3x
4060         + implement winnwstr(), winwstr().
4061
4062 20020223
4063         + add manpages: curs_add_wchstr.3x, curs_bkgrnd.3x
4064         + document wunctrl, key_name.
4065         + implement key_name().
4066         + remove const's in lib_box.c incorrectly leftover after splitting off
4067           lib_box_set.c
4068         + update llib-lncurses, llib-ncursesw, fix configure script related to
4069           these.
4070
4071 20020218
4072         + remove quotes on "SYNOPSIS" in man/curs_box_set.3x, which resulted
4073           in spurious symlinks on install.
4074
4075 20020216
4076         + implement whline_set(), wvline_set(), add manpage curs_border_set.
4077         + add subtest 'b' to 'F' and 'f' in ncurses.c to demonstrate use of
4078           box() and box_set() functions.
4079         + add subtest 'u' to 'F' in ncurses.c, to demonstrate use of addstr()
4080           given UTF-8 string equivalents of WACS_xxx symbols.
4081         + minor fixes to several manpages based on groff -ww output.
4082         + add descriptions of external variables of termcap interface to
4083           the manpage (report by Bruce Evans <bde@zeta.org.au>).
4084         > patches by Bernhard Rosenkraenzer:
4085         + correct configure option --with-bool, which was executed as
4086           --with-ospeed.
4087         + add quotes for parameters of --with-bool and --with-ospeed configure
4088           options.
4089         > patch by Sven Verdoolaege (report by Gerhard Haering
4090           <haering_linux@gmx.de>):
4091         + correct typos in definitions of several wide-character macros:
4092           waddwstr, wgetbkgrnd, mvaddwstr, mvwadd_wchnstr, mvwadd_wchnstr,
4093           mvwaddwstr.
4094         + pass $(CPPFLAGS) to MKlib_gen.sh, thereby fixing a missing definition
4095           of _XOPEN_SOURCE_EXTENDED, e.g., on Solaris
4096
4097 20020209
4098         + implement wide-acs characters for UTF-8 locales.  When in UTF-8
4099           locale, ignore narrow version of acs.  Add 'F' test to test/ncurses.c
4100           to demonstrate.
4101         + correct prototype in keybound manpage (noted from a Debian mailing
4102           list item).
4103
4104 20020202
4105         + add several cases to the wscanw() example in testcurs.c, showing the
4106           format.
4107         + implement a simple vsscanf() fallback function which uses the %n
4108           conversion to help parse the input data (prompted by discussion with
4109           Albert Chin-A-Young).
4110         + modify mk-1st.awk and test/Makefile.in to add $(LDFLAGS) when making
4111           shared libraries, and to use $(CFLAGS) when linking test programs
4112           (patch by Albert Chin-A-Young).
4113         + add a call to _nc_keypad() in keypad() to accommodate applications
4114           such as nvi, which use curses for output but not for input (fixes
4115           Debian #131263, cf: 20011215).
4116         + add entrypoints to resizeterm.c which provide better control over the
4117           process:  is_term_resized() and resize_term().  The latter restores
4118           the original design of resizeterm() before KEY_RESIZE was added in
4119           970906.  Do this to accommodate 20010922 changes to view.c, but allow
4120           for programs with their own sigwinch handler, such as lynx (reported
4121           by Russell Ruby <russ@math.orst.edu>).
4122
4123 20020127
4124         + fix a typo in change to mk-1st.awk, which broke the shared-library
4125           makefile rules (reported by Martin Mokrejs).
4126
4127 20020126
4128         + update config.guess, config.sub
4129         + finish changes needed to build dll's on cygwin.
4130         + fix a typo in mvwchat() macro (reported by Cy <yam@homerow.net).
4131
4132 20020119
4133         + add case in lib_baudrate.c for B921600 (patch by Andrey A Chernov).
4134         + correct missing sed-editing stage in manpage installs which is used
4135           to rename manpages, broken in 20010324 fix for Debian #89939 (Debian
4136           #78866).
4137         + remove -L$(libdir) from linker flags, probably not needed any more
4138           since HPUX is handled properly (reported by Niibe Yutaka
4139           <gniibe@m17n.org>).
4140         + add configure check for mbstate_t, needed for wide-character
4141           configuration.  On some platforms we must include <wchar.h> to
4142           define this (reported by Daniel Jacobowitz).
4143         + incorporate some of the changes needed to build dll's on cygwin.
4144
4145 20020112a
4146         + workaround for awk did not work with mawk, adjusted shell script.
4147
4148 20020112
4149         + add Caps.osf1r5, as an example.
4150         + modify behavior of can_clear_with() so that if an application is
4151           running in a non-bce terminals with default colors enabled, it
4152           returns true, allowing the user to select/paste text without picking
4153           up extraneous trailing blanks (adapted from patch by Daniel
4154           Jacobowitz <dmj+@andrew.cmu.edu>).
4155         + modify generated curses.h to ifdef-out prototypes for extensions if
4156           they are disabled, and to define curses_version() as a string in that
4157           case.  This is needed to make the programs such as tic build in that
4158           configuration.
4159         + modified generated headers.sh to remove a gzip'd version of the
4160           target file if it exists, in case non-gzip'd manpages are installed
4161           into a directory where gzip'd ones exist.  In that case, the latter
4162           would be found.
4163         + corrected a redundant initialization of signal handlers from 20010922
4164           changes.
4165         + clarified bug-reporting address in terminfo.src (report by John H
4166           DuBois III <spcecdt@armory.com>).
4167         > several fixes from Robert Joop:
4168         + do not use "-v" option of awk in MKkey_defs.sh because it does not
4169           work with SunOS nawk.
4170         + modify definitions for libutf8 in curses.h to avoid redefinition
4171           warnings for mblen
4172         + quoted references to compiler in shell command in misc/Makefile, in
4173           case it uses multiple tokens.
4174
4175 20011229
4176         + restore special case from 20010922 changes to omit SA_RESTART when
4177           setting up SIGWINCH handler, which is needed to allow wgetch() to be
4178           interrupted by that signal.
4179         + update configure macro CF_WITH_PATHLIST, to omit some double quotes
4180           not needed with autoconf 2.52
4181         + revert configure script to autoconf 2.13 patched with
4182                 autoconf-2.13-19990117.patch.gz (or later)
4183           from
4184                 ftp://invisible-island.net/autoconf/
4185           because autoconf 2.52 macro AC_PROG_AWK does not work on HPUX 11.0
4186           (report by David Ellement <ellement@sdd.hp.com>).  This also fixes a
4187           different problem configuring with Mac OS X (reported by Marc Smith
4188           <marc.a.smith@home.com>).
4189
4190 20011222
4191         + modify include/edit_cfg.h to eliminate BROKEN_LINKER symbol from
4192           term.h
4193         + move prototype for _nc_vsscanf() into curses.h.in to omit
4194           HAVE_VSSCANF symbol from curses.h, which was dependent upon the
4195           ncurses_cfg.h file which is not installed.
4196         + use ACS_LEN rather than SIZEOF(acs_map) in trace code of lib_acs.c,
4197           to work with broken linker configuration, e.g., cygwin (report by
4198           Robert Joop <rj@rainbow.in-berlin.de>).
4199         + make napms() call _nc_timed_wait() rather than poll() or select(),
4200           to work around broken implementations of these on cygwin.
4201
4202 20011218
4203         + drop configure macro CF_WIDEC_SHIFT, since that was rendered obsolete
4204           by Sven Verdoolaege's rewrite of wide-character support.  This makes
4205           libncursesw incompatible again, but makes the header files almost the
4206           same as in the narrow-character configuration.
4207         + simplify definitions that combine wide/narrow versions of bkgd, etc.,
4208           to eliminate differences between the wide/narrow versions of curses.h
4209         + correct typo in configure macro CF_FUNC_VSSCANF
4210         + correct location of call to _nc_keypad() from 20011215 changes which
4211           prevented keypad() from being disabled (reported by Lars Hecking).
4212
4213 20011215
4214         + rewrote ncurses 'a' test to exercise wgetch() and keypad() functions
4215           better, e.g., by adding a 'w' command to create new windows which
4216           may have different keypad() settings.
4217         + corrected logic of keypad() by adding internal screen state to track
4218           whether the terminal's keypad-mode has been set.  Use this in
4219           wgetch() to update the keypad-mode according to whether the
4220           associated window's keypad-mode has been set with keypad().  This
4221           corrects a related problem restoring terminal state after handling
4222           SIGTSTP (reported by Mike Castle).
4223         + regenerate configure using patch for autoconf 2.52
4224                 autoconf-2.52-patch.gz
4225           at
4226                 ftp://invisible-island.net/autoconf/
4227         + update config.guess, config.sub from
4228                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
4229         + minor changes to quoting in configure script to allow it to work
4230           with autoconf 2.52
4231
4232 20011208
4233         + modify final checks in lib_setup.c for line and col values, making
4234           them independent.
4235         + modify acs_map[] if configure --broken-linker is specified, to make
4236           it use a function rather than an array (prompted by an incorrect
4237           implementation in cygwin package).
4238         + correct spelling of configure option --enable-colorfgbg, which
4239           happened to work if --with-develop was set (noted in cygwin package
4240           for ncurses).
4241         + modify ifdef for genericerror() to compile with SUNWspro Sun WorkShop
4242           6 update 1 C++ 5.2 (patch by Sullivan N Beck <sbeck@cise.ufl.edu>).
4243         + add configure checks to see if ncurses' fallback vsscanf() will
4244           compile either of the special cases for FILE structs, and if not,
4245           force it to the case which simply returns an error (report by
4246           Sullivan N Beck <sbeck@cise.ufl.edu> indicates that Solaris 8 with
4247           64-bits does not allow access to FILE's fields).
4248         + modify ifdef's for c++/cursesw.cc to use the fallback vsscanf() in
4249           the ncurses library if no better substitute for this can be found
4250           in the C++ runtime.
4251         + modify the build to name dynamic libraries according to the
4252           convention used on OS X and Darwin.  Rather than something like
4253           libncurses.dylib.5.2, Darwin would name it libncurses.  5.dylib.
4254           There are a few additional minor fixes, such as setting the library
4255           version and compatibility version numbers (patch by Jason Evans
4256           <jevans@apple.com>).
4257         + use 'sh' to run mkinstalldirs, to work around problems with buggy
4258           versions of 'make' on OS/2 (report by John Polterak <jp@eyup.org>).
4259         + correct typo in manpage description of curs_set() (Debian #121548).
4260         + replace the configure script existence-check for mkstemp() by one
4261           that checks if the function works, needed for older glibc and
4262           AmigaOS.
4263
4264 20011201
4265         + modify script that generates fallbacks.c to compile a temporary
4266           copy of the terminfo source in case the host does not contain all of
4267           the entries requested for fallbacks (request by Greg Roelofs).
4268         + modify configure script to accommodate systems such as Mac OS X whose
4269           <stdbool.h> header defines a 'bool' type inconsistent with ncurses,
4270           which normally makes 'bool' consistent with C++.  Include <stdbool.h>
4271           from curses.h to force consistent usage, define a new type
4272           NCURSES_BOOL and related that to the exported 'bool' as either a
4273           typedef or definition, according to whether <stdbool.h> is present
4274           (based on a bug report for tin 1.5.9 by Aaron Adams <adamsa@mac.com>).
4275
4276 20011124
4277         + added/updated terminfo entries for M$ telnet and KDE konsole -TD
4278
4279 20011117
4280         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
4281           (Benjamin C W Sittler).
4282         + add putty terminfo entry -TD
4283         + if configuring for wide-curses, define _XOPEN_SOURCE_EXTENDED, since
4284           this may not otherwise be defined to make test/view.c compile.
4285
4286 20011110
4287         + review/correct several missing/generated items in curses.wide, sorted
4288           the lists to make subsequent diff's easier to track.
4289
4290 20011103
4291         + add manual pages for add_wch(), echo_wchar(), getcchar(),
4292           mvadd_wch(), mvwadd_wch(), setcchar(), wadd_wch() and wecho_wchar().
4293         + implement wecho_wchar()
4294         + modify _tracedump() to handle wide-characters by mapping them to '?'
4295           and control-characters to '.', to make the trace file readable.  Also
4296           dynamically allocate the buffer used by _tracedump() for formatting
4297           the results.
4298         + modify T_CALLED/T_RETURN macros to ease balancing call/return lines
4299           in a trace by using curly braces.
4300         + implement _nc_viscbuf(), for tracing cchar_t arrays.
4301         + correct trace-calls in setcchar() and getcchar() functions, which
4302           traced the return values but not the entry to each function.
4303         + correct usage message in test/view.c, which still mentioned -u flag.
4304
4305 20011027
4306         + modify configure script to allow building with termcap only, or with
4307           fallbacks only.  In this case, we do not build tic and toe.
4308         + add configure --with-termpath option, to override default TERMPATH
4309           value of /etc/termcap:/usr/share/misc/termcap.
4310         + cosmetic change to tack: make menu descriptions agree with menu
4311           titles.
4312
4313 20011020
4314         + rewrote limit-checks in wscrl() and associated _nc_scroll_window(),
4315           to ensure that if the parameter of wscrl() is larger than the size of
4316           the scrolling region, then the scrolling region will be cleared
4317           (report by Ben Kohlen <bckohlen@yahoo.com>).
4318         + add trace/varargs.c, using this to trace parameters in lib_printw.c
4319         + implement _tracecchar_t2() and _tracecchar_t().
4320         + split-out trace/visbuf.c
4321         + correct typo in lib_printw.c changes from 20010922 (report by Mike
4322           Castle).
4323
4324 20011013
4325         + modify run_tic.sh to check if the build is a cross-compile.  In that
4326           case, do not use the build's tic to install the terminfo database
4327           (report by Rafael Rodriguez Velilla <rrv@tid.es>).
4328         + modify mouse click resolution so that mouseinterval(-1) will disable
4329           it, e.g., to handle touchscreens via a slow connection (request by
4330           Byron Stanoszek <gandalf@winds.org>).
4331         + correct mouseinterval() default value shown in curs_mouse.3x
4332         + remove conflicting definition of mouse_trafo() (reported by Lars
4333           Hecking, using gcc 2.95.3).
4334
4335 20011001
4336         + simpler fix for signal_name(), to replace the one overlooked in
4337           20010929 (reported by Larry Virden).
4338
4339 20010929
4340         + add -i option to view.c, to test ncurses' check for non-default
4341           signal handler for SIGINT, etc.
4342         + add cases for shared-libraries on Darwin/OS X (patch by Rob Braun
4343           <bbraun@synack.net>).
4344         + modify tset to restore original I/O modes if an error is encountered.
4345           Also modify to use buffered stderr consistently rather than mixing
4346           with write().
4347         + change signal_name() function to use if-then-else rather than case
4348           statement, since signal-values aren't really integers (reported by
4349           Larry Virden).
4350         + add limit checks in wredrawln(), fixing a problem where lynx was
4351           repainting a pad which was much larger than the screen.
4352
4353 20010922
4354         + fix:  PutRange() was counting the second part of a wide character as
4355           part of a run, resulting in a cursor position that was one too far
4356           (patch by Sven Verdoolaege).
4357         + modify resizeterm() to not queue a KEY_RESIZE if there was no
4358           SIGWINCH, thereby separating the two styles of SIGWINCH handling
4359           in test/view.c
4360         + simplified lib_tstp.c, modify it to use SA_RESTART flag for SIGWINCH.
4361         + eliminate several static buffers in the terminfo compiler, using
4362           allocated buffers.
4363         + modify MKkeyname.awk so that keyname() does not store its result into
4364           a static buffer that is overwritten by the next call.
4365         + reorganize the output of infocmp -E and -e options to compile cleanly
4366           with gcc -Wwrite-strings warnings.
4367         + remove redefinition of chgat/wchgat/mvwchgat from curses.wide
4368
4369 20010915
4370         + add label to test/view.c, showing the name of the last key or signal
4371           that made the screen repaint, to make it clearer when a sigwinch
4372           does this.
4373         + use ExitProgram() consistently in the test-programs to make it
4374           simpler to test leaks with dmalloc, etc.
4375         + move hashtab static data out of hashmap.c into SCREEN struct.
4376         + make NO_LEAK code compile with revised WINDOWLIST structs.
4377
4378 20010908
4379         + modify tgetent() to check if exit_attribute_mode resets the alternate
4380           character set, and if so, attempt to adjust the copy of the termcap
4381           "me" string which it will return to eliminate that part.  In
4382           particular, 'screen' would lose track of line-drawing characters
4383           (report by Frederic L W Meunier <0@pervalidus.net>, analysis by
4384           Michael Schroeder).
4385
4386 20010901
4387         + specify DOCTYPE in html manpages.
4388         + add missing macros for several "generated" functions:  attr_get(),
4389           attr_off(), attr_on(), attr_set(), chgat(), mvchgat(), mvwchgat() and
4390           mouse_trafo().
4391         + modify view.c to agree with non-experimental status of ncurses'
4392           sigwinch handler:
4393           + change the sense of the -r option, making it default to ncurses'
4394             sigwinch handler.
4395           + add a note explaining what functions are unsafe in a signal
4396             handler.
4397           + add a -c option, to set color display, for testing.
4398         + unset $data variable in MKterminfo.sh script, to address potential
4399           infinite loop if shell malfunction (report by Samuel Mikes
4400           <smikes@cubane.com>, for bash 2.05.0 on a Linux 2.0.36 system).
4401         + change kbs in mach terminfo entries to ^?  (Marcus Brinkmann
4402           <Marcus.Brinkmann@ruhr-uni-bochum.de>).
4403         + correct logic for COLORFGBG environment variable: if rxvt is compiled
4404           with xpm support, the variable has three fields, making it slightly
4405           incompatible with itself.  In either case, the background color is
4406           the last field.
4407
4408 20010825
4409         + move calls to def_shell_mode() and def_prog_mode() before loop with
4410           callbacks in lib_set_term.c, since the c++ demo otherwise initialized
4411           the tty modes before saving them (patch by John David Anglin
4412           <dave@hiauly1.hia.nrc.ca>).
4413         + duplicate logic used to initialize trace in newterm(), in initscr()
4414           to avoid confusing trace of initscr().
4415         + simplify allocation of WINDOW and WINDOWLIST structs by making the
4416           first a part of the second rather than storing a pointer.  This saves
4417           a call to malloc for each window (discussion with Philippe Blain).
4418         + remove unused variable 'used_ncv' from lib_vidattr.c (Philippe
4419           Blain).
4420         + modify c++/Makefile.in to accommodate archive programs that are
4421           different for C++ than for C, and add cases for vendor's C++
4422           compilers on Solaris and IRIX (report by Albert Chin-A-Young).
4423         + correct manpage description of criteria for deciding if the terminal
4424           supports xterm mouse controls.
4425         + add several configure script options to aid with cross-compiling:
4426           --with-build-cc, --with-build-cflags, --with-build-ldflags, and
4427           --with-build-libs (request by Greg Roelofs).
4428         + change criteria for deciding if configure is cross-compiling from
4429           host/build mismatch to host/target mismatch (request by Greg Roelofs
4430           <greg.roelofs@philips.com>).
4431         + correct logic for infocmp -e and -E options which writes the data for
4432           the ext_Names[] array.  This is needed if one constructs a fallback
4433           table for a terminfo entry which uses extended termcap names, e.g.,
4434           AX in a color xterm.
4435         + fix undefined NCURSES_PATHSEP when configure --disable-database
4436           option is given.
4437
4438 20010811
4439         + fix for VALID_BOOLEAN() macro when char is not signed.
4440         + modify 'clean' rule for C++ binding to work with Sun compiler, which
4441           caches additional information in a subdirectory of the objects.
4442         + added llib-ncursesw.
4443
4444 20010804
4445         + add Caps.keys example for experimental extended function keys
4446           (adapted from a patch by Ilya Zakharevich).
4447         + correct parameter types of vidputs() and vidattr() to agree with
4448           header files (report by William P Setzer).
4449         + fix typos in several man-pages (patch by William P Setzer).
4450         + remove unneeded ifdef for __GNUG__ in CF_CPP_VSCAN_FUNC configure
4451           macro, which made ncurses C++ binding fail to build with other
4452           C++ compilers such as HPUX 11.x (report by Albert Chin-A-Young).
4453         + workaround for bug in HPUX 11.x C compiler: add a blank after
4454           NCURSES_EXPORT macro in form.h (report by Albert Chin-A-Young)
4455         + ignore blank lines in Caps* files in MKkey_defs.sh script (report by
4456           Albert Chin-A-Young).
4457         + correct definition of key_end in Caps.aix4, which left KEY_END
4458           undefined (report by Albert Chin-A-Young).
4459         + remove a QNX-specific fallback prototype for vsscanf(), which is
4460           obsolete with QNX RTP.
4461         + review/fix some of the T() and TR() macro calls, having noticed that
4462           there was no data for delwin() in a trace of dialog because there was
4463           no returnVoid call for wtimeout().  Also, traces in lib_twait.c are
4464           now selected under TRACE_IEVENT rather than TRACE_CALLS.
4465
4466 20010728
4467         + add a _nc_access() check before opening files listed via $TERMPATH.
4468         + using modified man2html, regenerate some of the html manpages to fix
4469           broken HREF's where the link was hyphenated.
4470
4471 20010721
4472         + add some limit/pointer checks to -S option of tputs.
4473         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
4474           (Benjamin C W Sittler).
4475         + add a note in curs_termcap.3x regarding a defect in the XSI
4476           description of tgetent (based on a discussion with Urs Jansen
4477           regarding the HPUX 11.x implementation, whose termcap interface is
4478           not compatible with existing termcap programs).
4479         + modify manhtml rule in dist.mk to preserve copyright notice on the
4480           generated files, as well as to address HTML style issues reported by
4481           tidy and weblint.  Regenerated/updated corresponding html files.
4482         + comment out use of Protected_Character and related rarely used
4483           attributes in ncurses Ada95 test/demo to compile with wide-character
4484           configuration.
4485
4486 20010714
4487         + implement a simple example in C++ demo to test scanw().
4488         + corrected stdio function used to implement scanw() in cursesw.cc
4489         + correct definition of RemAttr() macro from 20010602 changes, which
4490           caused C++ SillyDemo to not show line-drawing characters.
4491         + modify C++ binding, adding getKey() which can be overridden by user
4492           to substitute functions other than getch() for keyboard processing
4493           of forms and menus (patch by Juergen Pfeifer).
4494
4495 20010707
4496         + fix some of the trace calls which needed modification to work with
4497           new wide-character structures.
4498         + modify magic-cookie code in tty_update.c to compile with new
4499           wide-character structures (report by <George.R.Goffe@seagate.com>).
4500         + ensure that _XOPEN_SOURCE_EXTENDED is defined in curses.priv.h if
4501           compiling for wide-character configuration.
4502         + make addwnstr() handle non-spacing characters (patch by Sven
4503           Verdoolaege).
4504
4505 20010630
4506         + add configure check to define _GNU_SOURCE, needed to prop up glibc
4507           header files.
4508         + split-out include/curses.wide to solve spurious redefinitions caused
4509           by defining _GNU_SOURCE, and move includes for <signal.h> before
4510           <curses.h> to work around misdefinition of ERR in glibc 2.1.3 header
4511           file.
4512         + extended ospeed change to NetBSD and OpenBSD -TD
4513         + modify logic in lib_baudrate.c for ospeed, for FreeBSD to make it
4514           work properly for termcap applications (patch by Andrey A Chernov).
4515
4516 20010623
4517         + correct an overlooked CharOf/UChar instance (reports by Eugene Lee
4518           <eugene@anime.net>, Sven Verdoolaege).
4519         + correct unneeded ifdef for wunctrl() (reported by Sven Verdoolaege)
4520
4521 20010618
4522         + change overlooked several CharOf/UChar instances.
4523         > several patches from Sven Verdoolaege:
4524         + correct a typo in wunctrl(), which made it appear that botwc() was
4525           needed (no such function: use btowc()).
4526         + reimplement wide-character demo in test/view.c, using new functions.
4527         + implement getcchar(), setcchar(), wadd_wchnstr() and related macros.
4528         + fix a syntax problem with do/if/while in PUTC macro (curses.priv.h).
4529
4530 20010616
4531         + add parentheses in macros for malloc in test.priv.h, fixes an
4532           expression in view.c (report by Wolfgang Gutjahr <gutw@knapp.co.at>).
4533         + add Caps.uwin, as an example.
4534         + change the way curses.h is generated, making the list of function
4535           key definitions extracted from the Caps file.
4536         + add #undef's before possible redefinition of ERR and OK in curses.h
4537         + modify logic in tic, toe, tput and tset which checks for basename of
4538           argv[0] to work properly on systems such as OS/2 which have
4539           case-independent filenames and/or program suffixes, e.g., ".ext".
4540
4541 20010609
4542         + add a configure check, if --enable-widec is specified, for putwc(),
4543           which may be in libutf8.
4544         + remove some unnecessary text from curs_extend.3x and
4545           default_colors.3x which caused man-db to make incorrect symbolic
4546           links (Debian bug report #99550).
4547         + add configure check if cast for _IO_va_list is needed to compile
4548           C++ vscan code (Debian bug report #97945).
4549         > several patches from Sven Verdoolaege:
4550         + correct code that used non-standard auto-initialization of a struct,
4551           which gcc allows (report by Larry Virden).
4552         + use putwc() in PUTC() macro.
4553         + make addstr() work for the special case where the codeset is
4554           non-stateful (eg. UTF-8), as well as stateful codesets.
4555
4556 20010603
4557         + correct loop expression in NEXT_CHAR macro for lib_addstr.c changes
4558           from 20010602 (report by Mike Castle).
4559
4560 20010602
4561         + modify mvcur() to avoid emitting newline characters when nonl() mode
4562           is set.  Normally this is not a problem since the actual terminal
4563           mode is set to suppress nl/crlf translations, however it is useful to
4564           allow the caller to manipulate the terminal mode to avoid staircasing
4565           effects after spawning a process which writes messages (for lynx
4566           2.8.4) -TD
4567         > several patches from Sven Verdoolaege <skimo@kotnet.org>:
4568         + remove redundant type-conversion in fifo_push()
4569         + correct definition of addwstr() macro in curses.h.in
4570         + remove _nc_utf8_outch()
4571         + rename most existing uses of CharOf() to UChar(), e.g., where it is
4572           used to prevent sign-extension in ctype macros.
4573         + change some chtype's to attr_t's where the corresponding variables
4574           are used to manipulate attributes.
4575         + UpdateAttr() was applied to both attributes (attr_t) and characters
4576           (chtype).  Modify macro and calls to it to make these distinct.
4577         + add CharEq() macro, use in places where wide-character configuration
4578           implementation uses a struct for cchar_t.
4579         + moved struct ldat into curses.priv.h, to hide implementation details.
4580         + change CharOf() macro to use it for masking A_CHARTEXT data from
4581           chtype's.
4582         + add L() macro to curses.priv.h, for long-character literals.
4583         + replace several assignments from struct ldat entries to chtype or
4584           char values with combinations of CharOf() and AttrOf() macros.
4585         + add/use intermediate ChAttrOf() and ChCharOf() macros where we know
4586           we are using chtype data.
4587         + add/use lowlevel attribute manipulation macros AddAttr(), RemAttr()
4588           and SetAttr().
4589         + add/use SetChar() macro, to change a cchar_t based on a character and
4590           attributes.
4591         + convert most internal use of chtype to NCURSES_CH_T, to simplify use
4592           of cchar_t for wide-character configuration.  Similarly, use ARG_CH_T
4593           where a pointer would be more useful.
4594         + add stubs for tracing cchar_t values.
4595         + add/use macro ISBLANK()
4596         + add/use constructors for cchar_t's: NewChar(), NewChar2().
4597         + add/use macros CHREF(), CHDEREF(), AttrOfD(), CharOfD() to facilitate
4598           passing cchar_t's by address.
4599         + add/use PUTC_DATA, PUTC() macros.
4600         + for wide-character configuration, move the window background data to
4601           the end of the WINDOW struct so that whether _XOPEN_SOURCE_EXTENDED
4602           is defined or not, the offsets in the struct will not change.
4603         + modify addch() to work with wide-characters.
4604         + mark several wide-character functions as generated in curses.h.in
4605         + implement wunctrl(), wadd_wch(), wbkgrndset(), wbkgrnd(),
4606           wborder_set() and waddnwstr().
4607
4608 20010526
4609         + add experimental --with-caps=XXX option to customize to similar
4610           terminfo database formats such as AIX 4.x
4611         + add Caps.aix4 as an example.
4612         + modify Caps to add columns for the the KEY_xxx symbols.
4613         + modify configure --with-widec to suppress overwrite of libcurses.so
4614           and curses.h
4615         + add checks to toe.c to avoid being confused by files and directories
4616           where we would expect the reverse, e.g., source-files in the
4617           top-level terminfo levels as is the case for AIX.
4618
4619 20010519
4620         + add top-level 'depend' rule for the C sources, assuming that the
4621           makedepend program is available.  As a side-effect, this makes
4622           the generated sources, as in "make sources" (prompted by a report
4623           by Mike Castle that "make -j" fails because the resulting parallel
4624           processes race to generate ncurses/names.c).
4625         + modify configure script so that --disable-overwrite option's action
4626           to add a symbolic link for libcurses applies to the static library as
4627           well as the shared library when both are configured (report by Felix
4628           Natter <f.natter@ndh.net>).
4629         + add ELKS terminfo entries (Federico Bianchi
4630           <bianchi@www.arte.unipi.it>)
4631         + add u6 (CSR) to Eterm (Michael Jennings).
4632
4633 20010512
4634         + modify test/ncurses.c to work with xterm-256color, which has fewer
4635           color pairs than colors*colors (report by David Ellement
4636           <ellement@sdd.hp.com>).
4637
4638 20010505
4639         + corrected screen.xterm-xfree86 entry.
4640         + update comment in Caps regarding IBM (AIX) function-key definitions.
4641
4642 20010421
4643         + modify c++/Makefile.in to link with libncurses++w.a when configured
4644           for wide-characters (patch by Sven Verdoolaege).
4645         + add check in _nc_trace_buf() to refrain from freeing a null pointer.
4646         + improve CF_PROG_INSTALL macro using CF_DIRNAME.
4647         + update config.guess, config.sub from autoconf 2.49e (alpha).
4648
4649 20010414
4650         + add secondary check in tic.c, similar_sgr() to see if the reason
4651           for mismatch was that the individual capabilities used a time-delay
4652           while sgr did not.  Used this to cleanup mismatches, e.g., in vt100,
4653           and remove time-delay from Apple_Terminal entries.
4654         + add Apple_Terminal terminfo entries (Benjamin C W Sittler
4655           <bsittler@iname.com>).
4656         + correct definitions of shifted editing keys for xterm-xfree86 -TD
4657         + fix a bug in test/bs.c from 20010407 (patch by Erik Sigra).
4658         + prevent relative_move() from doing an overwrite if it detects 8-bit
4659           characters when configured for UTF-8 (reported by Sven Verdoolaege
4660           <skimo@kotnet.org>).
4661
4662 20010407
4663         + add configure checks for strstream.h vscan function, and similar
4664           stdio-based function which may be used in C++ binding for gcc 3.0
4665           (reports by George Goffe, Lars Hecking, Mike Castle).
4666         + rewrite parts of configure.in which used changequote().  That feature
4667           is broken in the latest autoconf alphas (e.g., 2.49d).
4668         + add a missing pathname for ncurses_dll.h, needed when building in
4669           a directory outside the source tree (patch by Sven Verdoolaege
4670           <skimo@kotnet.org>).
4671         > fix 2 bugs in test/bs.c Erik Sigra <sigra@home.se>:
4672         + no ships were ever placed in the last row or in the last column.
4673           This made the game very easy to win, because you never had to waste
4674           any shots there, but the computer did.
4675         + the squares around a sunken ship that belonged to the player were not
4676           displayed as already hit by the computer, like it does for the
4677           player.
4678
4679 20010331
4680         + add some examples of customizing screen's terminfo:
4681           screen.xterm-xfree86, screen.xterm-r6, screen.teraterm -TD
4682         + modify screen's terminfo entry to match the khome/kend in screen
4683           3.09.08 (Debian bug report #92215).
4684         + correct a memory leak in forms library (report by Stefan Vogtner
4685           <stefan@vogtner.de>) (patch by Juergen Pfeifer).
4686
4687 20010324
4688         + change symbols used to guard against repeated includes to begin
4689           consistently with "NCURSES_" rather than a leading underscore.  There
4690           are other symbols defined in the header files which begin with a
4691           leading underscore, but they are part of the legacy interface.
4692         + reorder includes in c++ binding so that rcs identifiers can be
4693           compiled-in.
4694         + add .cc.ii rule to c++ makefile, to get preprocessor output for
4695           debugging.
4696         + correct configure script handling of @keyword@ substitutions when the
4697           --with-manpage-renames option is given (cf:  20000715, fixes Debian
4698           bug #89939).
4699         + report stack underflow/overflow in tparm() when tic -cv option is
4700           given.
4701         + remove spurious "%|" operator from xterm-xfree86 terminfo entry,
4702           (reported by Adam Costello <amc@cs.berkeley.edu>, Debian bug #89222).
4703
4704 20010310
4705         + cleanup of newdemo.c, fixing some ambiguous expressions noted by gcc
4706           2.95.2, and correcting some conflicting color pair initializations.
4707         + add missing copyright notice for cursesw.h
4708         + review, make minor fixes for use of '::' for referring to C-language
4709           interface from C++ binding.
4710         + modify configure check for g++ library slightly to accommodate
4711           nonstandard version number, e.g., <vendor>-2.7 (report by Ronald Ho
4712           <rho@mipos2.intel.com>).
4713         + add configure check for c++ <sstream> header, replace hardcoded
4714           ifdef.
4715         + workaround for pre-release of gcc 3.0 libstdc++, which has dropped
4716           vscan from strstreambuf to follow standard, use wrapper for C vscanf
4717           instead (report by George Goffe <grgoffe@excite.com> and Matt Taggart
4718           <taggart@carmen.fc.hp.com>, fixes Debian .
4719
4720 20010303
4721         + modify interface of _nc_get_token() to pass 'silent' parameter to it,
4722           to make quieter loading of /etc/termcap (patch by Todd C Miller).
4723         + correct a few typos in curs_slk.3x and curs_outopts.3x manpages
4724           (patch by Todd C Miller).
4725
4726 20010224
4727         + compiler-warning fixes (reported by Nelson Beebe).
4728
4729 20010210
4730         + modify screen terminfo entry to use new 3.9.8 feature allowing xterm
4731           mouse controls -TD
4732
4733 20010203
4734         + broaden patterns used to match OS/2 EMX in configure script to cover
4735           variant used in newer config.guess/config.sub
4736         + remove changequote() calls from configure script, since this feature
4737           is broken in the autoconf 2.49c alpha, maintainers decline to fix.
4738         + remove macro callPutChar() from tty_update.c, since this is no longer
4739           needed (reported by Philippe Blain).
4740         + add a null-pointer check in tic.c to handle the case when the input
4741           file is really empty.  Modify the next_char() function in comp_scan.c
4742           to allow arbitrarily long lines, and incidentally supply a newline to
4743           files that do not end in a newline.  These changes improve tic's
4744           recovery from attempts to read binary files, e.g., its output from
4745           the terminfo database (reported by Bernhard Rosenkraenzer).
4746
4747 20010127
4748         + revert change to c++/demo.cc from 20001209, which changed definition
4749           of main() apparently to accommodate cygwin linker, but broke the demo
4750           program.
4751         + workaround for broken egcs 2.91.66 which calls member functions
4752           (i.e., lines() and colors() of NCursesWindow before calling its
4753           constructor.  Add calls to initialize() in a few constructors which
4754           did not do this already.
4755         + use the GNAT preprocessor to make the necessary switch between TRACE
4756           and NO_TRACE configurations (patch by Juergen Pfeifer).
4757         > patches by Bernhard Rosenkraenzer:
4758         + modify kterm terminfo entry to use SCS sequence to support alternate
4759           character set (it does not work with SI/SO).
4760         + --with-ospeed=something didn't work.  configure.in checked for a
4761           $enableval where it should check for $withval.  Also,
4762           ncurses/llib-lncurses still had a hardcoded short.
4763
4764 20010114
4765         + correction to my merge of Tom Riddle's patch that broke tic in some
4766           conditions (reported by Enoch Wexler <enoch@wexler.co.il>) -TD
4767
4768 20010113
4769         + modify view.c to test halfdelay().  Like other tests, this recognizes
4770           the 's' and space commands for stopping/starting polled input, shows
4771           a freerunning clock in the header.  If given a parameter to 's', that
4772           makes view.c use halfdelay() with that parameter rather than
4773           nodelay().
4774         + fix to allow compile with the experimental configure option
4775           --disable-hashmap.
4776         + modify postprocess_termcap() to avoid overwriting key_backspace,
4777           key_left, key_down when processing a non-base entry (report/patch by
4778           Tom Riddle).
4779         + modify _nc_wrap_entry(), adding option to reallocate the string
4780           table, needed in _nc_merge_entry() when merging termcap entries.
4781           (adapted from report/patch by Tom Riddle <ftr@oracom.com>).
4782         + modify a few configure script macros to keep $CFLAGS used only for
4783           compiler options, preprocessor options in $CPPFLAGS.
4784
4785 20001230
4786         + correct marker positions in lrtest.c after receiving a sigwinch.
4787         + fix ifdef's in ncurses.c to build against pre-5.2 for testing.
4788         + fixes to tclock for resizing behavior, redundant computation (report
4789           and patch by A M Kuchling <akuchlin@mems-exchange.org>).
4790
4791 20001216
4792         + improved scoansi terminfo entry -TD
4793         + modify configure script and makefile in Ada95/src to compile a stub
4794           for the trace functions when ncurses does not provide those.
4795
4796 20001209
4797         + add ncurses_dll.h and related definitions to support generating DLL's
4798           with cygwin (adapted from a patch by Charles Wilson
4799           <cwilson@ece.gatech.edu>, changed NCURSES_EXPORT macro to make it
4800           work with 'indent') -TD
4801
4802 20001202
4803         + correct prototypes for some functions in curs_termcap.3x, matching
4804           termcap.h, which matches X/Open.
4805         > patch by Juergen Pfeifer:
4806         + a revised version of the Ada enhancements sent in by "H.
4807           Nanosecond", aka Eugene V Melaragno <aldomel@ix.netcom.com>.  This
4808           patch includes
4809           - small fixes to the existing ncurses binding
4810           - addition of some more low-level functions to the binding, including
4811             termcap and terminfo functions
4812           - An Ada implementation of the "ncurses" test application originally
4813             written in C.
4814
4815 20001125
4816         + modify logic in lib_setup.c to allow either lines or columns value
4817           from terminfo to be used if the screen size cannot be determined
4818           dynamically rather than requiring both (patch by Ehud Karni
4819           <ehud@unix.simonwiesel.co.il>).
4820         + add check in lib_tgoto.c's is_termcap() function to reject null or
4821           empty strings (reported by Valentin Nechayev <netch@netch.kiev.ua> to
4822           freebsd-bugs).
4823         + add definition from configure script that denotes the path-separator,
4824           which is normally a colon.  The path-separator is a semicolon on
4825           OS/2 EMX and similar systems which may use a colon within pathnames.
4826         + alter logic to set default for --disable-overwrite option to set it
4827           to 'yes' if the --prefix/$prefix value is not /usr/local, thereby
4828           accommodating the most common cause of problems: gcc's nonstandard
4829           search rules.  Other locations such as /usr/local/ncurses will
4830           default to overwriting (report by Lars Hecking <lhecking@nmrc.ie>).
4831
4832 20001118
4833         + modify default for --disable-overwrite configure option to disable
4834           if the --prefix or $prefix value is not /usr.
4835         + add cygwin to systems for which ncurses is installed by default into
4836           /usr rather than /usr/local.
4837
4838 20001111
4839         + minor optimization in comp_error.c and lib_termname.c, using
4840           strncat() to replace strncpy() (patch by Solar Designer).
4841         + add a use_terminfo_vars() check for $HOME/.termcap, and check for
4842           geteuid() to use_terminfo_vars() (patch by Solar Designer
4843           <solar@false.com>).
4844         + improved cygwin terminfo entry, based on patch by
4845           <ernie_boyd@yahoo.com>.
4846         + modify _nc_write_entry() to allow for the possibility that linking
4847           aliases on a filesystem that ignores case would not succeed because
4848           the source and destination differ only by case, e.g., NCR260VT300WPP0
4849           on cygwin (report by Neil Zanella).
4850         + fix a typo in the curs_deleteln.3x man page (patch by Bernhard
4851           Rosenkraenzer <bero@redhat.de>).
4852
4853 20001104
4854         + add configure option --with-ospeed to assist packagers in transition
4855           to 5.3 change to ospeed type.
4856         + add/use CharOf() macro to suppress sign-extension of char type on
4857           platforms where this is a problem in ctype macros, e.g., Solaris.
4858         + change trace output to binary format.
4859         + correct a missing quote adjustment in CF_PATH_SYNTAX autoconf
4860           macro, for OS/2 EMX configuration.
4861         + rearrange a few configure macros, moving preprocessor options to
4862           $CPPFLAGS (a now-obsolete version of autoconf did not consistently
4863           use $CPPFLAGS in both the compile and preprocessor checks).
4864         + add a check in relative_move() to guard against buffer overflow in
4865           the overwrite logic.
4866
4867 20001028
4868         + add message to configure script showing g++ version.
4869         + resync config.guess, config.sub
4870         + modify lib_delwin.c, making it return ERR if the window did not exist
4871           (suggested by Neil Zanella).
4872         + add cases for FreeBSD 3.1 to tdlint and makellib scripts, used this
4873           to test/review ncurses library.  (Would use lclint, but it doesn't
4874           work).
4875         + reorganized knight.c to avoid forward references.  Correct screen
4876           updates when backtracking, especially to the first cell.  Add F/B/a
4877           commands.
4878
4879 20001021 5.2 release for upload to ftp.gnu.org
4880         + update generated html files from manpages.
4881         + modify dist.mk to use edit_man.sh to substitute autoconf'd variables
4882           in html manpages.
4883         + fix an uninitialized pointer in read_termcap.c (report by Todd C
4884           Miller, from report/patch by Philip Guenther <guenther@gac.edu>).
4885         + correct help-message and array limit in knight.c (patch by Brian
4886           Raiter <breadbox@muppetlabs.com>).
4887         > patch by Juergen Pfeifer:
4888         + fix to avoid warning by GNAT-3.13p about use of inconsistent casing
4889           for some identifiers defined in the standard package.
4890         + cosmetic change to forms/fty_enum.c
4891
4892 20001014
4893         + correct an off-by-one position in test/railroad.c which could cause
4894           wrapping at the right margin.
4895         + test/repair some issues with libtool configuration.  Make
4896           --disable-echo force libtool --silent.  (Libtool does not work for
4897           OS/2 EMX, works partly for SCO - libtool is still very specific to
4898           gcc).
4899         + change default of --with-manpage-tbl to "no", since for most of the
4900           platforms which do have tbl installed, the system "man" program
4901           understands how to run tbl automatically.
4902         + minor improvement to force_bar() in comp_parse.c (Bernhard
4903           Rosenkraenzer <bero@redhat.de>).
4904         + modify lib_tparm.c to use get_space() before writing terminating
4905           null character, both for consistency as well as to ensure that if
4906           save_char() was called immediately before, that the allocated memory
4907           is enough (patch by Sergei Ivanov).
4908         + add note about termcap ML capability which is duplicated between two
4909           different capabilities:  smgl and smglr (reported by Sergei Ivanov
4910           <svivanov@pdmi.ras.ru>).
4911         + correct parameter counts in include/Caps for dclk as well as some
4912           printer-specific capabilities: csnm, defc, scs, scsd, smgtp, smglp.
4913         > patch by Johnny C Lam <lamj@stat.cmu.edu>:
4914         + add support for building with libtool (apparently version 1.3.5,
4915           since old versions do not handle -L../lib), using new configure
4916           option --with-libtool.
4917         + add configure option --with-manpage-tbl, which causes the manpages to
4918           be preprocessed by tbl(1) prior to installation,
4919         + add configure option --without-curses-h, which causes the
4920           installation process to install curses.h as ncurses.h and make
4921           appropriate changes to headers and manpages.
4922
4923 20001009
4924         + correct order of options/parameters in run_tic.in invocation of tic,
4925           which did not work with standard getopt() (reported by Ethan
4926           Butterfield <primus@veris.org>).
4927         + correct logic for 'reverse' variable in lib_vidattr.c, which was
4928           setting it true without checking if newmode had A_REVERSE set, e.g.,
4929           using $TERM=ansi on OS/2 EMX (see 20000917).
4930         > patch by Todd C Miller:
4931         + add a few missing use_terminfo_vars() and fixes up _nc_tgetent().
4932           Previously, _nc_cgetset() would still get called on cp so the
4933           simplest thing is to set cp to NULL if !use_terminfo_vars().
4934         + added checks for an empty $HOME environment variable.
4935         > patches for OS/2 EMX (Ilya Zakharevich):
4936         + modify convert_configure.pl to support INSTALL.  Change compiler
4937           options in that script to use multithreading, needed for the mouse.
4938         + modify OS/2 mouse support, retrying as a 2-button mouse if code fails
4939           to set up a 3-button mouse.
4940         + improve code for OS/2 mouse support, using _nc_timed_wait() to
4941           replace select() call.
4942
4943 20001007
4944         + change type of ospeed variable back to short to match its use in
4945           legacy applications (reported by Andrey A Chernov).
4946         + add case to configure script for --enable-rpath on IRIX (patch by
4947           Albert Chin-A-Young).
4948         + minor fix to position_check() function, to ensure it gets the whole
4949           cursor report before decoding.
4950         + add configure option --disable-assumed-color, to allow pre-5.1
4951           convention of default colors used for color-pair 0 to be configured
4952           (see assume_default_colors()).
4953         + rename configure option --enable-hashmap --disable-hashmap, and
4954           reorder the configure options, splitting the experimental and
4955           development
4956         + add configure option --disable-root-environ, which tells ncurses to
4957           disregard $TERMINFO and similar environment variables if the current
4958           user is root, or running setuid/setgid (based on discussion with
4959           several people).
4960         + modified misc/run_tic.in to use tic -o, to eliminate dependency on
4961           $TERMINFO variable for installs.
4962         + add table entry for plab_norm to tput, so it passes in strings
4963           for that capability.
4964         + modify parse_format() in lib_tparm.c to ignore precision if it is
4965           longer than 10000 (report by Jouko Pynnonen).
4966         + rewrote limit checks in lib_mvcur.c using new functions
4967           _nc_safe_strcat(), etc.  Made other related changes to check lengths
4968           used for strcat/strcpy (report by Jouko Pynnonen
4969           <jouko@solutions.fi>).
4970
4971 20000930
4972         + modify several descriptions, including those for setaf, setab, in
4973           include/Caps to indicate that the entries are parameterized.  This
4974           information is used to tell which strings are translated when
4975           converting to termcap.  Fixes a problem where the generated termcap
4976           would contain a spurious "%p1" for the terminfo "%p1%d".
4977         + modify ld -rpath options (e.g., Linux, and Solaris) to use an
4978           absolute pathname for the build tree's lib directory (prompted by
4979           discussion with Albert Chin-A-Young).
4980         + modify "make install.man" and "make uninstall.man" to include tack's
4981           man-page.
4982         + various fixes for install scripts used to support configure --srcdir
4983           and --with-install-prefix (reported by Matthew Clarke
4984           <Matthew_Clarke@mindlink.bc.ca>).
4985         + make configure script checks on variables $GCC and $GXX consistently
4986           compare against 'yes' rather than test if they are nonnull, since
4987           either may be set to the corresponding name of the C or C++ compiler
4988           (report/patch by Albert Chin-A-Young).
4989
4990 20000923
4991         + modify rs2 capability in xterm-r6 and similar where cursor
4992           save/restore bracketed the sequence for resetting video attributes.
4993           The cursor restore would undo that (report by John Hawkinson
4994           <jhawk@MIT.EDU> (see NetBSD misc/11052)).
4995         + using parameter check added to tic, corrected 27 typos in
4996           terminfo.src -TD
4997         + modify tic to verify that its inputs are really files, in case
4998           someone tries to read a directory (or /dev/zero).
4999         + add a check for empty buffers returned by fgets() in comp_scan.c
5000           next_char() function, in case tic is run on a non-text file (fixes
5001           a core dump reported by Aaron Campbell <aaron@cs.dal.ca>).
5002         + add to railroad.c some code exercising tgoto(), providing an
5003           alternate form of display if the terminal supports cursor addressing.
5004         + split-out tgoto() again, this time into new file lib_tgoto.c, and
5005           implement a conventional BSD-style tgoto() which is used if the
5006           capability string does not contain terminfo-style padding or
5007           parameters (requested by Andrey A Chernov).
5008         + add check to tic which reports capabilities that do not reference
5009           the expected number of parameters.
5010         + add error checking to infocmp's -v and -m options to ensure that
5011           the option value is indeed a number.
5012         + some cleanup of logic in _nc_signal_handler() to verify if SIGWINCH
5013           handler is setup.  Separated the old/new sigaction data for SIGTSTP
5014           from the other signals.
5015
5016 20000917
5017         + add S0, E0 extensions to screen's terminfo entry, which is another
5018           way to solve the misconfiguration issue -TD
5019         + completed special case for tgoto from 20000916
5020
5021 20000916
5022         + update xterm terminfo entries to match XFree86 xterm patch #146 -TD
5023         + add Matrix Orbital terminfo entries (from Eric Z Ayers
5024           <eric@ale.org>).
5025         + add special case to lib_tparm.c to allow 'screen' program to use a
5026           termcap-style parameter "%." to tgoto() for switching character sets.
5027         + use LN_S substitution in run_tic.in, to work on OS/2 EMX which has
5028           no symbolic links.
5029         + updated notes in README.emx regarding autoconf patches.
5030         + replace a lookup table in lib_vidattr.c used to decode no_color_video
5031           with a logic expression (suggested by Philippe Blain).
5032         + add a/A toggle to ncurses.c 'b' test, which clears/sets alternate
5033           character set attribute from the displayed text.
5034         + correct inequality in parameter analysis of rewritten lib_tparm.c
5035           which had the effect of ignoring p9 in set_attributes (sgr), breaking
5036           alternate character set (reported by Piotr Majka <charvel@link.pl>).
5037         + correct ifdef'ing for GCC_PRINTF, GCC_SCANF which would not compile
5038           with Sun WorkShop compilers since these tokens were empty (cf:
5039           20000902, reported by Albert Chin-A-Young).
5040
5041 20000909
5042         + correct an uninitialized parameter to open_tempfile() in tic.c which
5043           made "tic -I" give an ambiguous error message about tmpnam.
5044         + add special case in lib_vidattr.c to reset underline and standout for
5045           devices that have no sgr0 defined (patch by Don Lewis
5046           <Don.Lewis@tsc.tdk.com>).  Note that this will not work for bold
5047           mode, since there is no exit-bold-mode capability.
5048         + improved patch for Make_Enum_Type (patch by Juergen Pfeifer).
5049         + modify tparm to disallow arithmetic on strings, analyze the varargs
5050           list to read strings as strings and numbers as numbers.
5051         + modify tparm's internal function spop() to treat a null pointer as
5052           an empty string.
5053         + modify tput program so it can be renamed or invoked via a link as
5054           'reset' or 'init', producing the same effect as 'tput reset' or 'tput
5055           init'.
5056         + add private entrypoint _nc_basename(), use to consolidate related
5057           code in progs, as well as accommodating OS/2 EMX pathnames.
5058         + remove NCURSES_CONST line from edit_cfg.sh to compensate for its
5059           removal (except via AC_SUBST) from configure.in, making
5060           --enable-const work again (reported by Juergen Pfeifer).
5061         + regen'd configure to pick up "hpux*" change from 20000902.
5062
5063 20000902
5064         + modify tset.c to check for transformed "reset" program name, if any.
5065         + add a check for null pointer in Make_Enum_Type() (reported by Steven
5066           W Orr <steveo@world.std.com>).
5067         + change functions _nc_parse_entry() and postprocess_termcap() to avoid
5068           using strtok(), because it is non-reentrant (reported by Andrey A
5069           Chernov <ache@nagual.pp.ru>).
5070         + remove "hpux10.*" case from CF_SHARED_OPTS configure script macro.
5071           This differed from the "hpux*" case by using reversed symbolic
5072           links, which made the 5.1 version not match the configuration of
5073           5.0 shared libraries (reported by Albert Chin-A-Young).
5074         + correct a dependency in Ada95/src/Makefile.in which prevented
5075           building with configure --srcdir (patch by H Nanosecond
5076           <aldomel@ix.netcom.com>).
5077         + modify ifdef's in curses.h.in to avoid warning if GCC_PRINTF or
5078           GCC_SCANF was not previously defined (reported by Pavel Roskin
5079           <proski@gnu.org>).
5080         + add MKncurses_def.sh to generate fallback definitions for
5081           ncurses_cfg.h, to quiet gcc -Wundef warnings, modified ifdef's in
5082           code to consistently use "#if" rather than "#ifdef".
5083
5084 20000826
5085         + add QNX qansi entries to terminfo -TD
5086         + add os2 entry to misc/emx.src (<jmcoopr@webmail.bmi.net>).
5087         + add configure option --with-database to allow specifying a different
5088           terminfo source-file to install.  On OS/2 EMX, this defaults to
5089           misc/emx.src
5090         + change misc/run_tic.sh to derive it from misc/run_tic.in, to simplify
5091           setting .exe extension on OS/2 EMX.
5092         + add .exe extension in Ada95/gen/Makefile.in,
5093           Ada95/samples/Makefile.in, for OS/2 EMX (reported by
5094           <jmcoopr@webmail.bmi.net>).
5095         + add configure check for filesystems (such as OS/2 EMX) which do not
5096           distinguish between upper/lowercase filenames, use this to fix tags
5097           rules in makefiles.
5098         + initialize fds[] array to 0's in _nc_timed_wait(); apparently poll()
5099           only sets the revents members of that array when there is activity
5100           corresponding to the related file (report by Glenn Cooper
5101           <gcooper@qantas.com.au>, using Purify on Solaris 5.6).
5102         + change configure script to use AC_CANONICAL_SYSTEM rather than
5103           AC_CANONICAL_HOST, which means that configure --target will set
5104           a default program-prefix.
5105         + add note on cross-compiling to INSTALL (which does not rely on the
5106           AC_CANONICAL_* macros).
5107
5108 20000819
5109         + add cases for EMX OS/2 to config.guess, config.sub
5110         + new version of config.guess, config.sub from lynx 2.8.4dev.7
5111         + add definitions via transform.h to allow tic and tput to check for
5112           the transformed aliases rather than the original infotocap, etc.
5113         + simplify transform-expressions in progs/Makefile.in, make the
5114           uninstall rule work for transformed program names.
5115         + change symbol used by --install-prefix configure option from
5116           INSTALL_PREFIX to DESTDIR (the latter has become common usage
5117           although the name is misleading).
5118         + modify programs to use curses_version() string to report the version
5119           of ncurses with which they are compiled rather than the
5120           NCURSES_VERSION string.  The function returns the patch level in
5121           addition to the major and minor version numbers.
5122
5123 20000812
5124         + modify CF_MAN_PAGES configure macro to make transformed program names
5125           a parameter to that macro rather than embedding them in the macro.
5126         + newer config.guess, config.sub (reference version used in lynx
5127           2.8.4dev.7).
5128         + add configure option --with-default-terminfo-dir=DIR to allow
5129           specifying the default terminfo database directory (request by Albert
5130           Chin-A-Young).
5131         + minor updates for terminfo.src from FreeBSD termcap change-history.
5132         + correct notes in README and INSTALL regarding documentation files
5133           that were moved from misc directory to doc (report by Rich Kulawiec
5134           <rsk@gsp.org>).
5135         + change most remaining unquoted parameters of 'test' in configure
5136           script to use quotes, for instance fixing a problem in the
5137           --disable-database option (reported by Christian Mondrup
5138           <scancm@biobase.dk>).
5139         + minor adjustments to work around some of the incompatibilities/bugs
5140           in autoconf 2.29a alpha.
5141         + add -I/usr/local/include when --with-ncurses option is used in
5142           test/configure script.
5143         + correct logic in adjust_cancels(), which did not check both
5144           alternatives when reclassifying an extended name between boolean,
5145           number and string, causing an infinite loop in tic.
5146
5147 20000730
5148         + correct a missing backslash in curses.priv.h
5149
5150 20000729
5151         + change handling of non_dest_scroll_region in tty_update.c to clear
5152           text after it is shifted in rather than before shifting out.  Also
5153           correct row computation (reported by Ruediger Kuhlmann
5154           <uck4@rz.uni-karlsruhe.de>).
5155         + add/use new trace function to display chtype values from winch() and
5156           getbkgd().
5157         + add trace mask TRACE_ATTRS, alter several existing _tracef calls that
5158           trace attribute changes under TRACE_CALLS to use this.
5159         + modify MKlib_gen.sh so that functions returning chtype will call
5160           returnChar().
5161         + add returnChar() trace, for functions returning chtype.
5162         + change indent.pro to line up parenthesis.
5163
5164 20000722
5165         + fix a heap problem with the c++ binding (report by
5166           <alexander_liberson@ninewest.com>, patch by Juergen Pfeifer).
5167         + minor adjustment to ClrToEOL() to handle an out-of-bounds parameter.
5168         + modify the check for big-core to force a couple of memory accesses,
5169           which may work as needed for older/less-capable machines (if not,
5170           there's still the explicit configure option).
5171         > fixes based on diff's for Amiga and BeOS found at
5172           http://www.mathematik.uni-karlsruhe.de/~kuhlmann/cross/ncurses/
5173         + alter definition of NCURSES_CONST to make it non-empty.
5174         + add amiga-vnc terminfo entry.
5175         + redefine 'TEXT' in menu.h for AMIGA, since it is reported to have
5176           an (unspecified) symbol conflict.
5177         + replaced case-statement in _nc_tracebits() for CSIZE with a table to
5178           simplify working around implementations that define random
5179           combinations of the related macros to zero.
5180         + modify configure test for tcgetattr() to allow for old
5181           implementations, e.g., on BeOS, which only defined it as a macro.
5182         > patches by Bruno Haible:
5183         + when checking LC_ALL/LC_CTYPE/LANG environment variables for UTF-8
5184           locale, ignore those which are set to an empty value, as per SUSV2.
5185         + encode 0xFFFD in UTF-8 with 3 bytes, not 2.
5186         + modify _nc_utf8_outch() to avoid sign-extension when checking for
5187           out-of-range value.
5188
5189 20000715
5190         + correct manlinks.sed script to avoid using ERE "\+", which is not
5191           understood by older versions of sed (patch by Albert Chin-A-Young).
5192         + implement configure script options that transform installed program
5193           names, e.g., --program-prefix, including the manpage names and cross
5194           references (patch by Albert Chin-A-Young <china@thewrittenword.com>).
5195         + correct several mismatches between manpage filename and ".TH"
5196           directives, renaming dft_fgbg.3x to default_colors.3x and
5197           menu_attribs.3x to menu_attributes.3x (report by Todd C Miller).
5198         + correct missing includes for <string.h> in several places, including
5199           the C++ binding.  This is not noted by gcc unless we use the
5200           -fno-builtin option (reported by Igor Schein <igor@txc.com>).
5201         + modified progs/tset.c and tack/sysdep.c to build with sgttyb
5202           interface if neither termio or termios is available.  Tested this
5203           with FreeBSD 2.1.5 (which does have termios - but the sgttyb does
5204           work).
5205
5206 20000708 5.1 release for upload to ftp.gnu.org
5207         + document configure options in INSTALL.
5208         + add man-page for ncurses trace functions.
5209         + correct return value shown in curs_touch.3x for is_linetouched() and
5210           is_wintouched(), in curs_initscr.3x for isendwin(), and in
5211           curs_termattr.3x for has_ic() and has_il().
5212         + add prototypes for touchline() and touchwin(), adding them to the
5213           list of generated functions.
5214         + modify fifo_push() to put ERR into the fifo just like other values to
5215           return from wgetch().  It was returning without doing that, making
5216           end-of-file condition incorrectly return a 0 (reported by Todd C
5217           Miller).
5218         + uncomment CC_SHARED_OPTS for progs and tack (see 971115), since they
5219           are needed for SCO OpenServer.
5220         + move _nc_disable_period from free_ttype.c to comp_scan.c to appease
5221           dynamic loaders on SCO and IRIX64.
5222         + add "-a" option to test/ncurses.c to invoke assume_default_colors()
5223           for testing.
5224         + correct assignment in assume_default_colors() which tells ncurses
5225           whether to use default colors, or the assumed ones (reported by Gary
5226           Funck <gary@Intrepid.Com>).
5227         + review/correct logic in mk-1st.awk for making symbolic links for
5228           shared libraries, in particular for FreeBSD, etc.
5229         + regenerate misc/*.def files for OS/2 EMX dll's.
5230         + correct quoting of values for CC_SHARED_OPTS in aclocal.m4 for
5231           cases openbsd2*, openbsd*, freebsd* and netbsd* (patch by Peter
5232           Wemm) (err in 20000610).
5233         + minor updates to release notes, as well as adding/updating URLs for
5234           examples cited in announce.html
5235         > several fixes from Philippe Blain <philippe.blain2@freesbee.fr>:
5236         + correct placement of ifdef for NCURSES_XNAMES in function
5237           _nc_free_termtype(), fixes a memory leak.
5238         + add a call to _nc_synchook() to the end of function whline() like
5239           that in wvline() (difference was in 1.9.4).
5240         + make ClearScreen() a little faster by moving two instances of
5241           UpdateAttr() out of for-loops.
5242         + simplify ClrBottom() by eliminating the tstLine data, using for-loops
5243           (cf: 960428).
5244
5245 20000701 pre-release
5246         + change minor version to 1, i.e., ncurses 5.1
5247         + add experimental configure option --enable-colorfgbg to check for
5248           $COLORTERM variable as set by rxvt/aterm/Eterm.
5249         + add Eterm terminfo entry (Michael Jennings <mej@valinux.com>).
5250         + modify manlinks.sed to pick aliases from the SYNOPSIS section, and
5251           several manpages so manlinks.sed can find aliases for creating
5252           symbolic links.
5253         + add explanation to run_tic.sh regarding extended terminal
5254           capabilities.
5255         + change message format for edit_cfg.sh, since some people interpret
5256           it as a warning.
5257         + correct unescaped '$' in sysv5uw7*|unix_sv* rule for CF_SHARED_OPTS
5258           configure macro (report by Thanh Ma <Thanh.Ma@casi-rusco.com>).
5259         + correct logic in lib_twait.c as used by lib_mouse.c for GPM mouse
5260           support when poll() is used rather than select() (prompted by
5261           discussion with David Allen <DAllen24@aol.com>).
5262
5263 20000624 pre-release
5264         + modify TransformLine() to check for cells with different color pairs
5265           that happen to render the same display colors.
5266         + apply $NCURSES_NO_PADDING to cost-computation in mvcur().
5267         + improve cost computation in PutRange() by accounting for the use
5268           of parm_right_cursor in mvcur().
5269         + correct cost computation in EmitRange(), which was not using the
5270           normalized value for cursor_address.
5271         + newer config.guess, config.sub (reference version used in TIN 1.5.6).
5272
5273 20000617
5274         + update config.guess, config.sub (reference version used in PCRE 3.2).
5275         + resync changes to gnathtml against version 1.22, regenerated html
5276           files under doc/html/ada using this (1.22.1.1).
5277         + regenerated html files under doc/html/man after correcting top and
5278           bottom margin options for man2html in dist.mk
5279         + minor fixes to test programs ncurses 'i' and testcurs program to make
5280           the subwindow's background color cover the subwindow.
5281         + modify configure script so AC_MSG_ERROR is temporarily defined to a
5282           warning in AC_PROG_CXX to make it recover from a missing C++ compiler
5283           without requiring user to add --without-cxx option (adapted from
5284           comment by Akim Demaille <akim@epita.fr> to autoconf mailing list).
5285         + modify headers.sh to avoid creating temporary files in the build
5286           directory when installing headers (reported by Sergei Pokrovsky
5287           <pok@nbsp.nsk.su>)
5288
5289 20000610
5290         + regenerated the html files under doc/html/ada/files and
5291           doc/html/ada/funcs with a slightly-improved gnathtml.
5292         + add kmous capability to linux terminfo entry to allow it to use
5293           xterm-style events provided by gpm patch by Joerg Schoen.
5294         + make the configure macro CF_SHARED_OPTS a little smarter by testing
5295           if -fPIC is supported by gcc rather than -fpic.  The former option
5296           allows larger symbol tables.
5297         + update config.guess and config.sub (patches by
5298           Kevin Buettner <kev@primenet.com> (for elf64_ia64),
5299           Bernd Kuemmerlen <bkuemmer@mevis.de> (for MacOS X)).
5300         + add warning for 'tic -cv' about use of '^?' in terminfo source, which
5301           is an extension.
5302
5303 20000527
5304         + modify echo() behavior of getch() to match Solaris curses for
5305           carriage return and backspace (reported by Neil Zanella).
5306         + change _nc_flush() to a function.
5307         + modify delscreen() to check if the output stream has been closed, and
5308           if so, free the buffer allocated for setbuf (this provides an
5309           ncurses-specific way to avoid a memory leak when repeatedly calling
5310           newterm reported by Chipp C <at_1@zdnetonebox.com>).
5311         + correct typo in curs_getch.3x manpage regarding noecho (reported by
5312           David Malone <dwmalone@maths.tcd.ie>).
5313         + add a "make libs" rule.
5314         + make the Ada95 interface build with configure --enable-widec.
5315         + if the configure --enable-widec option is given, append 'w' to names
5316           of the generated libraries (e.g., libncursesw.so) to avoid conflict
5317           with existing ncurses libraries.
5318
5319 20000520
5320         + modify view.c to make a rudimentary viewer of UTF-8 text if ncurses
5321           is configured with the experimental wide-character support.
5322         + add a simple UTF-8 output driver to the experimental wide-character
5323           support.  If any of the environment variables LC_ALL, LC_CTYPE or
5324           LANG contain the string "UTF-8", this driver will be used to
5325           translate the output to UTF-8.  This works with XFree86 xterm.
5326         + modify configure script to allow building shared libraries on BeOS
5327           (from a patch by Valeriy E Ushakov).
5328         + modify lib_addch.c to allow repeated update to the lower-right
5329           corner, rather than displaying only the first character written until
5330           the cursor is moved.  Recent versions of SVr4 curses can update the
5331           lower-right corner, and behave this way (reported by Neil Zanella).
5332         + add a limit-check in _nc_do_color(), to avoid using invalid color
5333           pair value (report by Brendan O'Dea <bod@compusol.com.au>).
5334
5335 20000513
5336         + the tack program knows how to use smcup and rmcup but the "show caps
5337           that can be tested" feature did not reflect this knowledge.  Correct
5338           the display in the menu tack/test/edit/c (patch by Daniel Weaver).
5339         + xterm-16color does allow bold+colors, removed ncv#32 from that
5340           terminfo entry.
5341
5342 20000506
5343         + correct assignment to SP->_has_sgr_39_49 in lib_dft_fgbg.c, which
5344           broke check for screen's AX capability (reported by Valeriy E Ushakov
5345           <uwe@ptc.spbu.ru>).
5346         + change man2html rule in dist.mk to workaround bug in some
5347           man-programs that ignores locale when rendering hyphenation.
5348         + change web- and ftp-site to dickey.his.com
5349
5350 20000429
5351         + move _nc_curr_token from parse_entry.c to comp_scan.c, to work around
5352           problem linking tack on MacOS X DP3.
5353         + include <sys/time.h> in lib_napms.c to compile on MacOS X DP3
5354           (reported by Gerben Wierda <wierda@holmes.nl>).
5355         + modify lib_vidattr.c to check for ncv fixes when pair-0 is not
5356           default colors.
5357         + add -d option to ncurses.c, to turn on default-colors for testing.
5358         + add a check to _nc_makenew() to ensure that newwin() and newpad()
5359           calls do not silently fail by passing too-large limits.
5360         + add symbol NCURSES_SIZE_T to use rather than explicit 'short' for
5361           internal window and pad sizes.  Note that since this is visible in
5362           the WINDOW struct, it would be an ABI change to make this an 'int'
5363           (prompted by a question by Bastian Trompetter
5364           <btrompetter@firemail.de>, who attempted to create a 96000-line pad).
5365
5366 20000422
5367         + add mgterm terminfo entry from NetBSD, minor adjustments to sun-ss5,
5368           aixterm entries -TD
5369         + modify tack/ansi.c to make it more tolerant of bad ANSI replies.  An
5370           example of an illegal ANSI resonse can be found using Microsoft's
5371           Telnet client.  A correct display can be found using a VT-4xx
5372           terminal or XFree86 xterm with:
5373                 XTerm*VT100*decTerminalID:  450
5374           (patch by Daniel Weaver).
5375         + modify gdc.c to recognize 'q' for quit, 's' for single-step and ' '
5376           for resume.  Add '-n' option to force gdc's standard input to
5377           /dev/null, to both illustrate the use of newterm() for specifying
5378           alternate inputs as well as for testing signal handling.
5379         + minor fix for configure option --with-manpage-symlinks, for target
5380           directories that contain a period ('.') (reported by Larry Virden).
5381
5382 20000415
5383         + minor additions to beterm entry (feedback from Rico Tudor) -TD
5384         + corrections/updates for some IBM terminfo entries -TD
5385         + modify _nc_screen_wrap() so that when exiting curses mode with
5386           non-default colors, the last line on the screen will be cleared to
5387           the screen's default colors (request by Alexander V Lukyanov).
5388         + modify ncurses.c 'r' example to set nonl(), allowing control/M to be
5389           read for demonstrating the REQ_NEW_LINE operation (prompted by a
5390           question by Tony L Keith <tlkeith@keithconsulting.com>).
5391         + modify ncurses.c 'r' example of field_info() to work on Solaris 2.7,
5392           documented extension of ncurses which allows a zero pointer.
5393         + modify fmt_complex() to avoid buffer overflow in case of excess
5394           recursion, and to recognize "%e%?" as a synonym for else-if, which
5395           means that it will not recur for that special case.
5396         + add logic to support $TERMCAP variable in case the USE_GETCAP symbol
5397           is defined (patch by Todd C Miller).
5398         + modify one of the m4 files used to generate the Ada95 sources,
5399           to avoid using the token "symbols" (patch by Juergen Pfeifer).
5400
5401 20000408
5402         + add terminfo entries bsdos-pc-m, bsdos-pc-mono (Jeffrey C Honig)
5403         + correct spelling error in terminfo entry name:  bq300-rv was given as
5404           bg300-rv in esr's version.
5405         + modify redrawwin() macro so its parameter is fully parenthesized
5406           (fixes Debian bug report #61088).
5407         + correct formatting error in dump_entry() which set incorrect column
5408           value when no newline trimming was needed at the end of an entry,
5409           before appending "use=" clauses (cf: 960406).
5410
5411 20000401
5412         + add configure option --with-manpage-symlinks
5413         + change unctrl() to render C1 characters (128-159) as ~@, ~A, etc.
5414         + change makefiles so trace() function is provided only if TRACE is
5415           defined, e.g., in the debug library.  Modify related calls to
5416           _tracechar() to use unctrl() instead.
5417
5418 20000325
5419         + add screen's AX capability (for ECMA SGR 39 and 49) to applicable
5420           terminfo entries, use presence of this as a check for a small
5421           improvement in setting default colors.
5422         + improve logic in _nc_do_color() implementing assume_default_colors()
5423           by passing in previous color pair info to eliminate redundant call to
5424           set_original_colors().  (Part of this is from a patch by Alexander
5425           V Lukyanov).
5426         + modify warning in _nc_trans_string() about a possibly too-long string
5427           to do this once only rather than for each character past the
5428           threshold (600).  Change interface of _nc_trans_string() to allow
5429           check for buffer overflow.
5430         + correct use of memset in _nc_read_entry_source() to initialize ENTRY
5431           struct each time before reading new data into it, rather than once
5432           per loop (cf:  990301).  This affects multi-entry in-core operations
5433           such as "infocmp -Fa".
5434
5435 20000319
5436         + remove a spurious pointer increment in _nc_infotocap() changes from
5437           20000311.  Add check for '.' in format of number, since that also
5438           is not permitted in termcap.
5439         + correct typo in rxvt-basic terminfo from temporary change made while
5440           integrating 20000318.
5441
5442 20000318
5443         + revert part of the vt220 change (request by Todd C Miller).
5444         + add ansi-* terminfo entries from ESR's version.
5445         + add -a option to tic and infocmp, which retains commented-out
5446           capabilities during source translation/comparison, e.g., captoinfo
5447           and infotocap.
5448         + modify cardfile.c to display an empty card if no input data file is
5449           found, fixes a core dump in that case (reported by Bruno Haible).
5450         + correct bracketing in CF_MATH_LIB configure macro, which gave wrong
5451           result for OS/2 EMX.
5452         + supply required parameter for _nc_resolve_uses() call in
5453           read_termcap.c, overlooked in 20000311 (reported by Todd C Miller).
5454         > patches by Bruno Haible <haible@ilog.fr>:
5455         + fix a compiler warning in fty_enum.c
5456         + correct LIB_PREFIX expression for DEPS_CURSES in progs, tack
5457           makefiles, which resulted in redundant linking (cf: 20000122).
5458
5459 20000311
5460         + make ifdef's for BROKEN_LINKER consistent (patch by Todd C Miller).
5461         + improved tack/README (patch by Daniel Weaver).
5462         + modify tput.c to ensure that unspecified parameters are passed to
5463           tparm() as 0's.
5464         + add a few checks in infocmp to guard against buffer overflow when
5465           displaying string capabilities.
5466         + add check for zero-uses in infocmp's file_comparison() function
5467           before calling _nc_align_termtype().  Otherwise one parameter is
5468           indexed past the end of the uses-array.
5469         + add an option -q to infocmp to specify the less verbose output,
5470           keeping the existing format as the default, though not retaining the
5471           previous behavior that made the -F option compare each entry to
5472           itself.
5473         + adapted patch by ESR to make infocmp -F less verbose -TD
5474           (the submitted patch was unusable because it did not compile
5475           properly)
5476           + modify write_entry.c to ensure that absent or cancelled booleans
5477             are written as FALSE, for consistency with infocmp which now
5478             assumes this.  Note that for the small-core configuration, tic
5479             may not produce the same result as before.
5480           + change some private library interfaces used by infocmp, e.g.,
5481             _nc_resolve_uses().
5482           + add a check in _nc_infotocap() to ensure that cm-style capabilities
5483             accept only %d codes when converting the format from terminfo to
5484             termcap.
5485           + modify ENTRY struct to separate the data in 'parent' into the name
5486             and link values (the original idea to merge both into 'parent' was
5487             not good).
5488           + discard repair_acsc(tterm);
5489         > patch by Juergen Pfeifer:
5490         + drop support for gnat 3.10
5491         + move generated documentation and html files under ./doc directory,
5492           adding makefile rules for this to dist.mk
5493
5494 20000304
5495         + correct conflicting use of tparm() in 20000226 change to tic, which
5496           made it check only one entry at a time.
5497         + fix errors in ncurses-intro.html and hackguide.html shown by Dave
5498           Raggett's tidy.
5499         + make the example in ncurses-intro.html do something plausible, and
5500           corrected misleading comment (reported by Neil Zanella).
5501         + modify pnoutrefresh() to set newscr->_leaveok as wnoutrefresh() does,
5502           to fix a case where the cursor position was not updated as in
5503           Solaris  (patch by David Mosberger <davidm@hpl.hp.com>).
5504         + add a limit-check for wresize() to ensure that a subwindow does not
5505           address out of bounds.
5506         + correct offsets used for subwindows in wresize() (patch by Michael
5507           Andres <ma@suse.de>).
5508         + regenerate html'ized manual pages with man2html 3.0.1 (patch by
5509           Juergen Pfeifer).  This generated a file with a space in its name,
5510           which I removed.
5511         + fix a few spelling errors in tack.
5512         + modify tack/Makefile.in to match linker options of progs/Makefile.in;
5513           otherwise it does not build properly for older HPUX shared library
5514           configurations.
5515         + add several terminfo entries from esr's "11.0".
5516
5517 20000226
5518         + make 'tput flash' work properly for xterm by flushing output in
5519           delay_output() when using napms(), and modifying xterm's terminfo to
5520           specify no padding character.  Otherwise, xterm's reported baud rate
5521           can mislead ncurses into producing too few padding characters
5522           (Debian #58530).
5523         + add a check to tic for consistency between sgr and the separate
5524           capabilities such as smso, use this to check/correct several
5525           terminfo entries (Debian #58530).
5526         + add a check to tic if cvvis is the same as cnorm, adjusted several
5527           terminfo entries to remove the conflict (Debian #58530).
5528         + correct prototype shown in attr_set()/wattr_set() manpages (fixes
5529           Debian #53962).
5530         + minor clarification for curs_set() and leaveok() manpages.
5531         + use mkstemp() for creating temporary file for tic's processing of
5532           $TERMCAP contents (fixes Debian #56465).
5533         + correct two errors from integrating Alexander's changes:  did not
5534           handle the non-bce case properly in can_erase_with() (noted by
5535           Alexander), and left fg/bg uninitialized in the pair-zero case of
5536           _nc_do_color() (reported by Dr Werner Fink <werner@suse.de> and
5537           Ismael Cordeiro <ismael@cordeiro.com>).
5538
5539 20000219
5540         + store default-color code consistently as C_MASK, even if given as
5541           -1 for convenience (adapted from patches by Alexander V Lukyanov).
5542         > patches by Alexander V Lukyanov:
5543         + change can_clear_with() macro to accommodate logic for
5544           assume_default_colors(), making most of the FILL_BCE logic
5545           unnecessary.  Made can_clear_with() an inline function to make it
5546           simpler to read.
5547
5548 20000212
5549         + corrected form of recent copyright dates.
5550         + minor corrections to xterm-xf86-v333 terminfo entry -TD
5551         > patches by Alexander V Lukyanov:
5552         + reworded dft_fgbg.3x to avoid assuming that the terminal's default
5553           colors are white on black.
5554         + fix initialization of tstLine so that it is filled with current blank
5555           character in any case.  Previously it was possible to have it filled
5556           with old blank.  The wrong over-optimization was introduced in 991002
5557           patch.  (it is not very critical as the only bad effect is not using
5558           clr_eos for clearing if blank has changed).
5559
5560 20000205
5561         + minor corrections/updates to several terminfo entries: rxvt-basic,
5562           vt520, vt525, ibm5151, xterm-xf86-v40 -TD
5563         + modify ifdef's for poll() to allow it to use <sys/poll.h>, thereby
5564           allowing poll() to be used on Linux.
5565         + add CF_FUNC_POLL macro to check if poll() is able to select from
5566           standard input.  If not we will not use it, preferring select()
5567           (adapted from patch by Michael Pakovic <mpakovic@fdn.com>).
5568         + update CF_SHARED_OPTS macro for SCO Unixware 7.1 to allow building
5569           shared libraries (reported/tested by Thanh <thanhma@mediaone.net>).
5570         + override $LANGUAGE in build to avoid incorrect ordering of keynames.
5571         + correct CF_MATH_LIB parameter, must be sin(x), not sqrt(x).
5572
5573 20000122
5574         + resync CF_CHECK_ERRNO and CF_LIB_PREFIX macros from tin and xterm -TD
5575         + modify CF_MATH_LIB configure macro to parameterize the test function
5576           used, for reuse in dialog and similar packages.
5577         + correct tests for file-descriptors in OS/2 EMX mouse support.  A
5578           negative value could be used by FD_SET, causing the select() call
5579           to wait indefinitely.
5580
5581 20000115
5582         + additional fixes for non-bce terminals (handling of delete_character)
5583           to work when assume_default_colors() is not specified.
5584         + modify warning message from _nc_parse_entry() regarding extended
5585           capability names to print only if tic/infocmp/toe have the -v flag
5586           set, and not at all in ordinary user applications.  Otherwise, this
5587           warning would be shown for screen's extended capabilities in programs
5588           that use the termcap interface (reported by Todd C Miller).
5589         + modify use of _nc_tracing from programs such as tic so their debug
5590           level is not in the same range as values set by trace() function.
5591         + small panel header cleanup (patch by Juergen Pfeifer).
5592         + add 'railroad' demo for termcap interface.
5593         + modify 'tic' to write its usage message to stderr (patch by Todd C
5594           Miller).
5595
5596 20000108
5597         + add prototype for erase() to curses.h.in, needed to make test
5598           programs build with c++/g++.
5599         + add .c.i and .c.h suffix rules to generated makefiles, for debugging.
5600         + correct install rule for tack.1; it assumed that file was in the
5601           current directory (reported by Mike Castle <dalgoda@ix.netcom.com>).
5602         + modify terminfo/termcap translation to suppress acsc before trying
5603           sgr if the entry would be too large (patch by Todd C Miller).
5604         + document a special case of incompatiblity between ncurses 4.2 and
5605           5.0, add a section for this in INSTALL.
5606         + add TRACE_DATABASE flag for trace().
5607
5608 20000101
5609         + update mach, add mach-color terminfo entries based on Debian diffs
5610           for ncurses 5.0 -TD
5611         + add entries for xterm-hp, xterm-vt220, xterm-vt52 and xterm-noapp
5612           terminfo entries -TD
5613         + change OTrs capabilities to rs2 in terminfo.src -TD
5614         + add obsolete and extended capabilities to 'screen' terminfo -TD
5615         + corrected conversion from terminfo rs2 to termcap rs (cf: 980704)
5616         + make conversion to termcap ug (underline glitch) more consistently
5617           applied.
5618         + fix out-of-scope use of 'personal[]' buffer in 'toe' (this error
5619           was in the original pre-1.9.7 version, when $HOME/.terminfo was
5620           introduced).
5621         + modify 'toe' to ignore terminfo directories to which it has no
5622           permissions.
5623         + modify read_termtype(), fixing 'toe', which could dump core when it
5624           found an incomplete entry such as "dumb" because it did not
5625           initialize its buffer for _nc_read_file_entry().
5626         + use -fPIC rather than -fpic for shared libraries on Linux, not
5627           needed for i386 but some ports (from Debian diffs for 5.0) -TD
5628         + use explicit VALID_NUMERIC() checks in a few places that had been
5629           overlooked, and add a check to ensure that init_tabs is nonzero,
5630           to avoid divide-by-zero (reported by Todd C Miller).
5631         + minor fix for CF_ANSI_CC_CHECK configure macro, for HPUX 10.x (from
5632           tin) -TD
5633
5634 19991218
5635         + reorder tests during mouse initialization to allow for gpm to run in
5636           xterm, or for xterm to be used under OS/2 EMX.  Also drop test for
5637           $DISPLAY in favor of kmous=\E[M or $TERM containing "xterm" (report
5638           by Christian Weisgerber <naddy@mips.rhein-neckar.de>).
5639         + modify raw() and noraw() to clear/restore IEXTEN flag which affects
5640           stty lnext on systems such as FreeBSD (report by Bruce Evans
5641           <bde@zeta.org.au>, via Jason Evans <jasone@canonware.com>).
5642         + fix a potential (but unlikely) buffer overflow in failed() function
5643           of tset.c (reported by Todd C Miller).
5644         + add manual-page for ncurses extensions, documented curses_version(),
5645           use_extended_names().
5646
5647 19991211
5648         + treat as untranslatable to termcap those terminfo strings which
5649           contain non-decimal formatting, e.g., hexadecimal or octal.
5650         + correct commented-out capabilities that cannot be translated to
5651           termcap, which did not check if a colon must be escaped.
5652         + correct termcap translation for "%>" and "%+", which did not check
5653           if a colon must be escaped, for instance.
5654         + use save_string/save_char for _nc_captoinfo() to eliminate fixed
5655           buffer (originally for _nc_infotocap() in 960301 -TD).
5656         + correct expression used for terminfo equivalent of termcap %B,
5657           adjust regent100 entry which uses this.
5658         + some cleanup and commenting of ad hoc cases in _nc_infotocap().
5659         + eliminate a fixed-buffer in tic, used for translating comments.
5660         + add manpage for infotocap
5661
5662 19991204
5663         + add kvt and gnome terminfo entries -TD
5664         + correct translation of "%%" by infotocap, which was emitted as "%".
5665         + add "obsolete" termcap strings to terminfo.src
5666         + modify infocmp to default to showing obsolete capabilities rather
5667           than terminfo only.
5668         + modify write_entry.c so that if extended names (i.e., configure
5669           --enable-tcap-names) are active, then tic will also write "obsolete"
5670           capabilities that are present in the terminfo source.
5671         + modify tic so that when running as captoinfo or infotocap, it
5672           initializes the output format as in -C and -I options, respectively.
5673         + improve infocmp and tic -f option by splitting long strings that do
5674           not have if-then-else construct, but do have parameters, e.g., the
5675           initc for xterm-88color.
5676         + refine MKtermsort.sh slightly by using bool for the *_from_termcap
5677           arrays.
5678
5679 19991127
5680         + additional fixes for non-bce terminals (handling of clear_screen,
5681           clr_eol, clr_eos, scrolling) to work when assume_default_colors() is
5682           not specified.
5683         + several small changes to xterm terminfo entries -TD.
5684         + move logic for _nc_windows in lib_freeall.c inside check for nonnull
5685           SP, since it is part of that struct.
5686         + remove obsolete shlib-versions, which was unintentionally re-added
5687           in 970927.
5688         + modify infocmp -e, -E options to ensure that generated fallback.c
5689           type for Booleans agrees with term.h (reported by Eric Norum
5690           <eric@cls.usask.ca>).
5691         + correct configure script's use of $LIB_PREFIX, which did not work
5692           for installing the c++ directory if $libdir did not end with "/lib"
5693           (reported by Huy Le <huyle@ugcs.caltech.edu>).
5694         + modify infocmp so -L and -f options work together.
5695         + modify the initialization of SP->_color_table[] in start_color() so
5696           that color_content() will return usable values for COLORS greater
5697           than 8.
5698         + modify ncurses 'd' test in case COLORS is greater than 16, e.g., for
5699           xterm-88color, to limit the displayed/computed colors to 16.
5700         > patch by Juergen Pfeifer:
5701         + simplify coding of the panel library according to suggestions by
5702           Philippe Blain.
5703         + improve macro coding for a few macros in curses.priv.h
5704
5705 19991113
5706         + modify treatment of color pair 0 so that if ncurses is configured
5707           to support default colors, and they are not active, then ncurses
5708           will set that explicitly, not relying on orig_colors or orig_pair.
5709         + add new extension, assume_default_colors() to provide better control
5710           over the use of default colors.
5711         + modify test programs to use more-specific ifdef's for existence of
5712           wresize(), resizeterm() and use_default_colors().
5713         + modify configure script to add specific ifdef's for some functions
5714           that are included when --enable-ext-funcs is in effect, so their
5715           existence can be ifdef'd in the test programs.
5716         + reorder some configure options, moving those extensions that have
5717           evolved from experimental status into a new section.
5718         + change configure --enable-tcap-names to enable this by default.
5719
5720 19991106
5721         + install tack's manpage (reported by Robert Weiner
5722           <robert@progplus.com>)
5723         + correct worm.c's handling of KEY_RESIZE (patch by Frank Heckenbach).
5724         + modify curses.h.in, undef'ing some symbols to avoid conflict with C++
5725           STL (reported by Matt Gerassimoff <mgeras@ticon.net>)
5726
5727 19991030
5728         + modify linux terminfo entry to indicate that dim does not mix with
5729           color (reported by Klaus Weide <kweide@enteract.com>).
5730         + correct several typos in terminfo entries related to missing '['
5731           in CSI's -TD
5732         + fix several compiler warnings in c++ binding (reported by Tim
5733           Mooney for alphaev56-dec-osf4.0f
5734         + rename parameter of _nc_free_entries() to accommodate lint.
5735         + correct lint rule for tack, used incorrect list of source files.
5736         + add case to config.guess, config.sub for Rhapsody.
5737         + improve configure tests for libg++ and libstdc++ by omitting the
5738           math library (which is missing on Rhapsody), and improved test for
5739           the math library itself (adapted from path by Nelson H. F. Beebe).
5740         + explicitly initialize to zero several data items which were
5741           implicitly initialized, e.g., cur_term.  If not explicitly
5742           initialized, their storage type is C (common), and causes problems
5743           linking on Rhapsody 5.5 using gcc 2.7.2.1 (reported by Nelson H. F.
5744           Beebe).
5745         + modify Ada95 binding to not include the linker option for Ada
5746           bindings in the Ada headers, but in the Makefiles instead (patch by
5747           Juergen Pfeifer).
5748
5749 19991023 5.0 release for upload to ftp.gnu.org
5750         + effective with release of 5.0, change NCURSES_VERSION_PATCH to
5751           4-digit year.
5752         + add function curses_version(), to return ncurses library version
5753           (request by Bob van der Poel).
5754         + remove rmam, smam from cygwin terminfo entry.
5755         + modify FreeBSD cons25 terminfo entry to add cnorm and cvvis, as well
5756           as update ncv to indicate that 'dim' conflicts with colors.
5757         + modify configure script to use symbolic links for FreeBSD shared
5758           libraries by default.
5759         + correct ranf() function in rain and worm programs to ensure it does
5760           not return 1.0
5761         + hide the cursor in hanoi.c if it is running automatically.
5762         + amend lrtest.c to account for optimizations that exploit margin
5763           wrapping.
5764         + add a simple terminfo demo, dots.c
5765         + modify SIGINT/SIGQUIT handler to set a flag used in _nc_outch() to
5766           tell it to use write() rather than putc(), since the latter is not
5767           safe in a signal handler according to POSIX.
5768         + add/use internal macros _nc_flush() and NC_OUTPUT to hide details
5769           of output-file pointer in ncurses library.
5770         + uncomment CC_SHARED_OPTS (see 971115), since they are needed for SCO
5771           OpenServer.
5772         + correct CC_SHARED_OPTS for building shared libraries for SCO
5773           OpenServer.
5774         + remove usleep() from alternatives in napms(), since it may interact
5775           with alarm(), causing a process to be interrupted by SIGALRM (with
5776           advice from Bela Lubkin).
5777         + modify terminal_interface-curses-forms.ads.m4 to build/work with
5778           GNAT 3.10 (patch by Juergen Pfeifer).
5779         + remove part of CF_GPP_LIBRARY configure-script macro, which did not
5780           work with gcc 2.7.2.3
5781         + minor fix to test/tclock.c to avoid beeping more than once per second
5782         + add 's' and ' ' decoding to test/rain.c
5783
5784 991016  pre-release
5785         + corrected BeOS code for lib_twait.c, making nodelay() function work.
5786
5787 991009  pre-release
5788         + correct ncurses' value for cursor-column in PutCharLR(), which was
5789           off-by-one in one case (patch by Ilya Zakharevich).
5790         + fix some minor errors in position_check() debugging code, found while
5791           using this to validate the PutCharLR() patch.
5792         + modify firework, lrtest, worm examples to be resizable, and to
5793           recognize 'q' for quit, 's' for single-step and ' ' for resume.
5794         + restore reverted change to  terminal_interface-curses-forms.ads.m4,
5795           add a note on building with gnat 3.10p to Ada95/TODO.
5796         + add a copy of the standalone configure script for the test-directory
5797           to simplify testing on SCO and Solaris.
5798
5799 991002  pre-release
5800         + minor fixes for _nc_msec_cost(), color_content(), pair_content(),
5801           _nc_freewin(), ClrBottom() and onscreen_mvcur() (analysis by Philippe
5802           Blain, comments by Alexander V Lukyanov).
5803         + simplify definition of PANEL and eliminate internal functions
5804           _nc_calculate_obscure(), _nc_free_obscure() and _nc_override(),
5805           (patch by Juergen Pfeifer, analysis by Philippe Blain
5806           <bledp@voila.fr>)).
5807         + change renaming of dft_fgbg.3x to use_default_colors.3ncurses in
5808           man_db.renames, since Debian is not concerned with 14-character
5809           filename limitation (Debian bug report by Josip Rodin
5810           <joy@cibalia.gkvk.hr>).
5811         + corrected scoansi terminfo entry by testing with scoterm and console.
5812         + revert change from 990614 to terminal_interface-curses-forms.ads.m4,
5813           since this does not work for gnat 3.10p
5814         + modify tclock example to be resizable (if ncurses' sigwinch handler
5815           is used), and in color.
5816         + use $(CC) rather than 'gcc' in MK_SHARED_LIB symbols, used for Linux
5817           shared library rules.
5818
5819 990925  pre-release
5820         + add newer NetBSD console terminfo entries
5821         + add amiga-8bit terminfo entry (from Henning 'Faroul' Peters
5822           <Faroul@beyond.kn-bremen.de>)
5823         + remove -lcurses -ltermcap from configure script's check for the gpm
5824           library, since they are not really necessary (a properly configured
5825           gpm library has no dependency on any curses library), and if the
5826           curses library is not installed, this would cause the test to fail.
5827         + modify tic's -C option so that terminfo "use=" clauses are translated
5828           to "tc=" clauses even when running it as captoinfo.
5829         + modify CF_STDCPP_LIBRARY configure macro to perform its check only
5830           for GNU C++, since that library conflicts with SGI's libC on IRIX-6.2
5831         + modify CF_SHARED_OPTS configure macro to support build on NetBSD with
5832           ELF libraries (patch by Bernd Ernesti <bernd@arresum.inka.de>).
5833         + correct a problem in libpanel, where the _nc_top_panel variable was
5834           not set properly when bottom_panel() is called to hide a panel which
5835           is the only one on the stack (report/analysis by Michael Andres
5836           <ma@suse.de>, patch by Juergen Pfeifer).
5837
5838 990918  pre-release
5839         + add acsc string to HP 70092 terminfo entry (patch by Joerg Wunsch
5840           <j@interface-business.de>).
5841         + add top-level uninstall.data and uninstall.man makefile rules.
5842         + correct logic of CF_LINK_FUNCS configure script, from BeOS changes so
5843           that hard-links work on Unix again.
5844         + change default value of cf_cv_builtin_bool to 1 (suggested by
5845           Jeremy Buhler), making it less likely that a conflicting declaration
5846           of bool will be seen when compiling with C++.
5847
5848 990911  pre-release
5849         + improved configure checks for builtin.h
5850         + minor changes to C++ binding (remove static initializations, and make
5851           configure-test for parameter initializations) for features not
5852           allowed by vendor's C++ compilers (reported by Martin Mokrejs, this
5853           applies to SGI, though I found SCO has the same characteristics).
5854         + corrected quoting of ETIP_xxx definitions which support old versions
5855           of g++, e.g., those using -lg++
5856         + remove 'L' code from safe_sprintf.c, since 'long double' is not
5857           widely portable.  safe_sprintf.c is experimental, however, and
5858           exists mainly as a fallback for systems without snprintf (reported
5859           by Martin Mokrejs <mmokrejs@natur.cuni.cz>, for IRIX 6.2)
5860         + modify definition of _nc_tinfo_fkeys in broken-linker configuration
5861           so that it is not unnecessarily made extern (Jeffrey C Honig).
5862
5863 990904  pre-release
5864         + move definition for builtin.h in configure tests to specific check
5865           for libg++, since qt uses the same filename incompatibly.
5866         + correct logic of lib_termcap.c tgetstr function, which did not copy
5867           the result to the buffer parameter.  Testing shows Solaris does
5868           update this, though of course tgetent's buffer is untouched (reported
5869           in Peter Edwards <peter.edwards@ireland.com> in
5870           mpc.lists.freebsd.current newsgroup.
5871         + corrected beterm terminfo entry, which lists some capabilities which
5872           are not actually provided by the BeOS Terminal.
5873         + add special logic to replace select() calls on BeOS, whose select()
5874           function works only for sockets.
5875         + correct missing escape in mkterm.h.awk.in, which caused part
5876           of the copyright noticed to be omitted (reported by Peter
5877           Wemm <peter@netplex.com.au>).
5878         > several small changes to make the c++ binding and demo work on OS/2
5879           EMX (related to a clean reinstall of EMX):
5880         + correct library-prefix for c++ binding; none is needed.
5881         + add $x suffix to make_hash and make_keys so 'make distclean' works.
5882         + correct missing $x suffix for tack, c++ demo executables.
5883         + split CF_CXX_LIBRARY into CF_GPP_LIBRARY (for -lg++) and
5884           CF_STDCPP_LIBRARY (for -lstdc++)
5885
5886 990828  pre-release
5887         + add cygwin terminfo entry -TD
5888         + modify CF_PROG_EXT configure macro to set .exe extension for cygwin.
5889         + add configure option --without-cxx-binding, modifying the existing
5890           --without-cxx option to check only for the C++ compiler
5891           characteristics.  Whether or not the C++ binding is needed, the
5892           configure script checks for the size/type of bool, to make ncurses
5893           match.  Otherwise C++ applications cannot use ncurses.
5894
5895 990821  pre-release
5896         + updated configure macros CF_MAKEFLAGS, CF_CHECK_ERRNO
5897         + minor corrections to beterm terminfo entry.
5898         + modify lib_setup.c to reject values of $TERM which have a '/' in
5899           them.
5900         + add ifdef's to guard against CS5, CS6, CS7, CS8 being zero, as more
5901           than one is on BeOS.  That would break a switch statement.
5902         + add configure macro CF_LINK_FUNCS to detect and work around BeOS's
5903           nonfunctional link().
5904         + improved configure macros CF_BOOL_DECL and CF_BOOL_SIZE to detect
5905           BeOS's bool, which is declared as an unsigned char.
5906
5907 990814  pre-release
5908         + add ms-vt100 terminfo entry -TD
5909         + minor fixes for misc/emx.src, based on testing with tack.
5910         + minor fix for test/ncurses.c, test 'a', in case ncv is not set.
5911
5912 990731  pre-release
5913         + minor correction for 'screen' terminfo entry.
5914         + clarify description of errret values for setupterm in manpage.
5915         + modify tput to allow it to emit capabilities for hardcopy terminals
5916           (patch by Goran Uddeborg <goeran@uddeborg.pp.se>).
5917         + modify the 'o' (panel) test in ncurses.c to show the panels in color
5918           or at least in bold, to test Juergen's change to wrefresh().
5919         > patches by Juergen Pfeifer:
5920         + Fixes a problem using wbkgdset() with panels.  It has actually
5921           nothing to with panels but is a problem in the implementation of
5922           wrefresh().  Whenever a window changes its background attribute to
5923           something different than newscr's background attribute, the whole
5924           window is touched to force a copy to newscr.  This is an unwanted
5925           side-effect of wrefresh() and it is actually not necessary.  A
5926           changed background attribute affects only further outputs of
5927           background it doesn't mean anything to the current content of the
5928           window.  So there is no need to force a copy.  (reported by Frank
5929           Heckenbach <frank@g-n-u.de>).
5930         + an upward compatible enhancement of the NCursesPad class in the C++
5931           binding.  It allows one to add a "viewport" window to a pad and then
5932           to use panning to view the pad through the viewport window.
5933
5934 990724  pre-release
5935         + suppress a call to def_prog_mode() in the SIGTSTP handler if the
5936           signal was received while not in curses mode, e.g., endwin() was
5937           called in preparation for spawning a shell command (reported by Frank
5938           Heckenbach <frank@g-n-u.de>)
5939         + corrected/enhanced xterm-r5, xterm+sl, xterm+sl-twm terminfo entries.
5940         + change test for xterm mouse capability:  it now checks only if the
5941           user's $DISPLAY variable is set in conjunction with the kmous
5942           capability being present in the terminfo.  Before, it checked if any
5943           of "xterm", "rxvt" or "kterm" were substrings of the terminal name.
5944           However, some emulators which are incompatible with xterm in other
5945           ways do support the xterm mouse capability.
5946         + reviewed and made minor changes in ncurses to quiet g++ warnings
5947           about shadowed or uninitialized variables.  g++ incorrectly warns
5948           about uninitialized variables because it does not take into account
5949           short-circuit expression evaluation.
5950         + change ncurses 'b' test to start in color pair 0 and to show in the
5951           right margin those attributes which are suppressed by no_color_video,
5952           i.e., "(NCV)".
5953         + modify ifdef's in curses.h so that __attribute__ is not redefined
5954           when compiling with g++, but instead disabled the macros derived for
5955           __attribute__ since g++ does not consistently recognize the same
5956           keywords as gcc (reported by Stephan K Zitz <zitz@erf.net>).
5957         + update dependencies for term.h in ncurses/modules (reported by
5958           Ilya Zakharevich).
5959
5960 990710  pre-release
5961         + modify the form demo in ncurses.c to illustrate how to manipulate the
5962           field appearance, e.g, for highlighting or translating the field
5963           contents.
5964         + correct logic in write_entry from split-out of home_terminfo in
5965           980919, which prevented update of $HOME/.terminfo (reported by Philip
5966           Spencer <pspencer@fields.utoronto.ca>).
5967
5968 990703  pre-release
5969         + modify linux terminfo description to make use of kernel 2.2.x mods
5970           that support cursor style, e.g., to implement cvvis (patch by Frank
5971           Heckenbach <frank@g-n-u.de>)
5972         + add special-case in setupterm to retain previously-saved terminal
5973           settings in cur_term, which happens when curses and termcap calls are
5974           mixed (from report by Bjorn Helgaas <helgaas@dhc.net>).
5975         + suppress initialization of key-tries in _nc_keypad() if we are only
5976           disabling keypad mode, e.g., in endwin() called when keypad() was
5977           not.
5978         + modify the Ada95 makefile to ensure that always the Ada files from
5979           the development tree are used for building and not the eventually
5980           installed ones (patch by Juergen Pfeifer).
5981
5982 990626  pre-release
5983         + use TTY definition in tack/sysdep.c rather than struct termios
5984           (reported by Philippe De Muyter).
5985         + add a fallback for strstr, used in lib_mvcur.c and tack/edit.c,
5986           not present on sysV68 (reported by Philippe De Muyter).
5987         + correct definition in comp_hash.c to build with configure
5988           --with-rcs-ids option.
5989
5990 990619  pre-release
5991         + modified ifdef's for sigaction and sigvec to ensure we do not try to
5992           handle SIGTSTP if neither is available (from report by Philippe De
5993           Muyter).
5994         > patch by Philippe De Muyter:
5995         + in tic.c, use `unlink' if `remove' is not available.
5996         + use only `unsigned' as fallback value for `speed_t'.  Some files used
5997           `short' instead.
5998
5999 990616  pre-release
6000         + fix some compiler warnings in tack.
6001         + add a check for predefined bool type in CC, based on report that
6002           BeOS predefines a bool type.
6003         + correct logic for infocmp -e option, i.e., the configure
6004           --with-fallbacks option, which I'd not updated when implementing
6005           extended names (cf:  990301).  The new implementation adds a "-E"
6006           option to infocmp -TD
6007         > patch by Juergen Pfeifer:
6008         + introduce the private type Curses_Bool in the Ada95 binding
6009           implementation.  This is to clearly represent the use of "bool" also
6010           in the binding.  It should have no effect on the generated code.
6011         + improve the man page for field_buffer() to tell the people, that the
6012           whole buffer including leading/trailing spaces is returned.  This is
6013           a common source of confusion, so it's better to document it clearly.
6014
6015 990614  pre-release
6016         > patch by Juergen Pfeifer:
6017         + use pragma PreElaborate in several places.
6018         + change a few System.Address uses to more specific types.
6019         + change interface version-number to 1.0
6020         + regenerate Ada95 HTML files.
6021
6022 990612  pre-release
6023         + modify lib_endwin.c to avoid calling reset_shell_mode(), return ERR
6024           if it appears that curses was never initialized, e.g., by initscr().
6025           For instance, this guards against setting the terminal modes to
6026           strange values if endwin() is called after setupterm().  In the same
6027           context, Solaris curses will dump core.
6028         + modify logic that avoids a conflict in lib_vidattr.c between sgr0 and
6029           equivalent values in rmso or rmul by ensuring we do not modify the
6030           data which would be returned by the terminfo or termcap interfaces
6031           (reported by Brad Pepers <brad@linuxcanada.com>, cf:  960706).
6032         + add a null-pointer check for SP in lib_vidattr.c to logic that checks
6033           for magic cookies.
6034         + improve fallback declaration of 'bool' when the --without-cxx option
6035           is given, by using a 'char' on i386 and related hosts (prompted by
6036           discussion with Alexander V Lukyanov).
6037
6038 990605  pre-release
6039         + include time.h in lib_napms.c if nanosleep is used (patch by
6040           R Lindsay Todd <toddr@rpi.edu>).
6041         + add an "#undef bool" to curses.h, in case someone tries to define it,
6042           e.g., perl.
6043         + add check to tparm to guard against divide by zero (reported by Aaron
6044           Campbell <aaron@ug.cs.dal.ca>).
6045
6046 990516  pre-release
6047         + minor fix to build tack on CLIX (mismatched const).
6048         > patch by Juergen Pfeifer:
6049         + change Juergen's old email address with new one in the files where it
6050           is referenced.  The Ada95 HTML pages are regenerated.
6051         + update MANIFEST to list the tack files.
6052
6053 990509  pre-release
6054         + minor fixes to make 'tack' build/link on NeXT (reported by Francisco
6055           A. Tomei Torres).
6056
6057 990417  pre-release
6058         + add 'tack' program (which is GPL'd), updating it to work with the
6059           modified TERMTYPE struct and making a fix to support setaf/setab
6060           capabilities.  Note that the tack program is not part of the
6061           ncurses libraries, but an application which can be distributed with
6062           ncurses.  The configure script will ignore the directory if it is
6063           omitted, however.
6064         + modify gpm mouse support so that buttons 2 and 3 are used for
6065           select/paste only when shift key is pressed, making them available
6066           for use by an application (patch by Klaus Weide).
6067         + add complete list of function keys to scoansi terminfo entry - TD
6068
6069 990410  pre-release
6070         + add a simple test program cardfile.c to illustrate how to read form
6071           fields, and showing forms within panels.
6072         + change shared-library versioning for the Hurd to be like Linux rather
6073           than *BSD (patch by Mark Kettenis <kettenis@wins.uva.nl>).
6074         + add linux-lat terminfo entry.
6075         + back-out _nc_access check in read_termcap.c (both incorrect and
6076           unnecessary, except to guard against a small window where the file's
6077           ownership may change).
6078
6079 990403  pre-release
6080         + remove conflicting _nc_free_termtype() function from test module
6081           lib_freeall.c
6082         + use _nc_access check in read_termcap.c for termpaths[] array (noted
6083           by Jeremy Buhler, indicating that Alan Cox made a similar patch).
6084         > patch by Juergen Pfeifer:
6085         + modify menu creation to not inherit status flag from the default menu
6086           which says that the associated marker string has been allocated and
6087           should be freed (bug reported by Marek Paliwoda"
6088           <paliwoda@kki.net.pl>)
6089
6090 990327  pre-release (alpha.gnu.org:/gnu/ncurses-5.0-beta1.tar.gz)
6091         + minor fixes to xterm-xfree86 terminfo entry - TD.
6092         + split up an expression in configure script check for ldconfig to
6093           workaround limitation of BSD/OS sh (reported by Jeff Haas
6094           <jmh@mail.msen.com>).
6095         + correct a typo in man/form_hook.3x (Todd C Miller).
6096
6097 990318  pre-release
6098         + parenthesize and undef 'index' symbol in c++ binding and demo, to
6099           accommodate its definition on NeXT (reported by Francisco A. Tomei
6100           Torres).
6101         + add sigismember() to base/sigaction.c compatibility to link on NeXT
6102           (reported by Francisco A. Tomei Torres).
6103         + further refinements to inequality in hashmap.c to cover a case with
6104           ^U in nvi (patch by Alexander V Lukyanov).
6105
6106 990316  pre-release
6107         + add fallback definition for getcwd, to link on NeXT.
6108         + add a copy of cur_term to tic.c to make it link properly on NeXT
6109           (reported by Francisco A. Tomei Torres).
6110         + change inequality in hashmap.c which checks the distance traveled by
6111           a chunk so that ^D command in nvi (scrolls 1/2 screen) will use
6112           scrolling logic (patch by Alexander V Lukyanov, reported by Jeffrey
6113           C Honig).
6114
6115 990314  pre-release
6116         + modify lib_color.c to handle a special case where the curscr
6117           attributes have been made obsolete (patch by Alexander V Lukyanov).
6118         + update BSD/OS console terminfo entries to use klone+sgr and
6119           klone+color (patch by Jeffrey C Honig).
6120         + update glibc addon configure script for extended capabilities.
6121         + correct a couple of warnings in the --enable-const configuration.
6122         + make comp_hash build properly with _nc_strdup(), on NeXT (reported by
6123           Francisco A. Tomei Torres <francisco.tomei@cwix.com>).
6124
6125 990313  pre-release
6126         + correct typos in linux-c initc string - TD
6127         + add 'crt' terminfo entry, update xterm-xfree86 entry - TD
6128         + remove a spurious argument to tparm() in lib_sklrefr.c (patch by
6129           Alexander V Lukyanov).
6130
6131 990307  pre-release
6132         + back-out change to wgetch because it causes a problem with ^Z
6133           handling in lynx (reported by Kim DeVaughn).
6134
6135 990306  pre-release
6136         + add -G option to tic and infocmp, to reverse the -g option.
6137         + recode functions in name_match.c to avoid use of strncpy, which
6138           caused a 4-fold slowdown in tic (cf: 980530).
6139         + correct a few warnings about sign-extension in recent changes.
6140         > patch by Juergen Pfeifer:
6141         + fixes suggested by Jeff Bradbury <jibradbury@lucent.com>:
6142           + improved parameter checking in new_fieldtype().
6143           + fixed a typo in wgetch() timeout handling.
6144           + allow slk_init() to be called per newterm call.  The internal SLK
6145             state is stored in the SCREEN struct after every newterm() and then
6146             reset for the next newterm.
6147           + fix the problem that a slk_refresh() refreshes stdscr if the
6148             terminal has true SLKs.
6149         + update HTML documentation for Ada binding.
6150
6151 990301  pre-release
6152         + remove 'bool' casts from definitions of TRUE/FALSE so that statements
6153           such as "#if TRUE" work.  This was originally done to allow for a C++
6154           compiler which would warn of implicit conversions between enum and
6155           int, but is not needed for g++ (reported by Kim DeVaughn).
6156         + add use_extended_names() function to allow applications to suppress
6157           read of the extended capabilities.
6158         + add configure option --enable-tcap-names to support logic which
6159           allows ncurses' tic to define new (i.e., extended) terminal
6160           capabilities.  This is activated by the tic -x switch.  The infocmp
6161           program automatically shows or compares extended capabilities.
6162           Note:  This changes the Strings and similar arrays in the TERMTYPE
6163           struct so that applications which manipulate it must be recompiled.
6164         + use macros typeMalloc, typeCalloc and typeRealloc consistently
6165           throughout ncurses library.
6166         + add _nc_strdup() to doalloc.c.
6167         + modify define_key() to allow multiple strings to be bound to the
6168           same keycode.
6169         + correct logic error in _nc_remove_string, from 990220.
6170         > patch for Ada95 binding (Juergen Pfeifer):
6171         + regenerate some of the html documentation
6172         + minor cleanup in terminal_interface-curses.adb
6173
6174 990220  pre-release
6175         + resolve ambiguity of kend/kll/kslt and khome/kfnd/kich1 strings in
6176           xterm and ncsa terminfo entries by removing the unneeded ones.  Note
6177           that some entries will return kend & khome versus kslt and kfnd, for
6178           PC-style keyboards versus strict vt220 compatiblity - TD
6179         + add function keybound(), which returns the definition associated with
6180           a given keycode.
6181         + modify define_key() to undefine the given string when no keycode is
6182           given.
6183         + modify keyok() so it works properly if there is more than one string
6184           defined for a keycode.
6185         + add check to tic to warn about terminfo descriptions that contain
6186           more than one key assigned to the same string.  This is shown only if
6187           the verbose (-v) option is given.  Moved related logic (tic -v) from
6188           comp_parse.c into the tic program.
6189         + add/use _nc_trace_tries() to show the function keys that will be
6190           recognized.
6191         + rename init_acs to _nc_init_acs (request by Alexander V Lukyanov).
6192         > patch for Ada95 binding (Juergen Pfeifer):
6193         + remove all the *_adabind.c from ncurses, menu and form projects.
6194           Those little helper routines have all been implemented in Ada and are
6195           no longer required.
6196         + The option handling routines in menu and form have been made more
6197           save.  They now make sure that the unused bits in options are always
6198           zero.
6199         + modify configuration scripts to
6200           + use gnatmake as default compiler name.  This is a safer choice than
6201             gcc, because some GNAT implementations use other names for the
6202             compilerdriver to avoid conflicts.
6203           + use new default installation locations for the Ada files according
6204             to the proposed GNU Ada filesystem standard (for Linux).
6205         + simplify the Makefiles for the Ada binding
6206         + rename ada_include directory to src.
6207
6208 990213
6209         + enable sigwinch handler by default.
6210         + disable logic that allows setbuf to be turned off/on, because some
6211           implementations will overrun the buffer after it has been disabled
6212           once.
6213
6214 990206
6215         + suppress sc/rc capabilities from terminal description if they appear
6216           in smcup/rmcup.  This affects only scrolling optimization, to fix a
6217           problem reported by several people with xterm's alternate screen,
6218           though the problem is more general.
6219         > patch for Ada95 binding (Juergen Pfeifer):
6220         + removed all pragma Preelaborate() stuff, because the just released
6221           gnat-3.11p complains on some constructs.
6222         + fixed some upper/lower case notations because gnat-3.11p found
6223           inconsistent use.
6224         + used a new method to generate the HTML documentation of the Ada95
6225           binding.  This invalidates nearly the whole ./Ada95/html subtree.
6226           Nearly all current files in this subtree are removed
6227
6228 990130
6229         + cache last result from _nc_baudrate, for performance (suggested by
6230           Alexander V Lukyanov).
6231         + modify ClrUpdate() function to workaround a problem in nvi, which
6232           uses redrawwin in SIGTSTP handling.  Jeffrey C Honig reported that
6233           ncurses repainted the screen with nulls before resuming normal
6234           operation (patch by Alexander V Lukyanov).
6235         + generalize is_xterm() function a little by letting xterm/rxvt/kterm
6236           be any substring rather than the prefix.
6237         + modify lib_data.c to initialize SP.  Some linkers, e.g., IBM's, will
6238           not link a module if the only symbols exported from the module are
6239           uninitialized ones (patch by Ilya Zakharevich).  Ilya says that he
6240           has seen messages claiming this behavior conforms to the standard.)
6241         + move call on _nc_signal_handler past _nc_initscr, to avoid a small
6242           window where Nttyb hasn't yet been filled (reported by Klaus Weide).
6243         + modify lib_tstp.c to block SIGTTOU when handling SIGTSTP, fixes a
6244           problem where ncurses applications which were run via a shell script
6245           would hang when given a ^Z.  Also, check if the terminal's process
6246           group is consistent, i.e., a shell has not taken ownership of it,
6247           before deciding to save the current terminal settings in the SIGTSTP
6248           handler (patch by Klaus Weide).
6249         + correct spelling of ACS_ names in curs_border.3x (reported by Bob van
6250           der Poel <bvdpoel@kootenay.com>).
6251         + correct a couple of typos in the macros supporting the configure
6252           --with-shlib-version option.
6253
6254 990123
6255         + modify fty_regex.c to compile on HAVE_REGEXPR_H_FUNCS machine (patch
6256           by Kimio Ishii <ishii@csl.sony.co.jp>).
6257         + rename BSDI console terminfo entries:  bsdos to bsdos-pc-nobold, and
6258           bsdos-bold to bsdos-pc (patch by Jeffrey C Honig).
6259         + modify tput to accept termcap names as an alternative to terminfo
6260           names (patch by Jeffrey C Honig).
6261         + correct a typo in term.7 (Todd C Miller).
6262         + add configure --with-shlib-version option to allow installing shared
6263           libraries named according to release or ABI versions.  This
6264           parameterizes some existing logic in the configure script, and is
6265           intended for compatiblity upgrades on Digital Unix, which used
6266           versioned libraries in ncurses 4.2, but no longer does (cf:  980425).
6267         + resync configure script against autoconf 2.13 + patches
6268         + minor improvements for teraterm terminfo entry based on the program's
6269           source distribution.
6270
6271 990116
6272         + change default for configure --enable-big-core to assume machines do
6273           have enough memory to resolve terminfo.src in-memory.
6274         + correct name of ncurses library in TEST_ARGS when configuring with
6275           debug library.
6276         + minor fixes to compile ncurses library with broken-linker with g++.
6277         + add --enable-broken-linker configure option, default to environment
6278           variable $BROKEN_LINKER (request by Jeffrey C Honig).
6279         + change key_names[] array to static since it is not part of the curses
6280           interface (reported by Jeffrey C Honig <jch@bsdi.com>).
6281
6282 990110
6283         + add Tera Term terminfo entry - TD
6284
6285 990109
6286         + reviewed/corrected macros in curses.h as per XSI document.
6287         + provide support for termcap PC variable by copying it from terminfo
6288           data and using it as the padding character in tputs (reported by
6289           Alexander V Lukyanov).
6290         + corrected iris-ansi and iris-ansi-ap terminfo entries for kent and
6291           kf9-kf12 capabilities, as well as adding kcbt.
6292         + document the mouse handling mechanism in menu_driver and make a small
6293           change in menu_driver's return codes to provide more consistency
6294           (patch by Juergen Pfeifer).
6295         + add fallback definition for NCURSES_CONST to termcap.h.in (reported
6296           by Uchiyama Yasushi <uch@nop.or.jp>).
6297         + move lib_restart.c to ncurses/base, since it uses curses functions
6298           directly, and therefore cannot be used in libtinfo.so
6299         + rename micro_char_size to micro_col_size, adding #define to retain
6300           old name.
6301         + add set_a_attributes and set_pglen_inch to terminfo structure, as per
6302           XSI and Solaris 2.5.
6303         + minor makefile files to build ncurses test_progs
6304         + update html files in misc directory to reflect changes since 4.2
6305
6306 990102
6307         + disable scroll hints when hashmap is enabled (patch by Alexander
6308           V Lukyanov).
6309         + move logic for tic's verify of -e option versus -I and -C so that the
6310           terminfo data is not processed if we cannot handle -e (reported by
6311           Steven Schwartz <steves@unitrends.com>.
6312         + add test-driver traces to terminfo and termcap functions.
6313         + provide support for termcap ospeed variable by copying it from the
6314           internal cur_term member, and using ospeed as the baudrate reference
6315           for the delay_output and tputs functions.  If an application does not
6316           set ospeed, the library behaves as before, except that _nc_timed_wait
6317           is no longer used, or needed, since ospeed always has a value.  But
6318           the application can modify ospeed to adjust the output of padding
6319           characters (prompted by a bug report for screen 3.7.6 and email from
6320           Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>).
6321         + removed some unused ifdef's as part of Alexander's restructuring.
6322         + reviewed/updated curses.h, term.h against X/Open Curses Issue 4
6323           Version 2.  This includes making some parameters NCURSES_CONST
6324           rather than const, e.g., in termcap.h.
6325         + change linux terminfo entry to use ncv#2, since underline does not
6326           work with color
6327
6328 981226
6329         + miscellaneous corrections for curses.h to match XSI.
6330         + change --enable-no-padding configure option to be normally enabled.
6331         + add section to ncurses manpage for environment variables.
6332         + investigated Debian bug report that pertains to screen 3.7.4/3.7.6
6333           changes, found no sign of problems on Linux (or on SunOS, Solaris)
6334           running screen built with ncurses.
6335         + check if tmp_fp is opened in tic.c before closing it (patch by Pavel
6336           Roskin <pavel_roskin@geocities.com>).
6337         + correct several font specification typos in man-pages.
6338
6339 981220
6340         + correct default value for BUILD_CC (reported by Larry Virden).
6341
6342 981219
6343         + modify _nc_set_writedir() to set a flag in _nc_tic_dir() to prevent
6344           it from changing the terminfo directory after chdir'ing to it.
6345           Otherwise, a relative path in $TERMINFO would confuse tic (prompted
6346           by a Debian bug report).
6347         + correct/update ncsa terminfo entry (report by Larry Virden).
6348         + update xterm-xfree86 terminfo to current (patch 90), smcur/rmcur
6349           changes
6350         + add Mathew Vernon's mach console entries to terminfo.src
6351         + more changes, moving functions, as part of Alexander's restructuring.
6352         + modify configure script for GNU/Hurd share-library support, introduce
6353           BUILD_CC variable for cross compiling (patch by Uchiyama Yasushi
6354           <uch@nop.or.jp>)
6355
6356 981212
6357         + add environment variable NCURSES_NO_SETBUF to allow disabling the
6358           setbuf feature, for testing purposes.
6359         + correct ifdef's for termcap.h versus term.h that suppress redundant
6360           declarations of prototypes (reported by H.J.Lu).
6361         + modify Makefile.os2 to add linker flags which allow multiple copies
6362           of an application to coexist (reported by Ilya Zakharevich).
6363         + update Makefile.glibc and associated configure script so that ncurses
6364           builds as a glibc add-on with the new directory configuration
6365           (reported by H.J.Lu).
6366
6367 981205
6368         + modify gen_reps() function in gen.c to work properly on SunOS
6369           (sparc), which is a left-to-right architecture.
6370         + modify relative_move and tputs to avoid an interaction with the
6371           BSD-style padding.  The relative_move function could produce a string
6372           to replace on the screen which began with a numeric character, which
6373           was then interpreted by tputs as padding.  Now relative_move will not
6374           generate a string with a leading digit in that case (overwrite).
6375           Also, tputs will only interpret padding if the string begins with a
6376           digit; as coded it permitted a string to begin with a decimal point
6377           or asterisk (reported by Larry Virden).
6378         > patches by Juergen Pfeifer:
6379         + fix a typo in m_driver.c mouse handling and improves the error
6380           handling.
6381         + fix broken mouse handling in the Ada95 binding
6382         + make the Ada95 sample application menus work with the new menu mouse
6383           support
6384         + improve the mouse handling introduced by Ilya; it now handles menus
6385           with spacing.
6386         + repair a minor bug in the menu_driver code discovered during this
6387           rework.
6388         + add new function wmouse_trafo() to hide implementation details of
6389           _yoffset member of WINDOW struct needed for mouse coordinate
6390           transformation.
6391
6392 981128
6393         + modify Ada95/gen/gen.c to avoid using return-value of sprintf, since
6394           some older implementations (e.g., SunOS 4.x) return the buffer
6395           address rather than its length.
6396         > patch by Rick Ohnemus:
6397         + modify demo.cc to get it to compile with newer versions of egcs.
6398         + trim a space that appears at the end of the table preprocessor lines
6399           ('\" t).  This space prevents some versions of man from displaying
6400           the pages - changed to remove all trailing whitespace (TD)
6401         + finally, 'make clean' does not remove panel objects.
6402         > patches by Ilya Zakharevich:
6403         + allow remapping of OS/2 mouse buttons using environment variable
6404           MOUSE_BUTTONS_123 with the default value 132.
6405         + add mouse support to ncurses menus.
6406
6407 981121
6408         + modify misc/makedef.cmd to report old-style .def file symbols, and to
6409           generate the .def files sorted by increasing names rather than the
6410           reverse.
6411         + add misc/*.ref which are J.J.G.Ripoll's dll definition files (renamed
6412           from misc/*.old), and updated based on the entrypoint coding he used
6413           for an older version of ncurses.
6414         + add README.emx, to document how to build on OS/2 EMX.
6415         + updates for config.guess, config.sub from Lynx
6416         > patches by Ilya Zakharevich:
6417         + minor fixes for mouse handling mode:
6418           a) Do not initialize mouse if the request is to have no mouse;
6419           b) Allow switching of OS/2 VIO mouse on and off.
6420         + modify Makefile.os2 to support alternative means of generating
6421           configure script, by translating Unix script with Perl.
6422         > patches by Juergen Pfeifer:
6423         + Updates MANIFEST to reflect changes in source structure
6424         + Eliminates a problem introduced with my last patch for the C++
6425           binding in the panels code.  It removes the update() call done in the
6426           panel destructor.
6427         + Changes in the Ada95 binding to better support systems where
6428           sizeof(chtype)!=sizeof(int) (e.g.  DEC Alpha).
6429
6430 981114
6431         + modify install-script for manpages to skip over .orig and .rej files
6432           (request by Larry Virden).
6433         > patches/discussion by Alexander V Lukyanov:
6434         + move base-library sources into ncurses/base and tty (serial terminal)
6435           sources into ncurses/tty, as part of Alexander V Lukyanov's proposed
6436           changes to ncurses library.
6437         + copy _tracemouse() into ncurses.c so that lib_tracemse.c need not
6438           be linked into the normal ncurses library.
6439         + move macro winch to a function, to hide details of struct ldat
6440         > patches by Juergen Pfeifer:
6441         + fix a potential compile problem in cursesw.cc
6442         + some Ada95 cosmetics
6443         + fix a gen.c problem when compiling on 64-Bit machines
6444         + fix Ada95/gen/Makefile.in "-L" linker switch
6445         + modify Ada95 makefiles to use the INSTALL_PREFIX setting.
6446
6447 981107
6448         + ifdef'd out lib_freeall.c when not configured.
6449         + rename _tracebits() to _nc_tracebits().
6450         + move terminfo-library sources into ncurses/tinfo, and trace-support
6451           functions into ncurses/trace as part of Alexander V Lukyanov's
6452           proposed changes to ncurses library.
6453         + modify generated term.h to always specify its own definitions for
6454           HAVE_TERMIOS_H, etc., to guard against inclusion by programs with
6455           broken configure scripts.
6456
6457 981031
6458         + modify terminfo parsing to accept octal and hexadecimal constants,
6459           like Solaris.
6460         + remove an autoconf 2.10 artifact from the configure script's check
6461           for "-g" compiler options.  (Though harmless, this confused someone
6462           at Debian, who recently issued a patch that results in the opposite
6463           effect).
6464         + add configure option --with-ada-compiler to accommodate installations
6465           that do not use gcc as the driver for GNAT (patch by Juergen
6466           Pfeifer).
6467
6468 981017
6469         + ensure ./man exists in configure script, needed when configuring
6470           with --srcdir option.
6471         + modify infocmp "-r" option to remove limit on formatted termcap
6472           output, which makes it more like Solaris' version.
6473         + modify captoinfo to treat no-argument case more like Solaris'
6474           version, which uses the contents of $TERMCAP as the entry to format.
6475         + modify mk-2nd.awk to handle subdirectories, e.g., ncurses/tty
6476           (patch by Alexander V Lukyanov).
6477
6478 981010
6479         + modify --with-terminfo-dirs option so that the default value is the
6480           ${datadir} value, unless $TERMINFO_DIRS is already set.  This gets
6481           rid of a hardcoded list of candidate directories in the configure
6482           script.
6483         + add some error-checking to _nc_read_file_entry() to ensure that
6484           strings are properly terminated (Todd C Miller).
6485         + rename manpage file curs_scr_dmp.3x to curs_scr_dump.3x, to
6486           correspond with contents (reported by Neil Zanella
6487           <nzanella@cs.mun.ca>).
6488         + remove redundant configure check for C++ which did not work when $CXX
6489           was specified with a full pathname (reported by Andreas Jaeger).
6490         + corrected bcopy/memmove check; the macro was not standalone.
6491
6492 981003
6493         + remove unnecessary portion of OS/2 EMX mouse change from
6494           check_pending() (reported by Alexander V Lukyanov).
6495
6496 980926
6497         + implement mouse support for OS/2 EMX (adapted from patch against
6498           4.2(?) by Ilya Zakharevich).
6499         + add configure-check for bcopy/memmove, for 980919 changes to hashmap.
6500         + merge Data General terminfo from Hasufin <hasufin@vidnet.net> - TD
6501         + merge AIX 3.2.5 terminfo descriptions for IBM terminals, replaces
6502           some older entries - TD
6503         + modify tic to compile into %'char' form in preference to %{number},
6504           since that is a little more efficient.
6505         + minor correction to infocmp to avoid displaying "difference" between
6506           two capabilities that are rendered in equivalent forms.
6507         + add -g option to tic/infocmp to force character constants to be
6508           displayed in quoted form.  Otherwise their decimal values are shown.
6509         + modify setupterm so that cancelled strings are treated the same as
6510           absent strings, cancelled and absent booleans false (does not affect
6511           tic, infocmp).
6512         + modify tic, infocmp to discard redundant i3, r3 strings when output
6513           to termcap format.
6514         > patch by Alexander V Lukyanov:
6515         + improve performance of tparm, now it takes 19% instead of 25% when
6516           profiling worm.
6517         + rename maxlen/minlen to prec/width for better readability.
6518         + use format string for printing strings.
6519         + use len argument correctly in save_text, and pass it to save_number.
6520
6521 980919
6522         + make test_progs compile (but hashmap does not function).
6523         + correct NC_BUFFERED macro, used in lib_mvcur test-driver, modify
6524           associated logic to avoid freeing the SP->_setbuf data.
6525         + add modules home_terminfo and getenv_num to libtinfo.
6526         + move write_entry to libtinfo, to work with termcap caching.
6527         + minor fixes to blue.c to build with atac.
6528         + remove softscroll.c module; no longer needed for testing.
6529         > patches by Todd C Miller:
6530         + use strtol(3) instead of atoi(3) when parsing env variables so we can
6531           detect a bogus (non-numeric) value.
6532         + check for terminal names > MAX_NAME_SIZE in a few more places when
6533           dealing with env variables again.
6534         + fix a MAX_NAME_SIZE that should be MAX_NAME_SIZE+1
6535         + use sizeof instead of strlen(3) on PRIVATE_INFO since it is a fixed
6536           string #define (compile time vs runtime).
6537         + when setting errno to ENOMEM, set it right before the return, not
6538           before code that could, possibly, set errno to a different value.
6539         > patches by Alexander V Lukyanov:
6540         + use default background in update_cost_from_blank()
6541         + disable scroll-hints when hashmap is configured.
6542         + improve integration of hashmap scrolling code, by adding oldhash and
6543           newhash data to SP struct.
6544         + invoke del_curterm from delscreen.
6545         + modify del_curterm to set cur_term to null if it matches the
6546           function's parameter which is deleted.
6547         + modify lib_doupdate to prefer parm_ich to the enter_insert_mode and
6548           exit_insert_mode combination, adjusting InsCharCost to check
6549           enter_insert_mode, exit_insert_mode and insert_padding.  Add
6550           insert_padding in insert mode after each char.  This adds new costs
6551           to the SP struct.
6552
6553 980912
6554         + modify test-driver in lib_mvcur.s to use _nc_setbuffer, for
6555           consistent treatment.
6556         + modify ncurses to restore output to unbuffered on endwin, and resume
6557           buffering in refresh (see lib_set_term.c and NC_BUFFERED macro).
6558         + corrected HTML version numbers (according to the W3C validator, they
6559           never were HTML 2.0-compliant, but are acceptable 3.0).
6560
6561 980905
6562         + modify MKterminfo.sh to generate terminfo.5 with tables sorted by
6563           capability name, as in SVr4.
6564         + modified term.h, termcap.h headers to avoid redundant declarations.
6565         + change 'u_int' type in tset.c to unsigned, making this compile on
6566           Sequent PRX 4.1 (reported by Michael Sterrett <msterret@coat.com>).
6567
6568 980829
6569         + corrections to mailing addresses, and moving the magic line that
6570           causes the man program to invoke tbl to the first line of each
6571           manpage (patch by Rick Ohnemus <rick@ecompcon.com>).
6572         + add Makefile.os2 and supporting scripts to generate dll's on OS/2 EMX
6573           (from J.J.G.Ripoll, with further integration by TD).
6574         + correct a typo in icl6404 terminfo entry.
6575         + add xtermm and xtermc terminfo entries.
6576         > from esr's terminfo version:
6577         + Added Francesco Potorti's tuned Wyse 99 entries.
6578         + dtterm enacs (from Alexander V Lukyanov).
6579         + Add ncsa-ns, ncsa-m-ns and ncsa-m entries from esr version.
6580
6581 980822
6582         + document AT&T acs characters in terminfo.5 manpage.
6583         + use EMX _scrsize() function if terminfo and environment do not
6584           declare the screen size (reported by Ilya Zakharevich
6585           <ilya@math.ohio-state.edu>).
6586         + remove spurious '\' characters from eterm and osborne terminfo
6587           entries (prompted by an old Debian bug report).
6588         + correct reversed malloc/realloc calls in _nc_doalloc (reported by
6589           Hans-Joachim Widmaier <hjwidmai@foxboro.com>).
6590         + correct misplaced parenthesis which caused file-descriptor from
6591           opening termcap to be lost, from 980725 changes (reported by Andreas
6592           Jaeger).
6593
6594 980815
6595         + modify lib_setup.c to eliminate unneeded include of <sys/ioctl.h>
6596           when termios is not used (patch by Todd C Miller).
6597         + add function _nc_doalloc, to ensure that failed realloc calls do not
6598           leak memory (reported by Todd C Miller).
6599         + improved ncsa-telnet terminfo entry.
6600
6601 980809
6602         + correct missing braces around a trace statement in read_entry.c,
6603           from 980808 (reported by Kim DeVaughn <kimdv@best.com> and Liviu
6604           Daia).
6605
6606 980808
6607         + fix missing include <errno.h> in ditto.c (reported by Bernhard
6608           Rosenkraenzer <bero@k5.sucks.eu.org>)
6609         + add NCSA telnet terminfo entries from Francesco Potorti
6610           <F.Potorti@cnuce.cnr.it>, from Debian bug reports.
6611         + make handling of $LINES and $COLUMNS variables more compatible with
6612           Solaris by allowing them to individually override the window size
6613           as obtained via ioctl.
6614
6615 980801
6616         + modify lib_vidattr.c to allow for terminal types (e.g., xterm-color)
6617           which may reset all attributes in the 'op' capability, so that colors
6618           are set before turning on bold and other attributes, but still after
6619           turning attributes off.
6620         + add 'ditto.c' to test directory to illustrate use of newterm for
6621           initializing multiple screens.
6622         + modify _nc_write_entry() to recover from failed attempt to link alias
6623           for a terminfo on a filesystem which does not preserve character case
6624           (reported by Peter L Jordan <PJordan@chla.usc.edu>).
6625
6626 980725
6627         + updated versions of config.guess and config.sub based on automake 1.3
6628         + change name-comparisons in lib_termcap to compare no more than 2
6629           characters (gleaned from Debian distribution of 1.9.9g-8.8, verified
6630           with Solaris curses).
6631         + fix typo in curs_insstr.3x (patch by Todd C Miller)
6632         + use 'access()' to check if ncurses library should be permitted to
6633           open or modify files with fopen/open/link/unlink/remove calls, in
6634           case the calling application is running in setuid mode (request by
6635           Cristian Gafton <gafton@redhat.com>, responding to Duncan Simpson
6636           <dps@io.stargate.co.uk>).
6637         + arm100 terminfo entries from Dave Millen <dmill@globalnet.co.uk>).
6638         + qnxt2 and minitel terminfo entries from esr's version.
6639
6640 980718
6641         + use -R option with ldconfig on FreeBSD because otherwise it resets
6642           the search path to /usr/lib (reported by Dan Nelson).
6643         + add -soname option when building shared libraries on OpenBSD 2.x
6644           (request by QingLong).
6645         + add configure options --with-manpage-format and
6646           --with-manpage-renames (request by QingLong).
6647         + correct conversion of CANCELLED_NUMERIC in write_object(), which was
6648           omitting the high-order byte, producing a 254 in the compiled
6649           terminfo.
6650         + modify return-values of tgetflag, tgetnum, tgetstr, tigetflag,
6651           tigetnum and tigetstr to be compatible with Solaris (gleaned from
6652           Debian distribution of 1.9.9g-8.8).
6653         + modify _nc_syserr_abort to abort only when compiled for debugging,
6654           otherwise simply exit with an error.
6655
6656 980711
6657         + modify Ada95 'gen' program to use appropriate library suffix (e.g.,
6658           "_g" for a debug build).
6659         + update Ada95 'make clean' rule to include generics .ali files
6660         + add a configure test to ensure that if GNAT is found, that it can
6661           compile/link working Ada95 program.
6662         + flush output in beep and flash functions, fixing a problem with
6663           getstr (patch by Alexander V Lukyanov)
6664         + fix egcs 1.0.2 warning for etip.h (patch by Chris Johns).
6665         + correct ifdef/brace nesting in lib_sprintf.c (patch by Bernhard
6666           Rosenkraenzer <bero@Pool.Informatik.RWTH-Aachen.DE>).
6667         + correct typo in wattr_get macro from 980509 fixes (patch by Dan
6668           Nelson).
6669
6670 980704
6671         + merge changes from current XFree86 xterm terminfo descriptions.
6672         + add configure option '--without-ada'.
6673         + add a smart-default for termcap 'ac' to terminfo 'acs_chars' which
6674           corresponds to vt100.
6675         + change translation for termcap 'rs' to terminfo 'rs2', which is
6676           the documented equivalent, rather than 'rs1'.
6677
6678 980627
6679         + slow 'worm' down a little, for very fast machines.
6680         + corrected firstchar/lastchar computation in lib_hline.c
6681         + simplify some expressions with CHANGED_CELL, CHANGED_RANGE and
6682           CHANGED_TO_EOL macros.
6683         + modify init_pair so that if a color-pair is reinitialized, we will
6684           repaint the areas of the screen whose color changes, like SVr4 curses
6685           (reported by Christian Maurer <maurer@inf.fu-berlin.de>).
6686         + modify getsyx/setsyx macros to comply with SVr4 man-page which
6687           says that leaveok() affects their behavior (report by Darryl Miles,
6688           patch by Alexander V Lukyanov).
6689
6690 980620
6691         + review terminfo.5 against Solaris 2.6 curses version, corrected
6692           several minor errors/omissions.
6693         + implement tparm %l format.
6694         + implement tparm printf-style width and precision for %s, %d, %x, %o
6695           as per XSI.
6696         + implement tparm dynamic variables (reported by Xiaodan Tang).
6697
6698 980613
6699         + update man-page for for wattr_set, wattr_get (cf:  980509)
6700         + correct limits in hashtest, which would cause nonprinting characters
6701           to be written to large screens.
6702         + correct configure script, when --without-cxx was specified:  the
6703           wrong variable was used for cf_cv_type_of_bool.  Compilers up to gcc
6704           2.8 tolerated the missing 'int'.
6705         + remove the hardcoded name "gcc" for the GNU Ada compiler.  The
6706           compiler's name might be something like "egcs" (patch by Juergen
6707           Pfeifer).
6708         + correct curs_addch.3x, which implied that echochar could directly
6709           display control characters (patch by Alexander V Lukyanov).
6710         + fix typos in ncurses-intro.html (patch by Sidik Isani
6711           <isani@cfht.hawaii.edu>)
6712
6713 980606
6714         + add configure test for conflicting use of exception in math.h and
6715           other headers.
6716         + minor optimization to 'hash()' function in hashmap.c, reduces its
6717           time by 10%.
6718         + correct form of LD_SHARED_OPTS for HP-UX 10.x (patch by Tim Mooney).
6719         + fix missing quotes for 'print' in MKunctrl.awk script (reported by
6720           Mihai Budiu <mihaib@gs41.sp.cs.cmu.edu>).
6721         > patch by Alexander V Lukyanov:
6722         + correct problem on Solaris (with poll() function) where getch could
6723           hang indefinitely even if timeout(x) was called.  This turned out to
6724           be because milliseconds was not updated before 'goto retry' in
6725           _nc_timed_wait.
6726         + simplified the function _nc_timed_wait and fixed another bug, which
6727           was the assumption of !GOOD_SELECT && HAVE_GETTIMEOFDAY in *timeleft
6728           assignment.
6729         + removed the cycle on EINTR, as it seems to be useless.
6730
6731 980530
6732         + add makefile-rule for test/keynames
6733         + modify run_tic.sh and shlib to ensure that user's .profile does not
6734           override the $PATH used to run tic (patch by Tim Mooney).
6735         + restore LD_SHARED_OPTS to $(LD_SHARED_FLAGS) when linking programs,
6736           needed for HP-UX shared-library path (recommended by Tim Mooney).
6737         + remove special case of HP-UX -L options, use +b options to embed
6738           $(libdir) in the shared libraries (recommended by Tim Mooney).
6739         + add checks for some possible buffer overflows and unchecked
6740           malloc/realloc/calloc/strdup return values (patch by Todd C Miller
6741           <Todd.Miller@courtesan.com>)
6742
6743 980523
6744         + correct maxx/maxy expression for num_columns/num_lines in derwin
6745           (patch by Alexander V Lukyanov).
6746         + add /usr/share/lib/terminfo and /usr/lib/terminfo as compatibilty
6747           fallbacks to _nc_read_entry(), along with --with-terminfo-dirs
6748           configure option (suggested by Mike Hopkirk).
6749         + modify config.guess to recognize Unixware 2.1 and 7 (patch by Mike
6750           Hopkirk <hops@sco.com>).
6751         + suppress definition of CC_SHARED_OPTS in LDFLAGS_SHARED in c++
6752           Makefile.in, since this conflicts when g++ is used with HP-UX
6753           compiler (reported by Tim Mooney).
6754         + parenthesize 'strcpy' calls in c++ binding to workaround redefinition
6755           in some C++ implementations (reported by several people running
6756           egcs with glibc 2.0.93, analysis by Andreas Jaeger.
6757
6758 980516
6759         + modify write_entry.c so that it will not attempt to link aliases
6760           with embedded '/', but give only a warning.
6761         + put -L$(libdir) first when linking programs, except for HP-UX.
6762         + modify comp_scan.c to handle SVr4 terminfo description for att477,
6763           which contains a colon in the description field.
6764         + modify configure script to support SCO osr5.0.5 shared libraries,
6765           from comp.unix.sco.programmer newsgroup item (Mike Hopkirk).
6766         + eliminate extra GoTo call in lib_doupdate.c (patch by Alexander V.
6767           Lukyanov).
6768         + minor adjustments of const/NCURSES_CONST from IRIX compile.
6769         + add updates based on esr's 980509 version of terminfo.src.
6770
6771 980509
6772         + correct macros for wattr_set, wattr_get, separate wattrset macro from
6773           these to preserve behavior that allows attributes to be combined with
6774           color pair numbers.
6775         + add configure option --enable-no-padding, to allow environment
6776           variable $NCURSES_NO_PADDING to eliminate non-mandatory padding,
6777           thereby making terminal emulators (e.g., for vt100) a little more
6778           efficient (request by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
6779         + modify configure script to embed ABI in shared libraries for HP-UX
6780           10.x (detailed request by Tim Mooney).
6781         + add test/example of the 'filter()' function.
6782         + add nxterm and xterm-color terminfo description (request by Cristian
6783           Gafton <gafton@redhat.com>).
6784         + modify rxvt terminfo description to clear alternate screen before
6785           switching back to normal screen, for compatibility with applications
6786           which use xterm (reported by Manoj Kasichainula <manojk@io.com>).
6787         + modify linux terminfo description to reset color palette (reported
6788           by Telford Tendys <telford@eng.uts.edu.au>).
6789         + correction to doupdate, for case where terminal does not support
6790           insert/delete character.  The logic did not check that there was a
6791           difference in alignment of changes to old/new screens before
6792           repainting the whole non-blank portion of the line.  Modified to fall
6793           through into logic that reduces by the portion which does not differ
6794           (reported by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
6795         + minor performance improvement to wnoutrefresh by moving some
6796           comparisons out of inner loop.
6797
6798 980425
6799         + modify configure script to substitute NCURSES_CONST in curses.h
6800         + updated terminfo entries for xterm-xf86-v40, xterm-16color,
6801           xterm-8bit to correspond to XFree86 3.9Ag.
6802         + remove restriction that forces ncurses to use setaf/setab if the
6803           number of colors is greater than 8.  (see 970524 for xterm-16color).
6804         + change order of -L options (so that $(libdir) is searched first) when
6805           linking tic and other programs, to workaround HP's linker.
6806           Otherwise, the -L../lib is embedded when linking against shared
6807           libraries and the installed program does not run (reported by Ralf
6808           Hildebrandt).
6809         + modify configuration of shared libraries on Digital Unix so that
6810           versioning is embedded in the library, rather than implied by
6811           links (patch by Tim Mooney).
6812
6813 980418
6814         + modify etip.h to avoid conflict with math.h on HP-UX 9.03 with gcc
6815           2.8.1 which redefines 'exception' (reported by Ralf Hildebrandt
6816           <R.Hildebrandt@tu-bs.de>).
6817         + correct configure tests in CF_SHARED_OPTS which used $CC value to
6818           check for gcc, rather than autoconf's $GCC value.  This did not
6819           work properly if the full pathname of the compiler were given
6820           (reported by Michael Yount <yount@csf.Colorado.edu>).
6821         + revise check for compiler options to force ANSI mode since repeating
6822           an option such as -Aa causes HP's compiler to fail on its own headers
6823           (reported by Clint Olsen <olsenc@ichips.intel.com>).
6824
6825 980411
6826         + ifdef'd has_key() and mcprint() as extended functions.
6827         + modified several prototypes to correspond with 1997 version of
6828           X/Open Curses (affects ABI since developers have used attr_get).
6829         + remove spurious trailing blanks in glibc addon-scripts (patch by
6830           H.J.Lu).
6831         + insert a few braces at locations where gcc-2.8.x asks to use them to
6832           avoid ambigous else's, use -fpic rather than -fPIC for Linux (patch
6833           by Juergen Pfeifer).
6834
6835 980404
6836         + split SHLIB_LIST into SHLIB_DIRS/SHLIB_LIST to keep -L options
6837           before -l to accommodate Solaris' linker (reported by Larry Virden).
6838
6839 980328
6840         + modify lib_color.c to eliminate dependency on orig_colors and
6841           orig_pair, since SVr4 curses does not require these either, but
6842           uses them when they are available.
6843         + add detailed usage-message to infocmp.
6844         + correct a typo in att6386 entry (a "%?" which was "?").
6845         + add -f option to infocmp and tic, which formats the terminfo
6846           if/then/else/endif so that they are readable (with newlines and
6847           tabs).
6848         + fixes for glibc addon scripts (patch by H.J.Lu).
6849
6850 980321
6851         + revise configure macro CF_SPEED_TYPE so that termcap.h has speed_t
6852           declared (from Adam J Richter <adam@yggdrasil.com>)
6853         + remove spurious curs_set() call from leaveok() (J T Conklin).
6854         + corrected handling leaveok() in doupdate() (patch by Alexander V.
6855           Lukyanov).
6856         + improved version of wredrawln (patch by Alexander V. Lukyanov).
6857         + correct c++/Makefile.in so install target do not have embedded ../lib
6858           to confuse it (patch by Thomas Graf <graf@essi.fr>).
6859         + add warning to preinstall rule which checks if the installer would
6860           overwrite a curses.h or termcap.h that is not derived from ncurses.
6861           (The recommended configuration for developers who need both is to
6862           use --disable-overwrite).
6863         + modify preinstall rule in top-level Makefile to avoid implicit
6864           use of 'sh', to accommodate Ultrix 4.4 (reported by Joao Palhoto
6865           Matos <jmatos@math.ist.utl.pt>, patch by Thomas Esser
6866           <te@informatik.uni-hannover.de>)
6867         + refine ifdef's for TRACE so that libncurses has fewer dependencies
6868           on libtinfo when TRACE is disabled.
6869         + modify configure script so that if the --with-termlib option is used
6870           to generate a separate terminfo library, we chain it to the ncurses
6871           library with a "-l" option (reported by Darryl Miles and Ian T.
6872           Zimmerman).
6873
6874 980314
6875         + correct limits and window in wredrawln function (reported/analysis by
6876           Alexander V. Lukyanov).
6877         + correct sed expression in configure script for --with-fallback
6878           option (patch by Jesse Thilo).
6879         + correct some places in configure script where $enableval was used
6880           rather than $withval (patch by Darryl Miles <dlm@g7led.demon.co.uk>).
6881         + modify some man-pages so no '.' or '..' falls between TH and SH
6882           macros, to accommodate man_db program (reported by Ian T. Zimmerman
6883           <itz@rahul.net>).
6884         + terminfo.src 10.2.1 downloaded from ESR's webpage (ESR).
6885         > several changes by Juergen Pfeifer:
6886         + add copyright notices (and rcs id's) on remaining man-pages.
6887         + corrected prototypes for slk_* functions, using chtype rather than
6888           attr_t.
6889         + implemented the wcolor_set() and slk_color() functions
6890         + the slk_attr_{set,off,on} functions need an additional void*
6891           parameter according to XSI.
6892         + fix the C++ and Ada95 binding as well as the man pages to
6893           reflect above enhancements.
6894
6895 980307
6896         + use 'stat()' rather than 'access()' in toe.c to check for the
6897           existence of $HOME/.terminfo, since it may be a file.
6898         + suppress configure CF_CXX_LIBRARY check if we are not using g++
6899           2.7.x, since this is not needed with g++ 2.8 or egcs (patch by
6900           Juergen Pfeifer).
6901         + turn on hashmap scrolling code by default, intend to remedy defects
6902           by 4.3 release.
6903         + minor corrections to terminfo.src changelog.
6904
6905 980302  4.2 release for upload to prep.ai.mit.edu
6906         + correct Florian's email address in ncurses-intro.html
6907         + terminfo.src 10.2.0 (ESR).
6908
6909 980228  pre-release
6910         + add linux-koi8r replace linux-koi8, which is not KOI8 (patch by
6911           QingLong <qinglong@Bolizm.ihep.su>).
6912         + minor documentation fixes (patch by Juergen Pfeifer).
6913         + add setlocale() call to ncurses.c (reported by Claes G. Lindblad
6914           <claesg@algonet.se>).
6915         + correct sign-extension in lib_insstr.c (reported by Sotiris
6916           Vassilopoulos <svas@leon.nrcps.ariadne-t.gr>)
6917
6918 980221  pre-release
6919         + regenerated some documentation overlooked in 980214 patch
6920           (ncurses-intro.doc, curs_outopts.3x.html)
6921         + minor ifdef change to C++ binding to work with gcc 2.8.0 (patch by
6922           Juergen Pfeifer).
6923         + change maintainer's mailing address to florian@gnu.org, change
6924           tentative mailing list address to bug-ncurses-request@gnu.org (patch
6925           by Florian La Roche).
6926         + add definition of $(REL_VERSION) to c++/Makefile.in (reported by Gran
6927           Hasse <gh@raditex.se>).
6928         + restore version numbers to Ada95 binding, accidentally deleted by
6929           copyright patch (patch by Juergen Pfeifer).
6930
6931 980214  pre-release
6932         + remove ncurses.lsm from MANIFEST so that it won't be used in FSF
6933           distributions, though it is retained in development.
6934         + correct scaling of milliseconds to nanoseconds in lib_napms.c (patch
6935           by Jeremy Buhler).
6936         + update mailing-list information (bug-ncurses@gnu.org).
6937         + update announcement for upcoming 4.2 release.
6938         + modify -lm test to check for 'sin()' rather than 'floor()'
6939         + remove spurious commas from terminfo.src descriptions.
6940         + change copyright notices to Free Software Foundation
6941
6942 980207
6943         + minor fixes for autoconf macros CF_ERRNO, CF_HELP_MESSAGE and
6944           CF_SIZECHANGE
6945         + modify Makefile.glibc so that $(objpfx) is defined (H.J.Lu).
6946         + ifdef-out true-return from _nc_mouse_inline() which depends on
6947           merge of QNX patch (pending 4.2 release).
6948         > patch to split off seldom-used modules in ncurses (J T Conklin):
6949           This reduces size by up to 2.6kb.
6950         + move functionality of _nc_usleep into napms, add configuration case
6951           for nanosleep().
6952         + moved wchgat() from lib_addch.c to lib_chgat.c
6953         + moved clearok(), immedok(), leaveok(), and scrollok() from
6954           lib_options.c to lib_clearok.c, lib_immedok.c, lib_leaveok.c and
6955           lib_scrollok.c.
6956         + moved napms() from lib_kernel.c to lib_napms.c
6957         + moved echo() and noecho() from lib_raw.c to lib_echo.c
6958         + moved nl() and nonl() from lib_raw.c to lib_nl.c
6959
6960 980131
6961         + corrected conversion in tclock.c (cf: 971018).
6962         + updates to Makefile.glibc and associated Linux configure script
6963           (patch by H.J.Lu).
6964         + workaround a quoting problem on SunOS with tar-copy.sh
6965         + correct init_pair() calls in worm.c to work when use_default_colors()
6966           is not available.
6967         + include <sys/types.h> in CF_SYS_TIME_SELECT to work with FreeBSD
6968           2.1.5
6969         + add ncv capability to FreeBSD console (cons25w), making reverse
6970           work with color.
6971         + correct sense of configure-test for sys/time.h inclusion with
6972           sys/select.h
6973         + fixes for Ada95/ada_include/Makefile.in to work with --srcdir option.
6974         + remove unused/obsolete test-program rules from progs/Makefile.in
6975           (the rules in ncurses/Makefile.in work).
6976         + remove shared-library loader flags from test/Makefile.in, etc.
6977         + simplify test/configure.in using new version of autoconf to create
6978           test/ncurses_cfg.h
6979         + suppress suffix rules in test/Makefile.in, provide explicit
6980           dependency to work with --srcdir option and less capable 'make'
6981           programs.
6982         > adapted from patch for QNX by Xiaodan Tang:
6983         + initialize %P and %g variables set/used in tparm, and also ensure
6984           that empty strings don't return a null result from tparam_internal
6985         + add QNX-specific prototype for vsscanf()
6986         + move initialization of SP->_keytry from init_keytry() to newterm() to
6987           avoid resetting it via a keyok() call by mouse_activate().
6988         + reorganized some functions in lib_mouse() to use case-statements.
6989         + remove sgr string from qnx terminfo entry since it is reported to
6990           turn off attributes inconsistently.
6991
6992 980124
6993         + add f/F/b/B commands to ncurses 'b' test to toggle colors, providing
6994           test for no_color_video.
6995         + adjusted emx.src to use no_color_video, now works with ncurses 'b'
6996           and 'k' tests.
6997         + implement no_color_video attribute, and as a special case, reverse
6998           colors when the reverse attribute cannot be combined with color.
6999         + check for empty string in $TERM variable (reported by Brett Michaels
7000           <brett@xylan.com>).
7001         > from reports by Fred Fish:
7002         + add configure-test for isascii
7003         + add configure-test for -lm library.
7004         + modify CF_BOOL_SIZE to check if C++ bool types are unsigned.
7005         > patches by J.J.G.Ripoll
7006         + add configure/makefile variables to support .exe extension on
7007           OS/2 EMX (requires additional autoconf patches).
7008         + explicitly initialize variables in lib_data.c to appease OS/2 linker
7009         > patches by Fred Fish <fnf@ninemoons.com>
7010         + misc/Makefile.in (install.data):  Avoid trying to install the CVS
7011           directory.
7012         + aclocal.m4 (install.includes):  Remove files in the include directory
7013           where we are going to install new ones, not the original source
7014           files.
7015         + misc/terminfo.src:  Add entry for "beterm", derived from termcap
7016           distributed with BeOS PR2 using captoinfo.
7017         + aclocal.m4: Wrap $cf_cv_type_of_bool with quotes (contains space)
7018         + aclocal.m4: Assume bool types are unsigned.
7019         + progs/infocmp.c: workaround mwcc 32k function data limit
7020
7021 980117
7022         + correct initialization of color-pair (cf: 970524) in xmas.c, which
7023           was using only one color-pair for all colors (reported by
7024           J.J.G.Ripoll).
7025         + add multithread options for objects build on EMX, for compatibility
7026           with XFree86.
7027         + split up an expression in MKlib_gen.sh to work around a problem on
7028           OS/2 EMX, with 'ash' (patch by J.J.G.Ripoll).
7029         + change terminfo entries xterm (xterm-xf86-v40), xterm-8bit rs1 to use
7030           hard reset.
7031         + rename terminfo entry xterm-xf86-v39t to xterm-xf86-v40
7032         + remove bold/underline from sun console entries since they're not
7033           implemented.
7034         + correct _tracef calls in _tracedump(), which did not separate format
7035           from parameters.
7036         + correct getopt string for tic "-o" option, and add it to man-page
7037           synopsis (reported by Darren Hiebert <darren@hmi.com>).
7038         + correct typo in panel/Makefile.in, reversed if-statement in scrolling
7039           optimization (Alexander V.  Lukyanov).
7040         + test for 'remove()', use 'unlink() if not found (patch by Philippe De
7041           Muyter <phdm@macqel.be>).
7042         > patches by Juergen Pfeifer:
7043         + Improve a feature of the forms driver.  For invisible fields
7044           (O_VISIBLE off) only the contents but not the attributes are cleared.
7045           We now clear both.  (Reported by Javier Kohan
7046           <jkohan@adan.fceia.unr.edu.ar>)
7047         + The man page form_field_opts.3x makes now clear, that invisible
7048           fields are also always inactive.
7049         + adjust ifdef's to compile the C++ binding with the just released
7050           gcc-2.8.0 c++ and the corresponding new C++ libraries.
7051
7052 980110
7053         + correct "?" command in ncurses.c; it was performing non-screen writes
7054           while the program was in screen mode.  (It "worked" in 1.9.9e because
7055           that version sets OPOST and OCRNL incorrectly).
7056         + return error from functions in lib_kernel, lib_raw and lib_ti if
7057           cur_term is null, or if underlying I/O fails.
7058         + amend change to tputs() so that it does not return an error if
7059           cur_term is null, since some applications depend on being able to use
7060           tputs without initializing the terminal (reported by Christian J.
7061           Robinson <infynity@cyberhighway.net>).
7062
7063 980103
7064         + add a copy of emx.src from J.J.G.Ripoll's OS/2 EMX version of ncurses
7065           1.9.9e, together with fixes/additions for the "ansi" terminal type.
7066         + add tic check for save/restore cursor if change_scroll_region is
7067           defined (reference: O'Reilly book).
7068         + modify read_termcap.c to handle EMX-style pathnames (reported by
7069           J.J.G.Ripoll).
7070         + modify lib_raw.c to use EMX's setmode (patch from J.J.G.Ripoll).
7071           Ripoll says EMX's curses does this.
7072         + modify _nc_tic_expand() to generate \0 rather than \200.
7073         + move/revise 'expand()' from dump_entry.c to ncurses library as
7074           _nc_tic_expand(), for use by tack.
7075         + decode \a as \007 for terminfo, as per XSI.
7076         + correct translation of terminfo "^@", to \200, like \0.
7077         + modify next_char() to treat <cr><lf> the same as <newline>, for
7078           cross-platform compatibility.
7079         + use new version of autoconf (971230) to work around limited
7080           environment on CLIX, due to the way autoconf builds --help message.
7081         > patch by Juergen Pfeifer:
7082         + check that the Ada95 binding runs against the correct version of
7083           ncurses.
7084         + insert constants about the library version into the main spec-file of
7085           the Ada95 binding.
7086
7087 971227
7088         + modify open/fopen calls to use binary mode, needed for EMX.
7089         + modify configure script to work with autoconf 2.10 mods for OS/2
7090           EMX (from J.J.G.Ripoll).
7091         + generated ncurses_cfg.h with patch (971222) to autoconf 2.12 which
7092           bypasses limited sed buffer length.
7093         > several changes from Juan Jose Garcia Ripoll <worm@arrakis.es>
7094           (J.J.G.Ripoll) to support OS/2 EMX:
7095         + add a _scrolling flag to SP, to set when we encounter a terminal
7096           that simply cannot scroll.
7097         + corrected logic in _nc_add_to_try(), by ensuring that strings with
7098           embedded \200 characters are matched.
7099         + don't assume the host has 'link()' function, for linking terminfo
7100           entries.
7101
7102 971220
7103         + if there's no ioctl's to support sigwinch handler, disable it.
7104         + add configure option --disable-ext-funcs to remove the extended
7105           functions from the build.
7106         + add configure option --with-termlib to generate the terminfo
7107           functions as a separate library.
7108         + add 'sources' rule to facilitate cross-compiling.
7109         + review/fix order of mostlyclean/clean/distclean rules.
7110         + modify install-rule for headers to first remove old header, in
7111           case there was a symbolic link that confuses the install script.
7112         + corrected substitution for NCURSES_CONST in term.h (cf: 971108)
7113         + add null pointer checks in wnoutrefresh(), overlap() (patch by
7114           Xiaodan Tang <xtang@qnx.com>)
7115         + correct tputs(), which could dereference a null cur_term if invoked
7116           before terminal is initialized (patch by Christopher Seawood
7117           <cls@seawood.org>)
7118         > patch by Juergen Pfeifer:
7119         + makes better use of "pragma Inline" in the Ada95 binding
7120         + resynchronizes the generated html manpages
7121
7122 971213
7123         + additional fixes for man-pages section-references
7124         + add (for debugging) a check for ich/ich1 conflict with smir/rmir
7125           to tic, etc.
7126         + remove hpa/vpa from rxvt terminal description because they are not
7127           implemented correctly, added sgr0.
7128         + change ncurses 's' to use raw mode, so ^Q works (reported by Rudolf
7129           Leitgeb <leitgeb@leland.stanford.edu>)
7130
7131 971206
7132         + modify protection when installing libraries to (normally) not
7133           executable.  HP-UX shared libraries are an exception.
7134         + add configure check for 'tack'.
7135         + implement script for renaming section-references in man-page install,
7136           for Debian configuration.
7137         + add validity-check for SP in trace code in baudrate() (reported by
7138           Daniel Weaver).
7139         > patch by Alexander V. Lukyanov (fixes to match sol25 curses)
7140         + modify 'overlay()' so that copy applies target window background to
7141           characters.
7142         + correct 'mvwin()' so that it does not clear the previous locations.
7143         + correct lib_acs.c so that 8-bit character is not sign expanded in
7144           case of wide characters in chtype.
7145         + correct control-char test in lib_addch.c for use with wide chars
7146         + use attribute in the chtype when adding a control character in
7147           lib_addch.c control char was added with current attribute
7148
7149 971129
7150         + save/restore errno in _tracef() function
7151         + change treatment of initialize_color to use a range of 0..1000
7152           (recommended by Daniel Weaver).
7153         + set umask in mkinstalldirs, fixing problems reported by users who
7154           have set root's umask to 077.
7155         + correct bug in tic that caused capabilities to be reprinted at the
7156           end of output when they had embedded comments.
7157         + rewrote wredrawln to correspond to XSI, and split-out since it is
7158           not often used (from report by Alexander V. Lukyanov, 970825)
7159         + rewrote Dan Nelson's change to make it portable, as well as to
7160           correct logic for handling backslashes.
7161         + add code to _nc_tgetent() to make it work more like a real tgetent().
7162           It removes all empty fields, and removes all but the first in a group
7163           of duplicate caps.  The code was pulled from the BSD libtermcap code
7164           in termcap.c (patch by Dan Nelson <dnelson@emsphone.com>
7165         + don't include --enable-widec in the --with-develop configure option,
7166           since it is not binary-compatible with 4.1 (noted by Alexander V.
7167           Lukyanov)
7168         > patch by Juergen Pfeifer:
7169         + further improvements of the usage of elaboration pragmas in the Ada95
7170           binding
7171         + enhanced Ada95 sample to use the user_data mechanism for panels.
7172         + a fix for the configuration script to make gnat-3.10 the required
7173           version.
7174         + resync of the html version of the manpages
7175
7176 971122
7177         > fixes/updates for terminfo.src:
7178         + add vt220-js, pilot, rbcomm, datapoint entries from esr's 27-jun-97
7179           version.
7180         + add hds200 description (Walter Skorski)
7181         + add EMX 0.9b descriptions
7182         + correct rmso/smso capabilities in wy30-mc and wy50-mc (Daniel Weaver)
7183         + rename xhpterm back to hpterm.
7184         > patch by Juergen Pfeifer:
7185         + Improves the usage of elaboration pragmas for the Ada95 binding.
7186         + Adds a translation of the test/rain.c into Ada95 to the samples.
7187           This has been contributed to the project by Laurent Pautet
7188           (pautet@gnat.com)
7189
7190 971115
7191         + increase MAX_NAME_SIZE to 512 to handle extremely long alias list
7192           in HP-UX terminfo.
7193         + correction & simplification of delay computation in tputs, based on
7194           comments from Daniel Weaver.
7195         + replace test for SCO with more precise header tests.
7196         + add configure test for unsigned literals, use in NCURSES_BITS macro.
7197         + comment-out the -PIC, etc., flags from c++, progs and test makefiles
7198           since they probably are not needed, and are less efficient (noted by
7199           Juergen Fluk)
7200         + add -L$(libdir) to loader options, after -L../lib so that loaders
7201           that record this information will tend to do the right thing if
7202           the programs are moved around after installing them (suggested by
7203           Juergen Fluk).
7204         + add -R option to loader options for programs for Solaris if the
7205           --enable-rpath option is specified for the libraries.
7206
7207 971112
7208         + correct installed filename for shared libraries on *BSD (reported by
7209           Juergen Fluk).
7210
7211 971108
7212         + cleanup logic for deciding when tputs() should call delay_output(),
7213           based on comments from Daniel Weaver.
7214         + modified tputs() to avoid use of float.
7215         + correct use of trailpad in tputs(), which used the wrong variable
7216           in call to delay_output().
7217         + correct inverted expression for null-count in delay_output()
7218           (analysis by Daniel Weaver).
7219         + apply --enable-rpath option to Solaris (requested by Larry Virden).
7220         + correct substitution of EXTRA_CFLAGS for gcc 2.6.3
7221         + correct check for error-return by _nc_tgetent(), which returns 0
7222           for success.
7223         + add configure test for BSD 4.4 cgetent() function, modify
7224           read_termcap.c to use the host's version of that if found, using the
7225           terminal database on FreeBSD (reported by Peter Wemm).
7226         + add u8, u9 strings to sun-il description for Daniel Weaver.
7227         + use NCURSES_CONST in panel's user-pointer.
7228         + modify edit_cfg.sh and MKterm.h.awk.in to substitute NCURSES_CONST
7229           so that will work on NeXT.
7230         + use _nc_set_screen() rather than assignments to SP to fix port to
7231           NeXT (reported by Francisco A. Tomei Torres).
7232
7233 971101
7234         + force mandatory padding in bell and flash_screen, as specified in
7235           XSI.
7236         + don't allow padding_baud_rate to override mandatory delays (reported
7237           by Daniel Weaver).
7238         + modify delay_output() to use _nc_timed_wait() if no baudrate has been
7239           defined, or if the cur_term pointer is not initialized.  XSI treats
7240           this as unspecified.  (requested by Daniel Weaver).
7241         + change getcap-cache ifdef's to eliminate unnecessary chdir/mkdir
7242           when that feature is not configured.
7243         + remove _nc_err_abort() calls when write_entry.c finds a directory but
7244           cannot write to it, e.g., when translating part/all of /etc/termcap
7245           (reported by Andreas Jaeger <aj@arthur.rhein-neckar.de>).
7246           (this dates back to 951102, in 1.9.7a).
7247         + minor ifdef fixes to compile with atac and glibc 2.0.5c
7248         + add check for -lgen when configuring regexpr.h
7249         + modify Solaris shared-library option "-d y" to "-dy" to workaround
7250           incompatibility of gcc 2.7.2 vs vendor's tools.
7251
7252 971026
7253         + correct ifdef's for struct winsize vs struct ttysize in lib_setup.c
7254           to compile on SCO.
7255         + remove dangling backslash in panel/Makefile.in
7256         + modify MKkeyname.awk to work with SCO's nawk, which dumps core in the
7257           length() function.
7258         + correct length of allocation in _nc_add_to_try(), to allow for
7259           trailing null.
7260         + correct logic in _nc_remove_key(), which was discarding too many
7261           nodes (patch by Alexander V. Lukyanov)
7262
7263 971025
7264         + add definition for $(REL_VERSION) to test/Makefile.in, so *BSD
7265           shared libraries link properly (see 970524).
7266         + modify Linux shared-library generation to include library
7267           dependencies (e.g., -lncurses and -lgpm) in the forms, menu and
7268           panel libraries (suggested by Juergen Pfeifer).
7269         + modify configure script to use config.guess and config.sub rather
7270           than uname, which is unreliable on some systems.
7271         + updated Makefile.glibc, test-built with glibc 2.0.5c
7272         + modify keyname() to return values consistent with SVr4 curses (patch
7273           by Juergen Fluk).
7274         > changes requested by Daniel Weaver:
7275         + modify delay_output() so that it uses the same output function as
7276           tputs() if called from that function.
7277         + move _baudrate from SCREEN to TERMINAL so that low-level use of
7278           tputs works when SP is not set.
7279         > patch by Juergen Pfeifer:
7280         + factor lib_menu and lib_form into smaller modules
7281         + clean up the interface between panel and SCREEN
7282         + minor changes to the Ada95 mouse support implemenation
7283         + minor bugfix in C++ binding to ripoff windows
7284         + fix a few Ada95 html documentation pages
7285
7286 971018
7287         + split-out lib_ungetch.c, make runtime link to resizeterm() to
7288           decouple those modules from lib_restart.c
7289         + add xterm-xf86-v39t description to terminfo.src
7290         + reset SP->_endwin in lib_tstp.c cleanup() function after calling
7291           endwin() to avoid unnecessary repainting if the application has
7292           established an atexit function, etc.  Encountered this problem in
7293           the c++ demo, whose destructors repaint the screen.
7294         + combine _nc_get_screensize() and resizeterm() calls as new function
7295           _nc_update_screensize().
7296         + minor fixes to allow compile with g++ (suggested by Nelson H. F.
7297           Beebe).
7298         + implement install-rules for Ada95 makefiles.
7299         + use screen_lines or MAXLINES as needed where LINES was coded,
7300           as well as screen_columns for COLS, in the ncurses library.
7301         > patch by Alexander V. Lukyanov:
7302         + modify logic for ripped-off lines to handle several SCREENs.
7303         > patch by Juergen Pfeifer:
7304         + factors lib_slk.c into some smaller modules
7305         + factors panel.c into some smaller modules
7306         + puts the static information about the current panel stack into the
7307           SCREEN structure to allow different panel stacks on different
7308           screens.
7309         + preliminary fix for an error adjusting LINES to account for
7310           ripped-off lines.
7311
7312 971011
7313         + move _nc_max_click_interval and other mouse interface items to SCREEN
7314           struct so that they are associated with a single terminal, and also
7315           save memory when the application does not need a mouse (roughly 3k vs
7316           0.5k on Linux).
7317         + modify mouseinterval() so that a negative parameter queries the
7318           click-interval without modifying it.
7319         + modify ncurses 'i' test to work with ncurses' apparent extension from
7320           SVr4, i.e., allows nocbreak+noecho (analysis by Alexander V.
7321           Lukyanov).
7322         + add configure options --with-ada-includes and --with-ada-objects,
7323           to drive Ada95 binding install (not yet implemented).
7324         + install C++ binding as -lncurses++ and associated headers with the
7325           other ncurses headers.
7326         + fix header uninstall if configure --srcdir is used.
7327         > minor interface changes to support 'tack' program -TD
7328           (request by Daniel Weaver <danw@znyx.com>).
7329         + export functions _nc_trans_string() and _nc_msec_cost().
7330         + add variable _nc_nulls_sent, to record the number of padding
7331           characters output in delay_output().
7332         + move tests for generic_type and hard_copy terminals in setupterm()
7333           to the end of that function so that the library will still be
7334           initialized, though not generally useful for curses programs.
7335         > patches by Alexander V. Lukyanov:
7336         + modify ClrBottom() to avoid using clr_eos if there is only one line
7337           to erase.
7338         + typo in configure --help.
7339         > patch by J T Conklin (with minor resync against Juergen's changes)
7340         + split-out lib_flash.c from lib_beep.c
7341         + split-out lib_hline.c and lib_vline.c from lib_box.c
7342         + split-out lib_wattron.c, lib_wattroff.c from lib_addch.c
7343
7344 971005
7345         > patch by Juergen Pfeifer:
7346         + correct source/target of c++/edit_cfg.sh
7347
7348 971004
7349         + add color, mouse support to kterm terminfo entry.
7350         + modify lib_mouse.c to recognize rxvt, kterm, color_xterm also as
7351           providing "xterm"-style mouse.
7352         + updated rxvt's terminfo description to correspond to 2.21b, with
7353           fixes for the acsc (the box1 capability is incorrect, ech1 does not
7354           work).
7355         + fix logic in parse_entry.c that discarded acsc when 'synthesizing'
7356           an entry from equivalents in XENIX or AIX.  This lets ncurses handle
7357           the distribution copy of rxvt's terminfo.
7358         + modify acsc capability for linux and linux-koi8 terminfo descriptions
7359           (from Pavel Roskin <pavel@absolute.spb.su>).
7360         + corrected definition in curses.h for ACS_LANTERN, which was 'I'
7361           rather than 'i' (see 970802).
7362         + updated terminfo.src with reformatted acsc entries, and repaired the
7363           trashed entries with spurious '\' characters that this exposed.
7364         + add logic to dump_entry.c to reformat acsc entries into canonical
7365           form (sorted, unique mapping).
7366         + add configure script to generate c++/etip.h
7367         + add configure --with-develop option, to enable by default most of the
7368           experimental options (requested by Alexander V. Lukyanov).
7369         + rename 'deinstall' to 'uninstall', following GNU convention
7370           (suggested by Alexander V. Lukyanov).
7371         > patches by Alexander V. Lukyanov:
7372         + modify tactics 2 and 5 in onscreen_mvcur(), to allow them on the last
7373           line of the screen, since carriage return will not cause a newline.
7374         + remove clause from PutCharLR() that would try to use
7375           eat_newline_glitch since that apparently does not work on some
7376           terminals (e.g., M$ telnet).
7377         + correct a limit check in scroll_csr_backward()
7378         > patches by Juergen Pfeifer:
7379         + adds dummy implementations of methods above() and below() to the
7380           NCursesPanel class.
7381         + fixes missing returncode in NCursesWindow::ripoffline()
7382         + fixes missing returncode in TestApplication::run() in demo.cc
7383         + We should at least give a comment in etip.h why it is currently a
7384           problem to install the C++ binding somewhere
7385         + makes the WINDOW* argument of wenclose() a const.
7386         + modifies several of the routines in lib_adabind.c to use a const
7387           WINDOW* argument.
7388
7389 970927
7390         + add 'deinstall' rules.
7391         + use explicit assignments in configure --without-progs option to
7392           work around autoconf bug which doesn't always set $withval.
7393         + check for ldconfig, don't try to run it if not found.
7394         + implement simple/unoptimized case in lib_doupdate.c to handle
7395           display with magic cookie glitch, tested with ncurses.c program.
7396         + correct missing _tracef in getmouse(), to balance the returnCode
7397           macro.
7398         + simplify show_attr() in ncurses.c using termattrs().
7399         > patches by Juergen Pfeifer:
7400         + provides missing inlines for mvw[hv]line in cursesw.h of the C++
7401           binding
7402         + fixes a typo in a comment of frm_driver.c
7403         + Enhances Ada95 Makefiles to fulfill the requirement of GNAT-3.10 that
7404           generics should be compiled.  Proper fixes to the configuration
7405           scripts are also provided.
7406
7407 970920
7408         + several modifications to the configure script (requested by Ward
7409           Horner):
7410           + add configure options --without-progs, to suppress the build of the
7411             utility programs, e.g., for cross-compiling.
7412           + add $(HOSTCCFLAGS) and $(HOSTLDFLAGS) symbols to ncurses
7413             Makefile.in, to simplify setup for cross compiling.
7414           + add logic in configure script to recognize "--target=vxworks", and
7415             generate load/install actions for VxWorks objects.
7416         + move typedef for sigaction_t into SigAction.h to work around problem
7417           generating lint library.
7418         + modify fty_regex.c to reflect renaming of ifdef's for regular
7419           expressions.
7420         + simplify ifdef in lib_setup.c for TIOCGWINSZ since that symbol may
7421           reside in <sys/ioctl.h>.
7422         + merge testcurs.c with version from PDCurses 2.3, clarifying some of
7423           the more obscure tests, which rely upon color.
7424         + use macros getbegyx() and getmaxyx() in newdemo.c and testcurs.c
7425         + modify ncurses.c to use getbegyx() and getmaxyx() macros to cover up
7426           implementation difference wrt SVr4 curses, allow 's' test to work.
7427         + add missing endwin() to testscanw.c program (reported by Fausto
7428           Saporito <fausap@itb.it>).
7429         + fixes/updates for Makefile.glibc and related files under sysdeps
7430           (patch by H.J.Lu).
7431         > patches by Juergen Pfeifer:
7432         + add checks for null pointers, especially WINDOW's throughout the
7433           ncurses library.
7434         + solve a problem with wrong calculation of panel overlapping (reported
7435           by Ward Horner):
7436           + make sure that a panel's window isn't a pad.
7437           + do more error checking in module lib_touch.c
7438         + missing files for Ada95 binding from the last patch
7439         + synch. of generated html pages (RCS-Id's were wrong in html files)
7440         + support for Key_Resize in Ada binding
7441         + changed documentation style in ./c++/cursesm.h
7442         > patches by Alexander V. Lukyanov:
7443         + undo attempt to do recursive inlining for PutChar(), noting that it
7444           did not improve timing measurably, but inflated the size of
7445           lib_doupdate.o
7446
7447 970913
7448         + modify rain.c to use color.
7449         + correct scroll_csr_backward() to match scroll_csr_forward().
7450         + minor adjustment to llib-lncurses, to work with Solaris 2.5.1
7451         + minor fixes to sysdeps/unix/sysv/linux/configure to reflect renaming
7452           of configure cache variables in 970906.
7453         + correct logic involving changes to O_VISIBLE option in
7454           Synchronize_Options function in frm_driver.c (Tony Hoffmann
7455           <Tony.Hoffmann@hia.nrc.ca>)
7456         + add $(HOSTCC) symbol to ncurses Makefile.in, to simplify setup for
7457           cross compiling (suggested by Chris Johns).
7458         + modify ifdef in lib_setup.c to only include <sys/ioctl.h> if we can
7459           use it to support screen-size calculation (reported by Chris Johns).
7460         + #undef unctrl to avoid symbol conflict in port to RTEMS (reported by
7461           Chris Johns <cjohns@plessey.com.au>)
7462         > patches by Juergen Pfeifer:
7463         + simplified, made minor corrections to Ada95 binding to form
7464           fieldtype.
7465         + The C++ binding has been enhanced:
7466           + Improve NCursesWindow class:  added additional methods to cover
7467             more ncurses functionality.  Make refresh() and noutrefresh()
7468             virtual members to allow different implementation in the
7469             NCursesPanel class.
7470           + CAUTION:  changed order of parameters in vline() and hline() of
7471             NCursesWindow class.
7472           + Make refresh() in NCursesPanel non-static, it is now a
7473             reimplementation of refresh() in the base class.  Added
7474             noutrefresh() to NCursesPanel.
7475           + Added NCursesForm and related classes to support libform
7476             functionality.
7477           + Moved most of configuration related stuff from cursesw.h to etip.h
7478           + Added NCursesApplication class to support easy configuration of
7479             menu and forms related attributes as well as ripped of title lines
7480             and Soft-Label-Keys for an application.
7481           + Support of Auto-Cleanup for a menu's fieldlist.
7482           + Change of return type for current_item() and operator[] for menus.
7483           + Enhanced demo.
7484         + Fixed a bug in form/fld_def.c:  take into account that copyarg and
7485           freearg for a fieldtype may be NULL, makearg must not be NULL
7486         + Fixed a bug in form/fld_type.c:  in set_fieldtype_arg() makearg must
7487           not be NULL, copyarg and freearg may be NULL.
7488         + Fixed a bug in form/frm_def.c:  Allow Disconnect_Fields() if it is
7489           already disconnected.
7490         + Enhance form/frm_driver.c:  Allow growth of dynamic fields also on
7491           navigation requests.
7492         + Fixed a bug in form/fty_enum.c:  wrong position of postincrement in
7493           case-insensitiva comparision routine.
7494         + Enhanced form/lib_adabind.c with function _nc_get_field() to get a
7495           forms field by index.
7496         + Enhanced menu/m_adabind.c with function _nc_get_item() to get a menus
7497           item by index.
7498         + Fixed in curses.h.in:  make chtype argument for pechochar() constant.
7499           Mark wbkgdset() as implemented, remove wbkgdset macro, because it was
7500           broken (didn't handle colors correctly).
7501         + Enhanced lib_mouse.c: added _nc_has_mouse() function
7502         + Added _nc_has_mouse() prototype to curses.priv.h
7503         + Modified lib_bkgd.c:  hopefully correct implementation of wbkgdset();
7504           streamlined implementation of wbkgd()
7505         + Modified lib_mvwin.c:  Disable move of a pad.  Implement (costly)
7506           move of subwindows.  Fixed update behavior of movements of regular
7507           windows.
7508         + Fixed lib_pad.c:  make chtype argument of pechochar() const.
7509         + Fixed lib_window.c:  dupwin() is not(!) in every bit a really clone
7510           of the original.  Subwindows become regular windows by doing a
7511           dupwin().
7512         + Improved manpage form_fieldtype.3x
7513         > patches by Alexander V. Lukyanov:
7514         + simplify the PutChar() handling of exit_am_mode, because we already
7515           know that auto_right_margin is true.
7516         + add a check in PutChar() for ability to insert to the case of
7517           shifting character to LR corner.
7518         + in terminal initialization by _nc_screen_resume(), make sure that
7519           terminal right margin mode is known.
7520         + move logic that invokes touchline(), or does the equivalent, into
7521           _nc_scroll_window().
7522         + modify scrolling logic use of insert/delete line capability, assuming
7523           that they affect the screen contents only within the current
7524           scrolling region.
7525         + modify rain.c to demonstrate SIGWINCH handler.
7526         + remove logic from getch() that would return an ERR if the application
7527           called getch() when the cursor was at the lower-right corner of the
7528           physical screen, and the terminal does not have insert-character
7529           ability.
7530         + change view.c so that it breaks out of getch() loop if a KEY_RESIZE
7531           is read, and modify logic in getch() so this fix will yield the
7532           desired behavior, i.e., the screen is repainted automatically when
7533           the terminal window is resized.
7534
7535 970906
7536         + add configure option --enable-sigwinch
7537         + modify view.c to test KEY_RESIZE logic, with "-r" option.
7538         + modify testcurs.c to eliminate misleading display wrt cursor type
7539           by testing if the terminal supports cnorm, civis, cvvis.
7540         + several fixes for m68k/NeXT 4.0, to bring cur_term, _nc_curr_line and
7541           _nc_curr_col variables into linked programs:  move these variables,
7542           making new modules lib_cur_term and trace_buf (reported by Francisco
7543           Alberto Tomei Torres <fatomei@sandburg.unm.edu>).
7544         > patches by Alexander V. Lukyanov:
7545         + add pseudo-functionkey KEY_RESIZE which is returned by getch() when
7546           the SIGWINCH handler has been called since the last call to
7547           doupdate().
7548         + modify lib_twait.c to hide EINTR only if HIDE_EINTR is defined.
7549         + add SIGWINCH handler to ncurses library which is used if there is no
7550           application SIGWINCH handler in effect when the screen is
7551           initialized.
7552         + make linked list of all SCREEN structures.
7553         + move curses.h include before definition of SCREEN to use types in
7554           that structure.
7555         + correction to ensure that wgetstr uses only a newline to force a
7556           scroll (970831).
7557
7558 970831
7559         + add experimental configure option --enable-safe-sprintf; the normal
7560           mode now allocates a buffer as large as the screen for the
7561           lib_printw.c functions.
7562         + modify wgetch to refresh screen when reading ungetch'd characters,
7563           since the application may require this - SVr4 does this.
7564         + refine treatment of newline in wgetstr to echo only when this would
7565           force the screen to scroll.
7566
7567 970830
7568         + remove override in wgetstr() that forces keypad(), since SVr4 does
7569           not do this.
7570         + correct y-reference for erasure in wgetstr() when a wrap forces a
7571           scroll.
7572         + correct x-position in waddch() after a wrap forces a scroll.
7573         + echo newline in wgetstr(), making testscanw.c scroll properly when
7574           scanw is done.
7575         + modify vwscanw() to avoid potential buffer overflow.
7576         + rewrote lib_printw.c to eliminate fixed-buffer limits.
7577         > patches by Alexander V. Lukyanov:
7578         + correct an error in handling cooked mode in wgetch(); processing
7579           was in the wrong order.
7580         + simplified logic in wgetch() that handles backspace, etc., by using
7581           wechochar().
7582         + correct wechochar() so that it interprets the output character as
7583           in waddch().
7584         + modify pechochar() to use prefresh() rather than doupdate(), since
7585           the latter does not guarantee immediate refresh of the pad.
7586         + modify pechochar() so that if called with a non-pad WINDOW, will
7587           invoke wechochar() instead.
7588         + modify fifo indices to allow fifo to be longer than 127 bytes.
7589
7590 970823
7591         + add xterm-8bit to terminfo.src
7592         + moved logic for SP->_fifohold inside check_pending() to make it
7593           work properly when we add calls to that function.
7594         + ensure that bool functions return only TRUE or FALSE, and TRUE/FALSE
7595           are assigned to bool values (patch by H.J.Lu).
7596         > patches by Alexander V. Lukyanov:
7597         + several fixes to getch:
7598           1.  Separate cooked and raw keys in fifo
7599           2.  Fix the case of ungetch'ed KEY_MOUSE
7600           3.  wrap the code for hiding EINTR with ifdef HIDE_EINTR
7601           4.  correctly handle input errors (i.e., EINTR) without loss of raw
7602               keys
7603           5.  recognize ESC KEY_LEFT and similar
7604           6.  correctly handle the case of receiption of KEY_MOUSE from gpm
7605         + correct off-by-one indexing error in _nc_mouse_parse(), that caused
7606           single mouse events (press/release) to be ignored in favor of
7607           composed events (click).  Improves on a fix from integrating gpm
7608           support in 961229.
7609         + add another call to check_pending, before scrolling, for
7610           line-breakout optimization
7611         + improve hashmap.c by
7612           1.  fixed loop condition in grow_hunks()
7613           2.  not marking lines with offset 0
7614           3.  fixed condition of 'too far' criteria, thus one-line hunks are
7615           ignored and two lines interchanged won't pass.
7616         + rewrote/simplified _nc_scroll_optimize() by separating into two
7617           passes, forward/backward, looking for chunks moving only in the given
7618           direction.
7619         + move logic that emits sgr0 when initializing the screen to
7620           _nc_screen_init(), now invoked from newterm.
7621         + move cursor-movement cleanup from endwin() into _nc_mvcur_wrap()
7622           function and screen cleanup (i.e., color) into _nc_screen_wrap()
7623           function.
7624         + add new functions _nc_screen_init(), _nc_screen_resume() and
7625           _nc_screen_wrap().
7626         + rename _nc_mvcur_scrolln() to _nc_scrolln().
7627         + add a copy of acs_map[] to the SCREEN structure, where it can be
7628           stored/retrieved via set_term().
7629         + move variables _nc_idcok, _nc_idlok, _nc_windows into the SCREEN
7630           structure.
7631
7632 970816
7633         + implement experimental _nc_perform_scroll().
7634         + modify newterm (actually _nc_setupscreen()) to emit an sgr0 when
7635           initializing the screen, as does SVr4 (reported by Alexander V.
7636           Lukyanov).
7637         + added test_progs rule to ncurses/Makefile.
7638         + modify test/configure.in to check if initscr is already in $LIBS
7639           before looking for (n)curses library.
7640         + correct version-number in configure script for OSF1 shared-library
7641           options (patch by Tim Mooney).
7642         + add -DNDEBUG to CPPFLAGS for --enable-assertions (as Juergen
7643           originally patched) since the c++ demo files do not necessarily
7644           include ncurses_cfg.h
7645         + supply default value for --enable-assertions option in configure
7646           script (reported by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>).
7647         > patches by Alexander V. Lukyanov:
7648         + correct/simplify logic of werase(), wclrtoeol() and wclrbot().  See
7649           example firstlast.c
7650         + optimize waddch_literal() and waddch_nosync() by factoring out
7651           common subexpressions.
7652         + correct sense of NDEBUG ifdef for CHECK_POSITION macro.
7653         + corrections to render_char(), to make handling of colored blanks
7654           match SVr4 curses, as well as to correct a bug that xor'd space
7655           against the background character.
7656         + replaced hash function with a faster one (timed it)
7657         + rewrote the hashmap algorithm to be one-pass, this avoids multiple
7658           cost_effective() calls on the same lines.
7659         + modified cost_effective() so it is now slightly more precise.
7660         > patches for glibc integration (H.J.Lu):
7661         + add modules define_key, keyok, name_match, tries
7662         + add makefile rules for some of the unit tests in ncurses (mvcur,
7663           captoinfo, hardscroll, hashmap).
7664         + update Linux configure-script for wide-character definitions.
7665
7666 970809
7667         + modify _tracebits() to show the character size (e.g., CS8).
7668         + modify tparm() to emit '\200' where the generated string would have a
7669           null (reported by From:  Ian Dall <Ian.Dall@dsto.defence.gov.au> for
7670           terminal type ncr7900).
7671         + modify install process so that ldconfig is not invoked if the
7672           package is built with an install-prefix.
7673         + correct test program for chtype size (reported by Tim Mooney).
7674         + add configure option --disable-scroll-hints, using this to ifdef the
7675           logic that computes indices for _nc_scroll_optimize().
7676         + add module ncurses/softscroll.c, to perform single-stage computation
7677           of scroll indices used in _nc_scroll_optimize().  This is faster than
7678           the existing scrolling algorithm, but tends to make too-small hunks.
7679         + eliminate fixed buffer size in _nc_linedump().
7680         + minor fixes to lib_doupdate.c to add tradeoff between clr_eol (el)
7681           and clr_bol (el1), refine logic in ClrUpdate() and ClrBottom() (patch
7682           by Alexander V. Lukyanov).
7683         + add test/testaddch.c, from a pending patch by Alexander V. Lukyanov.
7684         + correct processing of "configure --enable-assertions" option (patch
7685           by Juergen Pfeifer).
7686
7687 970802
7688         + add '-s' (single-step) option too test/hashtest.c, correct an error
7689           in loop limit for '-f' (footer option), toggle scrollok() when
7690           writing footer to avoid wrap at lower-right corner.
7691         + correct behavior of clrtoeol() immediately after wrapping cursor,
7692           which was not clearing the line at the cursor position (reported by
7693           Liviu Daia <daia@stoilow.imar.ro>).
7694         + corrected mapping for ACS_LANTERN, which was 'I' rather than 'i'
7695           (reported by Klaus Weide <kweide@tezcat.com>).
7696         + many corrections to make progs/capconvert work, as well as make it
7697           reasonably portable and integrated with ncurses 4.1 (reported by Dave
7698           Furstenau <df@ravine.binary.net>).
7699
7700 970726
7701         + add flag SP->_fifohold, corresponding logic to modify the behavior of
7702           the line breakout logic so that if the application does not read
7703           input, refreshes will not be stopped, but only slowed.
7704         + generate slk_attr_off(), slk_attr_on(), slk_attr_set(), vid_attr(),
7705           ifdef'd for wide-character support, since ncurses' WA_xxx attribute
7706           masks are identical with the A_xxx masks.
7707         + modify MKlib_gen.sh to generate ifdef'd functions to support optional
7708           configuration of wide-characters.
7709         + modify tset to behave more like SVr4's tset, which does not modify
7710           the settings of intr, quit or erase unless they are given as command
7711           options (reported by Nelson H. F. Beebe <beebe@math.utah.edu>).
7712         + modify tset to look in /etc/ttys or /etc/ttytype if the configuration
7713           does not have getttynam().
7714         + extend baudrate table in tset.c to match baudrate() function.
7715         + add table entries for 230400 and 460800 bd to baudrate() function.
7716         + improve breakout logic by allowing it before the first line updated,
7717           which is what SVr4 curses does (patch by Alexander V. Lukyanov).
7718         + correct initialization of vcost in relative_move(), for cursor-down
7719           case (patch by Alexander V. Lukyanov).
7720         > nits gleaned from Debian distribution of 1.9.9g-3:
7721         + install symbolic link for intotocap.
7722         + reference libc directly when making shared libraries.
7723         + correct renaming of curs_scr_dmp.3x in man_db.renames.
7724         + guard tgetflag() and other termcap functions against null cur_term
7725           pointer.
7726
7727 970719
7728         + corrected initial state of software echo (error in 970405, reported
7729           by Alexander V. Lukyanov).
7730         + reviewed/added messages to configure script, so that all non-test
7731           options should be accompanied by a message.
7732         + add configure check for long filenames, using this to determine if
7733           it is safe to allow long aliases for terminal descriptions as does
7734           SVr4.
7735         + add configure options for widec (wide character), hashmap (both
7736           experimental).
7737         > patch by Alexander V. Lukyanov:
7738         + hashmap.c - improved by heuristic, so that scroll test works much
7739           better when csr is not available.
7740         + hardscroll.c - patched so that it continues to scroll other chunks
7741           after failure to scroll one.
7742         + lib_doupdate.c - _nc_mvcur_scrolln extended to handle more cases; csr
7743           is avoided as it is relative costly.  Fixed wrong coordinates in one
7744           case and wrong string in TRACE.
7745         > patch by Juergen Pfeifer:
7746         + modify C++ binding to compile on AIX 4.x with the IBM C-SET++
7747           compiler.
7748
7749 970712
7750         + remove alternate character set from kterm terminfo entry; it uses the
7751           shift-out control for a purpose incompatible with curses, i.e., font
7752           switching.
7753         + disentangle 'xterm' terminfo entry from some derived entries that
7754           should be based on xterm-r6 instead.
7755         + add cbt to xterm-xf86-xv32 terminfo entry; I added the emulation for
7756           XFree86 3.1.2F, but overlooked its use in terminfo then - T.Dickey.
7757         + correct logic in lib_mvcur.c that uses back_tab.
7758
7759 970706
7760         + correct change from 970628 to ClrUpdate() in lib_doupdate.c so that
7761           contents of curscr are saved in newscr before clearing the screen.
7762           This is needed to make repainting work with the present logic of
7763           TransformLine().
7764         + use napms() rather than sleep() in tset.c to avoid interrupting I/O.
7765
7766 970705
7767         + add limit checks to _nc_read_file_entry() to guard against overflow
7768           of buffer when reading incompatible terminfo format, e.g, from OSF/1.
7769         + correct some loop-variable errors in xmc support in lib_doupdate.c
7770         + modify ncurses 'b' test to add gaps, specified by user, to allow
7771           investigation of interaction with xmc (magic cookie) code.
7772         + correct typo in 970524 mods to xmas.c, had omitted empty parameter
7773           list from has_colors(), which gcc ignores, but SVr4 does not
7774           (reported by Larry Virden).
7775         + correct rmso capability in wy50-mc description.
7776         + add configure option "--enable-hard-tabs", renamed TABS_OK ifdef to
7777           USE_HARD_TABS.
7778         > patch by Juergen Pfeifer:
7779         + Add bindings for keyok() and define_key() to the Ada95 packages.
7780         + Improve man pages menu_post.3x and menu_format.3x
7781         + Fix the HTML pages in the Ada95/html directory to reflect the above
7782           changes.
7783
7784 970628
7785         + modify change from 970101 to ClrUpdate() in lib_doupdate.c so that
7786           pending changes to both curscr and newscr are flushed properly.
7787           This fixes a case where the first scrolling operation in nvi would
7788           cause the screen to be cleared unnecessarily and repainted before
7789           doing the indexing, i.e., by repeatedly pressing 'j' (reported by
7790           Juergen Pfeifer).
7791         + correct error in trans_string() which added embedded newlines in a
7792           terminfo description to the stored strings.
7793         + remove spurious newlines from sgr in wyse50 (and several other)
7794           terminfo descriptions.
7795         + add configure option for experimental xmc (magic cookie) code,
7796           "--enable-xmc-glitch".  When disabled (the default), attributes that
7797           would store a magic cookie are suppressed in vidputs().  The magic
7798           cookie code is far from workable at this stage; the configuration
7799           option is a stopgap.
7800         + move _nc_initscr() from lib_initscr.c to lib_newterm.c
7801         + correct path for invoking make_keys (a missing "./").
7802
7803 970621
7804         + correct sign-extension problem with "infocmp -e", which corrupted
7805           acsc values computed for linux fallback data.
7806         + correct dependency on ncurses/names.c (a missing "./").
7807         + modify configure script to use '&&' even for cd'ing to existing
7808           directories to work around broken shell interpreters.
7809         + correct a loop-limit in _nc_hash_map() (patch by Alexander V.
7810           Lukyanov).
7811
7812 970615
7813         + restore logic in _nc_scroll_optimize() which marks as touched the
7814           lines in curscr that are shifted.
7815         + add new utility 'make_keys' to compute keys.tries as a table rather
7816           than a series of function calls.
7817         + correct include-dependency for tic.h used by name_match
7818         + removed buffer-allocation for name and description from m_item_new.c,
7819           since this might result in incompatibilities with SVr4.  Also fixed
7820           the corresponding Ada95 binding module (patch by Juergen Pfeifer,
7821           report by Avery Pennarun <apenwarr@foxnet.net>)
7822         + removed the mechanism to timestamp the generated Ada95 sources.  This
7823           resulted always in generating patches for the HTML doc, even when
7824           nothing really changed (patch by Juergen Pfeifer).
7825         + improve man page mitem_new.3x (patch by Juergen Pfeifer).
7826
7827 970614
7828         + remove ech capability from rxvt description because it does not work.
7829         + add missing case logic for infocmp -I option (reported by Lorenzo M.
7830           Catucci <lorenzo@argon.roma2.infn.it>)
7831         + correct old bug in pnoutrefresh() unmasked by fix in 970531; this
7832           caused glitches in the ncurses 'p' test since the area outside the
7833           pad was not compared when setting up indices for _nc_scroll_optimize.
7834         + rewrote tracebits() to workaround misdefinition of TOSTOP on Ultrix
7835           4.4, as well as to eliminate fixed-size buffer (reported by Chris
7836           Tanner <tannerc@aecl.ca>)
7837         + correct prototype for termattrs() as per XPG4 version 2.
7838         + add placeholder prototypes for color_set(), erasewchar(),
7839           term_attrs(), wcolor_set() as per XPG4 version 2.
7840         + correct attribution for progs/progs.priv.h and lib_twait.c
7841         + improve line-breakout logic by checking based on changed lines rather
7842           than total lines (patch by Alexander V. Lukyanov).
7843         + correct loop limits for table-lookup of enumerated value in form
7844           (patch by Juergen Pfeifer).
7845         + improve threshhold computation for determining when to call ClrToEOL
7846           (patch by Alexander V. Lukyanov).
7847
7848 970531
7849         + add configure option --disable-database to force the library to
7850           use only the fallback data.
7851         + add configure option --with-fallbacks, to specify list of fallback
7852           terminal descriptions.
7853         + add a symbolic link for ncurses.h during install; too many programs
7854           still assume there's an ncurses.h
7855         + add new terminfo.src entry for xterm-xf86-v33.
7856         + restore terminfo.src entry for emu to using setf/setb, since it is
7857           not, after all, generating ANSI sequences.  Corrected missing comma
7858           that caused setf/setb entries to merge.
7859         + modify mousemask() to use keyok() to enable/disable KEY_MOUSE, so
7860           that applications can disable ncurses' mouse and supply their own
7861           handler.
7862         + add extensions keyok() and define_key().  These are designed to allow
7863           the user's application better control over the use of function keys,
7864           e.g., disabling the ncurses KEY_MOUSE.  (The define_key idea was from
7865           a mailing-list thread started by Kenneth Albanowski
7866           <kjahds@kjahds.com> Nov'1995).
7867         + restore original behavior in ncurses 'g' test, i.e., explicitly
7868           set the keypad mode rather than use the default, since it confuses
7869           people.
7870         + rewrote the newdemo banner so it's readable (reported by Hugh
7871           Daniel).
7872         + tidy up exit from hashtest (reported by Hugh Daniel).
7873         + restore check for ^Q in ncurses 'g' test broken in 970510 (reported
7874           by Hugh Daniel)
7875         + correct tput program, checking return-value of setupterm (patch by
7876           Florian La Roche).
7877         + correct logic in pnoutrefresh() and pechochar() functions (reported
7878           by Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>).  The computation
7879           of 'wide' date to eric's #283 (1.9.9), and the pechochar bug to the
7880           original implementation (1.9.6).
7881         + correct typo in vt102-w terminfo.src entry (patch by Robert Wuest
7882           <rwuest@sire.vt.com>)
7883         + move calls of _nc_background() out of various loops, as its return
7884           value will be the same for the whole window being operated on (patch
7885           by J T Conklin).
7886         + add macros getcur[xy] getbeg[xy] getpar[xy], which are defined in
7887           SVr4 headers (patch by J T Conklin <jtc@NetBSD.ORG>)
7888         + modify glibc addon-configure scripts (patch by H.J.Lu).
7889         + correct a bug in hashmap.c: the size used for clearing the hashmap
7890           table was incorrect, causing stack corruption for large values of
7891           LINES, e.g., >MAXLINES/2 (patch by Alexander V. Lukyanov).
7892         + eric's terminfo 9.13.23 & 9.13.24 changes: replaced minitel-2 entry,
7893           added MGR, ansi-nt (note: the changes described for 9.13.24 have not
7894           been applied).
7895         > several changes by Juergen Pfeifer:
7896         + correct a missing error-return in form_driver.c when wrapping of a
7897           field is not possible.
7898         + correct logic in form_driver.c for configurations that do not have
7899           memccpy() (reported by Sidik Isani <isani@cfht.hawaii.edu>)
7900         + change several c++ binding functions to inline.
7901         + modify c++ menu binding to inherit from panels, for proper
7902           initialization.
7903         + correct freeing of menu items in c++ binding.
7904         + modify c++ binding to reflect removal of const from user data pointer
7905           in forms/menus libraries.
7906
7907 970524
7908         + add description of xterm-16color.
7909         + modify name of shared-library on *BSD to end with $(REL_VERSION)
7910           rather than $(ABI_VERSION) to match actual convention on FreeBSD
7911           (cf: 960713).
7912         + add OpenBSD to shared-library case, same as NetBSD and FreeBSD
7913           (reported by Hugh Daniel <hugh@rat.toad.com>).
7914         + corrected include-dependency in menu/Makefile so that "make install"
7915           works properly w/o first doing "make".
7916         + add fallback definition for isascii, used in infocmp.
7917         + modify xmas to use color, and to exit right away when a key is
7918           pressed.
7919         + modify gdc so that the scrolled digits function as described (there
7920           was no time delay between the stages, and the digits overwrote the
7921           bounding box without tidying up).
7922         + modify lib_color.c to use setaf/setab only for the ANSI color codes
7923           0 through 7.  Using 16 colors requires setf/setb.
7924         + modify ncurses 'c' test to work with 16 colors, as well as the normal
7925           8 colors.
7926         + remove const qualifier from user data pointer in forms and menus
7927           libraries (patch by Juergen Pfeifer).
7928         + rewrote 'waddchnstr()' to avoid using the _nc_waddch_nosync()
7929           function, thereby not interpreting tabs, etc., as per spec (patch by
7930           Alexander V. Lukyanov).
7931
7932 970517
7933         + suppress check for pre-existing ncurses header if the --prefix
7934           option is specified.
7935         + add configure options "--with-system-type" and
7936           "--with-system-release" to assist in checking the generated
7937           makefiles.
7938         + add configure option "--enable-rpath" to allow installers to specify
7939           that programs linked against shared libraries will have their library
7940           path embedded, allowing installs into nonstandard locations.
7941         + add flags to OSF1 shared-library options to specify version and
7942           symbol file (patch by Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>)
7943         + add missing definition for ABI_VERSION to c++/Makefile.in (reported
7944           by Satoshi Adachi <adachi@wisdom.aa.ap.titech.ac.jp>).
7945         + modify link flags to accommodate HP-UX linker which embeds absolute
7946           pathnames in executables linked against shared libraries (reported by
7947           Jason Evans <jasone@mrc.uidaho.edu>, solved by Alan Shutko
7948           <ats@hubert.wustl.edu>).
7949         + drop unnecessary check for attribute-change in onscreen_mvcur() since
7950           mvcur() is the only caller within the library, and that check in turn
7951           is exercised only from lib_doupdate.c (patch by Alexander V.
7952           Lukyanov).
7953         + add 'blank' parameter to _nc_scroll_window() so _nc_mvcur_scrolln()
7954           can use the background of stdscr as a parameter to that function
7955           (patch by Alexander V. Lukyanov).
7956         + moved _nc_mvcur_scrolln() from lib_mvcur.c to lib_doupdate.c, to use
7957           the latter's internal functions, as well as to eliminate unnecessary
7958           cursor save/restore operations (patch by Alexander V. Lukyanov).
7959         + omit parameter of ClrUpdate(), since it is called only for newscr,
7960           further optimized/reduced by using ClearScreen() and TransformLine()
7961           to get rid of duplicate code (patch by Alexander V. Lukyanov).
7962         + modify scrolling algorithm in _nc_scroll_optimize() to reject hunks
7963           that are smaller than the distance to be moved (patch by Alexander V.
7964           Lukyanov).
7965         + correct a place where the panel library was not ifdef'd in ncurses.c
7966           (Juergen Pfeifer)
7967         + documentation fixes (Juergen Pfeifer)
7968
7969 970515  4.1 release for upload to prep.ai.mit.edu
7970         + re-tag changes since 970505 as 4.1 release.
7971
7972 970510
7973         + modify ncurses 'g' test to allow mouse input
7974         + modify default xterm description to include mouse.
7975         + modify configure script to add -Wwrite-strings if gcc warnings are
7976           enabled while configuring --enable-const (and fixed related
7977           warnings).
7978         + add toggle, status display for keypad mode to ncurses 'g' test to
7979           verify that keypad and scrollok are not inherited from parent window
7980           during a call to newwin.
7981         + correction to MKexpanded.sh to make it work when configure --srcdir
7982           is used (reported by H.J.Lu).
7983         + revise test for bool-type, ensuring that it checks if builtin.h is
7984           available before including it, adding test for sizeof(bool) equal
7985           to sizeof(short), and warning user if the size cannot be determined
7986           (reported by Alexander V. Lukyanov).
7987         + add files to support configuration of ncurses as an add-on library
7988           for GNU libc (patch by H.J.Lu <hjl@lucon.org>)
7989
7990 970506
7991         + correct buffer overrun in lib_traceatr.c
7992         + modify change to lib_vidattr.c to avoid redundant orig_pair.
7993         + turn on 'echo()' in hanoi.c, since it is initially off.
7994         + rename local 'errno' variable in etip.h to avoid conflict with global
7995           (H.J.Lu).
7996         + modify configure script to cache LD, AR, AR_OPTS (patch by H.J.Lu
7997           <hjl@lucon.org>)
7998
7999 970505  4.1 pre-release
8000         + regenerate the misc directory html dumps without the link list, which
8001           is not useful.
8002         + correct dependency in form directory makefile which caused
8003           unnecessary recompiles.
8004         + correct substitution for ABI_VERSION in test-makefile
8005         + modify install rules for shared-library targets to remove the target
8006           before installing, since some install programs do not properly handle
8007           overwrite of symbolic links.
8008         + change order of top-level targets so that 'include' immediate
8009           precedes the 'ncurses' directory, reducing the time between new
8010           headers and new libraries (requested by Larry Virden).
8011         + modify lib_vidattr.c so that colors are turned off only before
8012           modifying other attributes, turned on after others.  This makes the
8013           hanoi.c program display correctly on FreeBSD console.
8014         + modify debug code in panel library to print user-data addresses
8015           rather than the strings which they (may) point to.
8016         + add check to ensure that C++ binding and demo are not built with g++
8017           versions below 2.7, since the binding uses templates.
8018         + modify c++ binding and demo to build and run with SGI's c++ compiler.
8019           (It also compiles with the Sun SparcWorks compiler, but the demo does
8020           not link, due to a vtbl problem).
8021         + corrections to demo.cc, to fix out-of-scope variables (Juergen
8022           Pfeifer).
8023
8024 970503
8025         + correct memory leak in _nc_trace_buf().
8026         + add configure test for regexpr.h, for Unixware 1.x.
8027         + correct missing "./" prefixing names of generated files in ncurses
8028           directory.
8029         + use single-quotes in configure scripts assignments for MK_SHARED_LIB
8030           to workaround shell bug on FreeBSD 2.1.5
8031         + remove tabs from intermediate #define's for GCC_PRINTF, GCC_SCANF
8032           that caused incorrect result in ncurses_cfg.h
8033         + correct initialization in lib_trace.c, which omitted version info.
8034         + remove ech, el1 attributes from cons25w description; they appear to
8035           malfunction in FreeBSD 2.1.5
8036         + correct color attributes in terminfo.src and lib_color.c to match
8037           SVr4 behavior by interchanging codes 1,4, 3,6 in the setf/setb
8038           capabilities.
8039         + use curs_set() rather than checks via tigetstr() for test programs
8040           that hide the cursor: firework, rain, worm.
8041         + ensure that if the terminal lacks change_scroll_region, parm_index
8042           and parm_rindex are used only to scroll the whole screen (patch by
8043           Peter Wemm).
8044         + correct curs_set() logic, which did not return ERR if the requested
8045           attributes did not exist, nor did it assume an unknown initial state
8046           for the cursor (patch by Alexander V. Lukyanov).
8047         + combine IDcTransformLine and NoIDcTransformLine to new TransformLine
8048           function in lib_doupdate.c (patch by Alexander V. Lukyanov).
8049         + correct hashmap.c, which did not update index information (patch by
8050           Alexander V. Lukyanov).
8051         + fixes for C++ binding and demo (see c++/NEWS) (Juergen Pfeifer).
8052         + correct index in lib_instr.c (Juergen Pfeifer).
8053         + correct typo in 970426 patch from Tom's cleanup of lib_overlay.c
8054           (patch by Juergen Pfeifer).
8055
8056 970426
8057         + corrected cost computation in PutRange(), which was using
8058           milliseconds compared to characters by adding two new members to the
8059           SCREEN struct, _hpa_ch_cost and _cup_ch_cost.
8060         + drop ncurses/lib_unctrl.c, add ncurses/MKunctrl.awk to generate a
8061           const array of strings (suggested by Alexander V. Lukyanov).  The
8062           original suggestion in 970118 used a perl script.
8063         + rewrote ncurses 'b' test to better exercise magic-cookie (xmc), as
8064           well as noting the attributes that are not supported by a terminal.
8065         + trace the computation of cost values in lib_mvcur.c
8066         + modify _nc_visbuf() to use octal rather than hex, corrected sign
8067           extension bug in that function that caused buffer overflow.
8068         + modify trace in lib_acs.c to use _nc_visbuf().
8069         + suppress trace within _traceattr2().
8070         + correct logic of _tracechtype2(), which did not account for repeats
8071           or redefinition within an acsc string.
8072         + modify debug-library version baudrate() to use environment variable
8073           $BAUDRATE to override speed computation.  This is needed for
8074           regression testing.
8075         + correct problems shown by "weblint -pedantic".
8076         + update mailing-list information (now ncurses@bsdi.com).
8077
8078 970419
8079         + Improve form_field_validation.3x manpage to better describe the
8080           precision parameter for TYPE_NUMERIC and TYPE_INTEGER.  Provide more
8081           precise information how the range checking can be avoided.  (patch by
8082           Juergen Pfeifer, reported by Bryan Henderson)
8083         + change type of min/max value of form types TYPE_INTEGER to long to
8084           match SVr4 documentation.
8085         + set the form window to stdscr in set_form_win() so that form_win()
8086           won't return null (patch by Juergen Pfeifer, reported by Bryan
8087           Henderson <bryanh@giraffe.netgate.net>).
8088
8089 970412
8090         + corrected ifdef'ing of inline (cf: 970321) for TRACE vs C++.
8091         + corrected toggle_attr_off() macro (patch by Andries Brouwer).
8092         + modify treatment of empty token in $MANPATH to /usr/man (reported by
8093           <Andries.Brouwer@cwi.nl>)
8094         + modify traces that record functions-called so that chtype and attr_t
8095           values are expressed symbolically, to simplify reuse of generated
8096           test-scripts on SVr4 regression testing.
8097         + add new trace functions _traceattr2() and _tracechtype2()
8098
8099 970405
8100         + add configure option --enable-const, to support the use of 'const'
8101           where XSI should have, but did not, specify.  This defines
8102           NCURSES_CONST, which is an empty token otherwise, for strict
8103           compatibility.
8104         + make processing of configure options more verbose by echoing the
8105           --enable/--with values.
8106         + add configure option --enable-big-core
8107         + set initial state of software echo off as per XSI.
8108         + check for C++ builtin.h header
8109         + correct computation of absolute-path for $INSTALL that dropped "-c"
8110           parameter from the expression.
8111         + rename config.h to ncurses_cfg.h to avoid naming-conflict when
8112           ncurses is integrated into larger systems (adapted from diffs by
8113           H.J.Lu for libc).
8114         + correct inequality in lib_doupdate.c that caused a single-char to not
8115           be updated when the char on the right-margin was not blank, idcok()
8116           was true (patch by Alexander V Lukyanov (in 970124), reported
8117           by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu> in 970329).
8118         + modify 'clean' rule in include/Makefile so that files created by
8119           configure script are removed in 'distclean' rule instead.
8120
8121 970328
8122         + correct array limit in tparam_internal(), add case to interpret "%x"
8123           (patch by Andreas Schwab)
8124         + rewrote number-parsing in ncurses.c 'd' test; it did not reset the
8125           value properly when non-numeric characters were given (reported by
8126           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
8127
8128 970321
8129         + move definition of __INTERNAL_CAPS_VISIBLE before include for
8130           progs.priv.h (patch by David MacKenzie).
8131         + add configuration summary, reordered check for default include
8132           directory to better accommodate a case where installer is configuring
8133           a second copy of ncurses (reported by Klaus Weide
8134           <kweide@tezcat.com>)
8135         + moved the #define for 'inline' as an empty token from the
8136           $(CFLAGS_DEBUG) symbol into config.h, to avoid redefinition warning
8137           (reported by Ward Horner).
8138         + modify test for bool builtin type to use 'unsigned' rather than
8139           'unknown' when cross-compiling (reported by Ward Horner).
8140
8141 970315
8142         + add header dependencies so that "make install.libs" will succeed
8143           even if "make all" is not done first.
8144         + moved some macros from lib_doupdate.c to curses.priv.h to use in
8145           expanded functions with ATAC.
8146         + correct implementation of lib_instr.c; both XSI and SVr4 agree that
8147           the winnstr functions can return more characters than will fit on one
8148           line.
8149
8150 970308
8151         + modify script that generates lib_gen.c to support traces of called &
8152           return.
8153         + add new configure option "--disable-macros", for testing calls within
8154           lib_gen.c
8155         + corrected logic that screens level-checking of called/return traces.
8156
8157 970301
8158         + use new configure macro NC_SUBST to replace AC_PATH_PROG, better
8159           addressing request by Ward Horner.
8160         + check for cross-compiling before trying to invoke the autoconf
8161           AC_FUNC_SETVBUF_REVERSED macro (reported by Ward Horner)
8162         + correct/simplify loop in _nc_visbuf(), 970201 changes omitted
8163           a pointer-increment.
8164         + eliminate obsolete symbol SHARED_ABI from dist.mk (noted by
8165           Florian La Roche).
8166
8167 970215
8168         + add configure option --enable-expanded, together with code that
8169           implements an expanded form of certain complex macros, for testing
8170           with ATAC.
8171         + disable CHECK_POSITION unless --with-assertions is configured
8172           (Alexander V Lukyanov pointed out that this is redundant).
8173         + use keyname() to show traced chtype values where applicable rather
8174           than _tracechar(), which truncates the value to 8-bits.
8175         + minor fixes to TRACE_ICALLS, added T_CREATE, TRACE_CCALLS macros.
8176         + modify makefiles in progs and test directories to avoid using C
8177           preprocessor options on link commands (reported by Ward Horner)
8178         + correct ifdef/include-order for nc_alloc.h vs lib_freeall.c (reported
8179           by Ward Horner)
8180         + modify ifdef's to use configure-defined symbols consistently
8181           (reported by Ward Horner)
8182         + add/use new makefile symbols AR, AR_OPTS and LD to assist in non-UNIX
8183           ports (reported by Ward Horner <whorner@tsi-telsys.com>)
8184         + rename struct try to struct tries, to avoid name conflict with C++
8185           (reported by Gary Johnson).
8186         + modify worm.c to hide cursor while running.
8187         + add -Wcast-qual to gcc warnings, fix accordingly.
8188         + use PutChar rather than PutAttrChar in ClrToEOL to properly handle
8189           wrapping (Alexander V Lukyanov).
8190         + correct spurious echoing of input in hanoi.c from eric's #291 & #292
8191           patches (reported by Vernon C. Hoxie <vern@zebra.alphacdc.com>).
8192         + extend IRIX configuration to IRIX64
8193         + supply missing install.libs rule needed after restructuring
8194           test/Makefile.in
8195
8196 970208
8197         + modify "make mostlyclean" to leave automatically-generated source
8198           in the ncurses directory, for use in cross-compiles.
8199         + autogenerated object-dependencies for test directory
8200         + add configure option --with-rcs-ids
8201         + modify configuration scripts to generate major/minor/patch versions
8202           (suggested by Alexander V Lukyanov).
8203         + supply missing va_end's in lib_scanw.c
8204         + use stream I/O for trace-output, to eliminate fixed-size buffer
8205         + add TRACE_ICALLS definition/support to lib_trace.c
8206         + modify Ada95 binding to work with GNAT 3.09 (Juergen Pfeifer).
8207
8208 970201
8209         + add/modify traces for called/return values to simplify extraction
8210           for test scripts.
8211         + changed _nc_visbuf to quote its result, and to dynamically allocate
8212           the returned buffer.
8213         + invoke ldconfig after installing shared library
8214         + modify install so that overwrite applies to shared library -lcurses
8215           in preference to static library (reported by Zeyd M Ben-Halim 960928).
8216         + correct missing ';' in 961221 mod to overwrite optional use of $(LN_S)
8217           symbol.
8218         + fixes to allow "make install" to work without first doing a "make
8219           all" (suggested by Larry Virden).
8220
8221 970125
8222         + correct order of #ifdef for TABS_OK.
8223         + instrumented toe.c to test memory-leaks.
8224         + correct memory-deallocation in toe.c (patch by Jesse Thilo).
8225         + include <sys/types.h> in configuration test for regex.h (patch by
8226           Andreas Schwab)
8227         + make infocmp recognize -I option, for SVr4 compatibility (reported by
8228           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
8229
8230 970118
8231         + add extension 'use_default_colors()', modified test applications that
8232           use default background (firework, gdc, hanoi, knight, worm) to
8233           demonstrate.
8234         + correct some limit checks in lib_doupdate.c exposed while running
8235           worm.
8236         + use typeCalloc macro for readability.
8237         + add/use definition for CONST to accommodate testing with Solaris
8238           (SVr4) curses, which doesn't use 'const' in its prototypes.
8239         + modify ifdef's in test/hashtest.c and test/view.c to compile with
8240           Solaris curses.
8241         + modify _tracedump() to pad pad colors & attrs lines to match change
8242           in 970101 showing first/last changes.
8243         + corrected location of terminating null on dynamically allocated forms
8244           fields (patch by Per Foreby).
8245
8246 970111
8247         + added headers to make view.c compile on SCO with the resizeterm()
8248           code (i.e., struct winsize) - though this compiles, I don't have a
8249           suitable test configuration since SIGWINCH doesn't pass my network to
8250           that machine - T.Dickey.
8251         + update test/configure.in to supply some default substitutions.
8252         + modify configure script to add -lncurses after -lgpm to fix problem
8253           linking against static libraries.
8254         + add a missing noraw() to test/ncurses.c (places noted by Jeremy
8255           Buhler)
8256         + add a missing wclear() to test/testcurs.c (patch by Jeremy Buhler
8257           <jbuhler@cs.washington.edu>)
8258         + modify headers to accommodate compilers that don't allow duplicate
8259           "#define" lines for NCURSES_VERSION (reported by Larry W. Virden
8260           <lvirden@cas.org>)
8261         + fix formatting glitch in curs_getch.3x (patch by Jesse Thilo).
8262         + modify lib_doupdate to make el, el1 and ed optimization use the
8263           can_clear_with macro, and change EmitRange to allow leaving cursor at
8264           the middle of interval, rather than always at the end (patch by
8265           Alexander V Lukyanov).  This was originally 960929, resync 970106.
8266
8267 970104
8268         + workaround defect in autoconf 2.12 (which terminates configuration
8269           if no C++ compiler is found) by adding an option --without-cxx.
8270         + modify several man-pages to use tbl, where .nf/.fi was used (reported
8271           by Jesse Thilo).
8272         + correct font-codes in some man-pages (patch by Jesse Thilo
8273           <Jesse.Thilo@pobox.com>)
8274         + use configure script's knowledge of existence of g++ library for the
8275           c++ Makefile (reported by Paul Jackson).
8276         + correct misleading description of --datadir configuration option
8277           (reported by Paul Jackson <pj@sam.engr.sgi.com>)
8278
8279 970101
8280         + several corrections to _nc_mvcur_scrolln(), prompted by a bug report
8281           from Peter Wemm:
8282         > the logic for non_dest_scroll_region was interchanged between the
8283           forward & reverse scrolling cases.
8284         > multiple returns from the function allowed certain conditions to do
8285           part of an operation before discovering that it couldn't be
8286           completed, returning an error without restoring the cursor.
8287         > some returns were ERR, where the function had completed the
8288           operation, because the insert/delete line logic was improperly
8289           tested (this was probably the case Peter saw).
8290         > contrary to comments, some scrolling cases were tested after the
8291           insert/delete line method.
8292         + modify _tracedump() to show first/last changes.
8293         + modify param of ClrUpdate() in lib_doupdate.c to 'newscr', fixes
8294           refresh problem (reported by Peter Wemm) that caused nvi to not show
8295           result of ":r !ls" until a ^L was typed.
8296
8297 961229  (internal alpha)
8298         + correct some of the writable-strings warnings (reported by Gary
8299           Johnson <gjohnson@season.com>).  Note that most of the remaining ones
8300           are part of the XSI specification, and can't be "fixed".
8301         + improve include-dependencies in form, menu, panel directories.
8302         + correct logic of delay_output(), which would return early if
8303           there is data on stdin.
8304         + modify interface & logic of _nc_timed_wait() to support 2 file
8305           descriptors, needed for GPM.
8306         + integrate patch by Andrew Kuchling <amk@magnet.com> for GPM (mouse)
8307           support, correcting logic in wgetch() and _nc_mouse_parse() which
8308           prevented patch from working properly -TD
8309         + improve performance of panel algorithm (Juergen Pfeifer 961203).
8310         + strip RCS id's from generated .html files in Ada95 subtree.
8311         + resync with generated .html files (Juergen Pfeifer 961223).
8312         + terminfo.src 10.1.0 (ESR).
8313
8314 961224  4.0 release
8315         + release as 4.0 to accommodate Linux ld.so.1.8.5
8316         + correct syntax/spelling, regenerated .doc files from .html using
8317           lynx 2.5
8318         + refined forms/menus makefiles (Juergen Pfeifer 961223).
8319
8320 961221  - snapshot
8321         + remove logic in read_entry.c that attempts to refine errno by using
8322           'access()' for the directory (from patch by Florian La Roche).
8323         + correct configure test/substitution that inhibits generating
8324           include-path to /usr/include if gcc is used (reported by Florian La
8325           Roche).
8326         + modify setupterm() to allocate new TERMINAL for each call, just as
8327           solaris' curses does (Alexander V Lukyanov 960829).
8328         + corrected memory leaks in read_entry.c
8329         + add configure options --with-dbmalloc, --with-dmalloc, and
8330           --disable-leaks, tested by instrumenting infocmp, ncurses programs.
8331         + move #include's for stdlib.h and string.h to *.priv.h to accommodate
8332           use of dbmalloc.
8333         + modify use of $(LN_S) to follow recommendation in autoconf 2.12,
8334           i.e., set current directory before linking.
8335         + split-out panel.priv.h, improve dependencies for forms, menus
8336           (Juergen Pfeifer 961204).
8337         + modify _nc_freewin() to reset globals curscr/newscr/stdscr when
8338           freeing the corresponding WINDOW (found using Purify).
8339         + modify delwin() to return ERR if the window to be deleted has
8340           subwindows, needed as a side-effect of resizeterm() (found using
8341           Purify).  Tested and found that SVr4 curses behaves this way.
8342         + implement logic for _nc_freeall(), bringing stub up to date.
8343
8344 961215
8345         + modify wbkgd() so that it doesn't set nulls in the rendered text,
8346           even if its argument doesn't specify a character (fixes test case by
8347           Juergen Pfeifer for bug-report).
8348         + set window-attributes in wbkgd(), to simplify comparison against
8349           Solaris curses, which does this.
8350
8351 961214  - snapshot
8352         + replace most constants in ncurses 'o' test by expressions, making it
8353           work with wider range of screen sizes.
8354         + add options to ncurses.c to specify 'e' test softkey format, and the
8355           number of header/footer lines to rip-off.
8356         + add ^R (repaint after resize), ^L (refresh) commands to ncurses 'p'
8357           test.
8358         + add shell-out (!) command to ncurses 'p' test to allow test of
8359           resize between endwin/refresh.
8360         + correct line-wrap case in mvcur() by emitting carriage return,
8361           overlooked in 960928, but needed due to SVr4 compatibility changes to
8362           terminal modes in 960907.
8363         + correct logic in wresize that causes new lines to be allocated,
8364           broken for the special case of increasing rows only in 960907's fix
8365           for subwindows.
8366         + modify configure script to generate $(LDFLAGS) with -L and -l options
8367           in preference to explicit library filenames.  (NOTE: this may
8368           require further amending, since I vaguely recall a dynamic loader
8369           that did not work properly without the full names, but it should be
8370           handled as an exception to the rule, since some linkers do bulk
8371           inclusion of libraries when given the full name - T.Dickey).
8372         + modify configure script to allow user-supplied $CFLAGS to set the
8373           debug-option in all libraries (requested by lots of people) -TD
8374         + use return consistently from main(), rather than exit (reported by
8375           Florian La Roche).
8376         + add --enable-getcap-cache option to configure, normally disabled
8377           (requested by Florian La Roche).
8378         + make configure test for gettimeofday() and possibly -lbsd more
8379           efficient (requested by Florian La Roche <florian@knorke.saar.de>)
8380         + minor adjustments to Ada95 binding (patches by Juergen Pfeifer)
8381         + correct attributes after emitting orig_pair in lib_vidattr.c (patch
8382           by Alexander V Lukyanov).
8383
8384 961208
8385         + corrected README wrt Ada95 (Juergen Pfeifer)
8386
8387 961207  - snapshot
8388         + integrate resizeterm() into doupdate(), so that if screen size
8389           changes between endwin/refresh, ncurses will resize windows to fit
8390           (this needs additional testing with pads and softkeys).
8391         + add, for memory-leak testing, _nc_freeall() entrypoint to free all
8392           data used in ncurses library.
8393         + initialize _nc_idcok, _nc_idlok statically to resolve discrepancy
8394           between initscr() and newwin() initialization (reported by
8395           Alexander V Lukyanov).
8396         + test built VERSION=4.0, SHARED_ABI=4 with Linux ld.so.1.8.5
8397           (set beta versions to those values -- NOTE that subsequent pre-4.0
8398           beta may not be interchangeable).
8399         + modify configure script to work with autoconf 2.12
8400
8401 961130  1.9.9g release
8402         + add copyright notices to configuration scripts (written by Thomas
8403           Dickey).
8404
8405 961127
8406         > patch, mostly for panel (Juergen Pfeifer):
8407         + cosmetic improvement for a few routines in the ncurses core library
8408           to avoid warning messages.
8409         + the panel overlap detection was broken
8410         + the panel_window() function was not fool-proof.
8411         + Some inlining...
8412         + Cosmetic changes (also to avoid warning messages when compiling with
8413           -DTRACE).
8414
8415 961126
8416         > patch by Juergen Pfeifer:
8417         + eliminates warning messages for the compile of libform.
8418         + inserts Per Foreby's new field type TYPE_IPV4 into libform.
8419         + Updates man page and the Ada95 binding to reflect this.
8420         + Improves inlining in libmenu and libform.
8421
8422 961120
8423         + improve the use of the "const" qualifier in the
8424           panel library (Juergen Pfeifer)
8425         + change set_panel_userptr() and panel_userptr() to use void*
8426           (Juergen Pfeifer)
8427
8428 961119
8429         + change ABI to 3.4
8430         + package with 961119 version of Ada95 binding (fixes for gnat-3.07).
8431           (Juergen Pfeifer)
8432         + correct initialization of the stdscr pseudo panel in panel library
8433           (Juergen Pfeifer)
8434         + use MODULE_ID (rcs keywords) in forms and menus libraries (Juergen
8435           Pfeifer).
8436         > patch #324 (ESR):
8437         + typo in curs_termcap man page (reported by Hendrik Reichel
8438           <106065.2344@compuserve.com>)
8439         + change default xterm entry to xterm-r6.
8440         + add entry for color_xterm
8441
8442 961116  - snapshot
8443         + lint found several functions that had only #define implementations
8444           (e.g., attr_off), modified curses.h.in to generate them as per XSI
8445           Curses requirement that every macro be available as a function.
8446         + add check in infocmp.c to guard against string compare of
8447           CANCELLED_STRING values.
8448         + modify firework.c, rain.c to hide cursor while running.
8449         + correct missing va_end in lib_tparm.c
8450         + modify hanoi.c to work on non-color terminals, and to use timing
8451           delays when in autoplay mode.
8452         + correct 'echochar()' to refresh immediately (reported by Adrian
8453           Garside <94ajg2@eng.cam.ac.uk>)
8454         > patch #322 (ESR):
8455         + reorganize terminfo.src entries for xterm.
8456
8457 961109  - snapshot
8458         + corrected error in line-breakout logic (lib_doupdate.c)
8459         + modified newdemo to use wgetch(win) rather than getch() to eliminate
8460           a spurious clear-screen.
8461         + corrected ifdef's for 'poll()' configuration.
8462         + added modules to ncurses, form, menu for Ada95 binding (Juergen
8463           Pfeifer).
8464         + modify set_field_buffer() to allow assignment of string longer than
8465           the initial buffer length, and to return the complete string rather
8466           than only the initial size (Juergen Pfeifer and Per Foreby
8467           <perf@efd.lth.se>).
8468
8469 961102  - snapshot
8470         + configure for 'poll()' in preference to 'select()', since older
8471           systems are more likely to have a broken 'select()'.
8472         + modified render_char() to avoid OR'ing colors.
8473         + minor fixes to testcurs.c, newdemo.c test programs: ifdef'd out the
8474           resize test, use wbkgd and corrected box() parameters.
8475         + make flushinp() test work in ncurses.c by using napms() instead of
8476           sleep().
8477         + undo ESR's changes to xterm-x11r6 (it no longer matched the X11R6.1
8478           distribution, as stated)
8479         + terminfo 9.13.18 resync (ESR)
8480         + check for getenv("HOME") returning null (ESR).
8481         + change buffer used to decode xterm-mouse commands to unsigned to
8482           handle displays wider than 128 chars (Juergen Pfeifer).
8483         + correct typo curs_outopts.3x (Juergen Pfeifer).
8484         + correct limit-checking in wenclose() (Juergen Pfeifer).
8485         + correction to Peter Wemm's newwin change (Thomas Fehr
8486           <fehr@suse.de>).
8487         + corrections to logic that combines colors and attributes; they must
8488           not be OR'd (Juergen Pfeifer, extending from report/patch by Rick
8489           Marshall).
8490
8491 961026  - snapshot
8492         + reset flags in 'getwin()' that might cause refresh to attempt to
8493           manipulate the non-existent parent of a window that is read from a
8494           file (lib_screen.c).
8495         + restructure _nc_timed_wait() to log more information, and to try to
8496           recover from badly-behaved 'select()' calls (still testing this).
8497         + move define for GOOD_SELECT into configure script.
8498         + corrected extra '\' character inserted before ',' in comp_scan.c
8499         + corrected expansion of %-format characters in dump_entry.c; some were
8500           rendered as octal constants.
8501         + modify dump_entry.c to make terminfo output more readable and like
8502           SVr4, by using "\s" for spaces (leading/trailing only), "\," for
8503           comma, "\^" and "\:" as well.
8504         + corrected some memory leaks in ncurses.c, and a minor logic error
8505           in the top-level command-parser.
8506         + correction for label format 4 (PC style with info line), a
8507           slk_clear(), slk_restore() sequence didn't redraw the info line
8508           (Juergen Pfeifer).
8509         + modified the slk window (if simulated) to inherit the background and
8510           default character attributes from stdscr (Juergen Pfeifer).
8511         + corrected limit-check in set_top_row (Juergen Pfeifer).
8512
8513 961019  - snapshot
8514         + correct loop-limit in wnoutrefresh(), bug exposed during pipe-testing
8515           had '.lastchar' entry one beyond '._maxx'.
8516         + modify ncurses test-program to work with data piped to it.
8517         + corrected pathname computation in run_tic.sh, removing extra "../"
8518           (reported by Tim Mooney).
8519         + modified configure script to use previous install's location for
8520           curses.h
8521         + added NetBSD and FreeBSD to platforms that use --prefix=/usr as
8522           a default.
8523
8524 961013
8525         + revised xterm terminfo descriptions to reflect the several versions
8526           that are available.
8527         + corrected a pointer reference in dump_entry.c that didn't test if
8528           the pointer was -1.
8529
8530 961005  - snapshot
8531         + correct _nc_mvcur_scrolln for terminals w/o scrolling region.
8532         + add -x option to hashtest to control whether it allows writes to the
8533           lower-right corner.
8534         + ifdef'd (NCURSES_TEST) the logic for _nc_optimize_enable to make it
8535           simpler to construct tests (for double-check of _nc_hash_map tests).
8536         + correct ifdef's for c++ in curses.h
8537         + change default xterm type to xterm-x11r6.
8538         + correct quoting in configure that made man-pages installed with
8539           $datadir instead of actual terminfo path.
8540         + correct whitespace in include/Caps, which caused kf11, clr_eol and
8541           clr_end to be omitted from terminfo.5
8542         + fix memory leaks in delscreen() (adapted from Alexander V Lukyanov).
8543         + improve appearance of marker in multi-selection menu (Juergen
8544           Pfeifer)
8545         + fix behavior for forms with all fields inactive (Juergen Pfeifer)
8546         + document 'field_index()' (Juergen Pfeifer)
8547         > patch #321 (ESR):
8548         + add some more XENIX keycap translations to include/Caps.
8549         + modify newwin to set initial state of each line to 'touched'
8550           (from patch by Peter Wemm <peter@spinner.dialix.com>)
8551         + in SET_TTY, replace TCSANOW with TCSADRAIN (Alexander V Lukyanov).
8552
8553 960928  - snapshot
8554         + ifdef'd out _nc_hash_map (still slower)
8555         + add graphic characters to vt52 description.
8556         + use PutAttrChar in ClrToEOL to ensure proper background, position.
8557         + simplify/correct logic in 'mvcur()' that does wrapping; it was
8558           updating the position w/o actually moving the cursor, which broke
8559           relative moves.
8560         + ensure that 'doupdate()' sets the .oldindex values back to a sane
8561           state; this was causing a spurious refresh in ncurses 'r'.
8562         + add logic to configure (from vile) to guard against builders who
8563           don't remove config.cache & config.status when doing new builds -TD
8564         + corrected logic for 'repeat_char' in EmitRange (cf: eric #317), which
8565           did not follow the 2-parameter scheme specified in XSI.
8566         + corrected logic of wrefresh, wnoutrefresh broken in #319, making
8567           clearok work properly (report by Michael Elkins).
8568         + corrected problem with endwin introduced by #314 (removing the
8569           scrolling-region reset) that broke ncurses.c tests.
8570         + corrected order of args in AC_CHECK_LIB (from report by Ami Fischman
8571           <fischman@math.ucla.edu>).
8572         + corrected formatting of terminfo.5 tables (Juergen Ehling)
8573         > patch 320 (ESR):
8574         + change ABI to 3.3
8575         + emit a carriage-return in 'endwin()' to workaround a kernel bug in
8576           BSDI.  (requested by Mike Karels <karels@redrock.bsdi.com>)
8577         + reverse the default o configure --enable-termcap (consensus).
8578         > patch 319 (ESR):
8579         + modified logic for clearok and related functions (from report by
8580           Michael Elkins) - untested
8581         > patch 318 (ESR):
8582         + correction to #317.
8583         > patch 317 (ESR):
8584         + re-add _nc_hash_map
8585         + modify EmitRange to maintain position as per original design.
8586         + add hashtest.c, program to time the hashmap optimization.
8587         > patch 316 (ESR):
8588         + add logic to deal with magic-cookie (how was this tested?)
8589           (lib_doupdate.c).
8590         + add ncurses.c driver for magic-cookie, some fixes to ncurses.c
8591         > patch 315 (ESR):
8592         + merged Alexander V Lukyanov's patch to use ech and rep - untested
8593           (lib_doupdate.c).
8594         + modified handling of interrupted system calls - untested
8595           (lib_getch.c, lib_twait.c).
8596         + new function _nc_mvcur_resume()
8597         + fix return value for 'overlay()', 'overwrite()'
8598
8599 960914  - snapshot
8600         + implement subwindow-logic in wresize, minor fixes to ncurses 'g'
8601           test.
8602         + corrected bracketing of fallback.c (reported/suggested fix by Juergen
8603           Ehling <eh@eclipse.aball.de>).
8604         + update xterm-color to reflect XFree86 3.1.3G release.
8605         + correct broken dtterm description from #314 patch (e.g., spurious
8606           newline.  The 'pairs' change might work, but no one's tested it
8607           either ;-)
8608         + clarify the documentation for the builtin form fieldtypes (Juergen
8609           Pfeifer)
8610         > patch 314 (ESR):
8611         + reset scroll region on startup rather than at wrapup time
8612           (enhancement suggested by Alexander V Lukyanov).
8613         + make storage of palette tables and their size counts per-screen for
8614           multi-terminal applications (suggested by Alexander V Lukyanov).
8615         + Improved error reporting for infotocap translation errors.
8616         + Update terminfo.src to 9.13.14.
8617
8618 960907  - snapshot
8619         + rewrote wgetstr to make it erase control chars and also fix bogus use
8620           of _nc_outstr which caused the display to not wrap properly (display
8621           problem reported by John M. Flinchbaugh <glynis@netrax.net>)
8622         + modify ncurses 'f' test to accommodate terminal responses to C1 codes
8623           (and split up this screen to accommodate non-ANSI terminals).
8624         + test enter_insert_mode and exit_insert_mode in has_ic().
8625         + removed bogus logic in mvcur that assumes nl/nonl set output modes
8626           (XSI says they are input modes; SVr4 implements this).
8627         + added macros SET_TTY, GET_TTY to term.h
8628         + correct getstr() logic that altered terminal modes w/o restoring.
8629         + disable ICRNL, etc., during initialization to match SVr4, removing
8630           the corresponding logic from raw, cbreak, etc.
8631         + disable ONLCR during initialization, to match SVr4 (this is needed
8632           for cursor optimization when the cursor-down is a newline).
8633         + replaced ESR's imitation of wresize with my original (his didn't
8634           work).
8635
8636 960831  - snapshot
8637         + memory leaks (Alexander V. Lukyanov).
8638         + modified pnoutrefresh() to be more tolerant of too-large screen
8639           size (reported by Michael Elkins).
8640         + correct handling of terminfo files with no strings (Philippe De
8641           Muyter)
8642         + correct "tic -s" to take into account -I, -C options.
8643         + modify ncurses 'f' test to not print codes 80 through 9F, since they
8644           are considered control codes by ANSI terminals.
8645
8646 960824  - snapshot
8647         + correct speed variable-type in 'tgetent()' (reported by Peter Wemm)
8648         + make "--enable-getcap" configuration-option work (reported by
8649           Peter Wemm <peter@spinner.DIALix.COM>)
8650
8651 960820
8652         + correct err in 960817 that changed return-value of tigetflag()
8653           (reported by Alexander V. Lukyanov).
8654         + modify infocmp to use library default search-path for terminfo
8655           directory (Alexander V. Lukyanov).
8656
8657 960817  - snapshot
8658         + corrected an err in mvcur that broke resizing-behavior.
8659         + correct fall-thru behavior of _nc_read_entry(), which was not finding
8660           descriptions that existed in directories past the first one searched
8661           (reported by Alexander V. Lukyanov)
8662         + corrected typo in dtterm description.
8663         > patch 313 (ESR):
8664         + add dtterm description
8665         + clarify ncurses 'i' test (drop vscanf subtest)
8666
8667 960810  - snapshot
8668         + correct nl()/nonl() to work as per SVr4 & XSI.
8669         + minor fixes to ncurses.c (use 'noraw()', mvscanw return-code)
8670         + refine configure-test for -g option (Tim Mooney).
8671         + correct interaction between O_BLANK and NEW_LINE request in form
8672           library (Juergen Pfeifer)
8673
8674 960804
8675         + revised fix to tparm; previous fix reversed parameter order.
8676         > patch 312 (ESR):
8677           correct terminfo.src corrupted by #310
8678         > patch 311 (ESR):
8679         + fix idlok() and idcok() and the default of the idlok switch.
8680
8681 960803  - snapshot
8682         + corrected tparm to handle capability strings without explicit pop
8683           (reported by William P Setzer)
8684         + add fallback def for GCC_NORETURN, GCC_UNUSED for termcap users
8685           (reported by Tim Mooney).
8686         > patch 310 (ESR):
8687         + documentation and prototyping errors for has_color, immedok and idcok
8688           (reported by William P Setzer <wsetzer@pams.ncsu.edu>)
8689         + updated qnx terminfo entry (by Michael Hunter)
8690
8691 960730
8692         + eliminate quoted includes in ncurses subdirectory, ensure config.h
8693           is included first.
8694         + newterm initializes terminal settings the same as initscr (reported
8695           by Tim Mooney).
8696
8697 960727  - snapshot
8698         + call cbreak() in initscr(), as per XSI & SVr4.
8699         + turn off hardware echo in initscr() as per XSI & SVr4
8700         > patch 309 (ESR):
8701         + terminfo changes (9.3.10), from BRL
8702         + add more checks to terminfo parser.
8703         + add more symbols to infocmp.
8704
8705 960720  - snapshot
8706         + save previous-attribute in lib_vidattr.c if SP is null (reported by
8707           Juergen Fluk <louis@dachau.marco.de>)
8708         + corrected calls on _nc_render so that background character is set
8709           as per XSI.
8710         + corrected wbkgdset macro (XSI allows background character to be
8711           null), and tests that use it.
8712         + more corrections to terminfo (xterm & rxvt)
8713         + undid change to mcprint prototype (cannot use size_t in curses.h
8714           because not all systems declare it in the headers that we can safely
8715           include therein).
8716         + move the ifdefs for errno into curses.priv.h
8717         > patch 308 (ESR):
8718         + terminfo changes (9.3.8)
8719         + modified logic of error-reporting in terminfo parser
8720
8721 960713  - snapshot
8722         + always check for <sys/bsdtypes.h> since ISC needs it to declare
8723           fd_set (Juergen Pfeifer)
8724         + install shared-libraries on NetBSD/FreeBSD with ABI-version (reported
8725           by Juergen Pfeifer, Mike Long)
8726         + add LOCAL_LDFLAGS2 symbol (Juergen Pfeifer)
8727         + corrected prototype for delay_output() -- bump ABI to 3.2
8728         + terminfo patches #306/307 (ESR).
8729         + moved logic that filters out rmul and rmso from setupterm to newterm
8730           where it is less likely to interfere with termcap applications.
8731
8732 960707
8733         + rollback ESR's #305 change to terminfo.src (it breaks existing
8734           applications, e.g., 'less 290').
8735         + correct path of edit_man.sh, and fix typo that made all man-pages
8736           preformatted.
8737         + restore man/menu_requestname.3x omitted in Zeyd's resync (oops).
8738         + auto-configure the GCC_PRINTFLIKE/GCC_SCANFLIKE macros (reported by
8739           Philippe De Muyter).
8740
8741 960706  - snapshot
8742         + make lib_vidattr.c more readable using macros.
8743         + filter out rmul, rmso that conflict with sgr0 when reading terminal
8744           descriptions.
8745         + added sanity-checking of various paired string attributes (ESR).
8746         + work around autoconf bug, force $INSTALL to absolute path
8747           (reported by Zeyd).
8748         + modify man-page install for BSDI to install preformatted .0 files
8749           (reported by David MacKenzie).
8750         + add/use gcc __attribute__ for printf and scanf in curses.h
8751         + added SGR attributes test-case to ncurses
8752         + revised ncurses 't' logic to show trace-disable effect in the menu.
8753         + use getopt in ncurses program to process -s and -t options.
8754         + make ncurses 'p' legend toggle with '?'
8755         + disable scrollok during the ncurses 'p' test; if it is enabled the
8756           stdscr will scroll when putting the box-corners in the lower-right
8757           of the screen.
8758
8759 960629  - snapshot
8760         + check return code of _nc_mvcur_scrolln() in _nc_scroll_optimize() for
8761           terminals with no scrolling-support (reported by Nikolay Shadrin
8762           <queen@qh.mirea.ac.ru>)
8763         + added ^S scrollok-toggle to ncurses 'g' test.
8764         + added ^T trace-toggle to ncurses tests.
8765         + modified ncurses test program to use ^Q or ESC consistently for
8766           terminating tests (rather than ^D), and to use control keys rather
8767           than function keys in 'g' test.
8768         + corrected misplaced wclrtoeol calls in addch to accommodate wrapping
8769           (reported by Philippe De Muyter).
8770         + modify lib_doupdate.c to use effective costs to tradeoff between
8771           delete-character/insert-character vs normal updating (reported by
8772           David MacKenzie).
8773         + compute effective costs for screen update operations (e.g., clr_eos,
8774           delete_character).
8775         + corrected error in knight.c exposed by wrap fixes in 960622; the
8776           msgwin needed scrollok set.
8777         + corrected last change to IDcTransformLine logic to avoid conflict
8778           between PutRange and InsStr
8779         + modified run_tic.sh to not use /usr/tmp (reported by David
8780           MacKenzie), and further revised it and aclocal.m4 to use $TMPDIR if
8781           set.
8782         + corrected off-by-one in RoomFor call in read_entry.c
8783
8784 960622  - snapshot
8785         + modified logic that wraps cursor in addch to follow the XSI spec,
8786           (implemented in SVr4) which states that the cursor position is
8787           updated when wrapping.  Renamed _NEED_WRAP to _WRAPPED to reflect the
8788           actual semantics.
8789         + added -s option to tic, to provide better diagnostics in run_tic.sh
8790         + improved error-recovery for tabset install.
8791         + change ABI to 3.1 (dropped tparam, corrected getbkgd(), added
8792           _yoffset to WINDOW).
8793         + modified initialization of SP->_ofp so that init_acs() is called with
8794           the "right" file pointer (reported by Rick Marshall <rjm@nlc.net.au>
8795         + documentation fixes (Juergen Pfeifer).
8796         + corrected, using new SCREEN and WINDOW members, the behavior of
8797           ncurses if one uses ripoffline() to remove a line from the top of the
8798           screen (Juergen Pfeifer).
8799         + modified autoconf scripts to prepare for Ada95 (GNAT) binding to
8800           ncurses (Juergen Pfeifer).
8801         + incorrect buffer-size in _nc_read_entry, reported by ESR.
8802
8803 960617
8804         + corrected two logic errors in read_entry.c, write_entry.c (called by
8805           tic, the write/read of terminfo entries used inconsistent rules for
8806           locating the entries; the $TERMINFO_DIRS code would find only the
8807           first entry in a list).
8808         + refined pathname computation in run_tic.sh and shlib.
8809         + corrected initialization of $IP in misc/run_tic.sh
8810
8811 960615  - snapshot
8812         + ifdef'd out _nc_hash_map() call because it does not improve speed.
8813         + display version of gcc if configure script identifies it.
8814         + modify configure script to use /usr as Linux's default prefix.
8815         + modify run_tic.sh to use shlib script, fixes some problems installing
8816           with a shared-library configuration.
8817         + adjusted configure script so that it doesn't run tests with the
8818           warnings turned on, which makes config.log hard to read.
8819         + added 'lint' rule to top-level Makefile.
8820         + added configure option '--with-install-prefix' for use by system
8821           builders to install into staging locations (requested by
8822           Charles Levert <charles@comm.polymtl.ca>).
8823         + corrected autoconfigure for Debian man program; it's not installed
8824           as "man_db".
8825         + set noecho in 'worm'; it was ifdef'd for debug only
8826         + updated test/configure.in for timing-display in ncurses 'p' test
8827         + corrected misspelled 'getbkgd()'.
8828         + corrected wbkgdset to work like observed syvr4 (sets A_CHARTEXT part
8829           to blank if no character given, copies attributes to window's
8830           attributes).
8831         + modified lib_doupdate.c to use lower-level SP's current_attr state
8832           instead of curscr's state, since it is redundant.
8833         + correction to IDcTransformLine logic which controls where InsStr is
8834           invoked (refined by Alexander V Lukyanov).
8835         > patch 303 (ESR):
8836         + conditionally include Chris Torek's hash function _nc_hash_map().
8837         + better fix for nvi refresh-bug (Rick Marshall)
8838         + fix for bug in handling of interrupted keystroke waits,
8839           (Werner Fleck).
8840
8841 960601  - snapshot
8842         + auto-configure man-page compression-format and renames for Debian.
8843         + corrected several typos in curses.h.in (i.e., the mvXXXX macros).
8844         + re-order curses.priv.h for lint.
8845         + added rules for lintlib, lint
8846         + corrected ifdef for BROKEN_LINKER in MKnames.awk.in
8847         + corrected missing INSTALL_DATA in misc/Makefile.in
8848         + flush output when changing cursor-visibility (Rick Marshall)
8849         + fix a minor bug in the _nc_ripoff() routine and improve error
8850           checking when creating the label window (Juergen Pfeifer).
8851         + enhancement to the control over the new PC-style soft key format.
8852           allow caller now to select whether or not one wants to have
8853           the index-line; see curs_slk.3x for documentation (Juergen Pfeifer).
8854         + typos, don't use inline with -g (Philippe De Muyter)
8855         + fixes for menus & wattr-, slk-functions (Juergen Pfeifer)
8856
8857 960526  - snapshot
8858         + removed --with-ticdir option altogether, maintain compatibility with
8859           existing applications via symbolic link in run_tic.sh
8860         + patch for termio.h, signal (Philippe De Muyter)
8861         + auto-configure gcc warning options rather than infer from version.
8862         + auto-configure __attribute__ for different gcc versions.
8863         + corrected special use of clearok() in hardscroll.c by resetting flag
8864           in wrefresh().
8865         + include stdlib.h before defs for EXIT_SUCCESS, for OSF/1.
8866         + include sys/types.h in case stdlib.h does not declare size_t.
8867         + fixes for makefile (Tim Mooney)
8868         + fixes for menus & forms (Juergen Pfeifer)
8869
8870 960518  - snapshot
8871         + revised ncurses.c panner test, let pad abut all 4 sides of screen.
8872         + refined case in lib_doupdate.c for ClrToEOL().
8873         + corrected prior change for PutRange (Alexander V Lukyanov
8874           <lav@yars.free.net>).
8875         + autoconf mods (Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>).
8876         + locale fix for forms (Philippe De Muyter <phdemuyt@ulb.ac.be>)
8877         + renamed "--with-datadir" option to "--with-ticdir" to avoid
8878           confusion, and made this check for the /usr/lib/terminfo pre-existing
8879           directory.
8880         > patches 299-301 (ESR):
8881         + added hashmap.c
8882         + mods to tracing, especially for ACS chars.
8883         + corrected off-by-one in IDCtransform.
8884         + corrected intermittent mouse bug by using return-value from read().
8885         + mods to parse_entry.c, for smarter defaults.
8886
8887 960512
8888         + use getopt in 'tic'; added -L option and modified -e option to allow
8889           list from a file.
8890
8891 960511
8892         + don't use fixed buffer-size in tparm().
8893         + modified tic to create terminfo directory if it doesn't exist.
8894         + added -T options to tic and infocmp (for testing/analysis)
8895         + refined the length criteria for termcap and terminfo
8896         + optimize lib_doupdate with memcpy, PutRange
8897         > patches 297, 298 (ESR):
8898         + implement TERMINFO_DIRS, and -o option of tic
8899         + added TRACE_IEVENT
8900         + removed boolean version of 'getm'
8901         + added lib_print.c (for Rick Marshall)
8902         + added has_key()
8903         + added 't' to ncurses.c test.
8904         + moved delay_output() to lib_tputs.c
8905         + removed tparam() (was added in 1.9.9, but conflicts with emacs and
8906           is not part of X/Open Curses).
8907         + misc cursor & optimization fixes.
8908
8909 960504  - snapshot
8910         + modified ncurses 'p' test to allow full-screen range for panner size.
8911         + fixes for locale (Philippe De Muyter <phdm@labauto1.ulb.ac.be>)
8912         + don't use fixed buffer-size in fmt_entry().
8913         + added usage-message to 'infocmp'.
8914         + modified install.includes rules to prepend subdirectory-name to
8915           "#include" if needed.
8916
8917 960430
8918         + protect wrefresh, wnoutrefresh from invocation with pad argument.
8919         + corrected default CCFLAGS in test/Makefile.
8920
8921 960428  - snapshot
8922         + implemented logic to support terminals with background color erase
8923           (e.g., rxvt and the newer color xterm).
8924         + improved screen update logic (off-by-one logic error; use clr_eos if
8925           possible)
8926
8927 960426  - snapshot
8928         + change ncurses 'a' test to run in raw mode.
8929         + make TIOCGWINSZ configure test less stringent, in case user
8930           configures via terminal that cannot get screen size.
8931         > patches 295, 296 (ESR):
8932         + new "-e" option of tic.
8933         + fix for "infocmp -e".
8934         + restore working-directory in read_termcap.c
8935         + split lib_kernel.c, lib_setup.c and names.c in order to reduce
8936           overhead for programs that use only termcap features.
8937
8938 960418  - snapshot
8939         + use autoconf 2.9
8940         + fix for AIX 3.2.5 (must define _POSIX_SOURCE to get termios struct
8941           definitions via <termios.h>, modified macros in lib_raw.c to avoid
8942           K&R-style substitution)
8943         > patches 293, 294 (ESR):
8944         + mods to wgetch() in cooked mode
8945         + corrected askuser() logic in tset
8946         + correct interaction of endwin() with mouse processing
8947         + added trace support for TTY flags
8948
8949 960406
8950         + fixes for NeXT, ISC and HPUX auto-configure
8951         + autogenerate development header-dependencies (config.h, *.priv.h)
8952         + corrected single-column formatting of "use=" (e.g., in tic)
8953         + modify tic to read full terminfo-names
8954         + corrected divide-by-zero that caused hang (or worse) when redirecting
8955           output
8956         + modify tic to generate directories only as-needed (and corrected
8957           instance of use of data from function that had already returned).
8958
8959 ### ncurses-1.9.8a -> 1.9.9e
8960
8961 * fixed broken wsyncup()/wysncdown(), as a result wnoutrefresh() now has
8962   copy-changed-lines behavior.
8963 * added and documented wresize() function.
8964 * more fixes to LOWER-RIGHT corner handling.
8965 * changed the line-breakout optimization code to allow some lines to be
8966   emitted before the first check.
8967 * added option for tic to use symbolic instead of hard links (for AFS)
8968 * fix to restore auto-wrap mode.
8969 * trace level can be controlled by environment variable.
8970 * better handling of NULs in terminal descriptions.
8971 * improved compatibility with observed SVR4 behavior.
8972 * the refresh behavior of over-lapping windows is now more efficient and
8973   behaves like SVR4.
8974 * use autoconf 2.7, which results in a working setup for SCO 5.0.
8975 * support for ESCDELAY.
8976 * small fixes for menu/form code.
8977 * the test directory has its own configure.
8978 * fixes to pads when optimizing scrolling.
8979 * fixed several off-by-one bugs.
8980 * fixes for termcap->terminfo translation; less restrictions more correct
8981   behavior.
8982
8983 ### ncurses-1.9.7 -> 1.9.8a
8984
8985 * teach infocmp -i to recognize ECMA highlight sequences
8986 * infocmp now dumps all SVr4 termcaps (not just the SVr4 ones) on -C
8987 * support infocmp -RBSD.
8988 * satisfy XSI Curses requirement that every macro be available as a function.
8989 * This represents the last big change to the public interface of ncurses. The
8990   ABI_VERSION has now been set at 3.0 and should stay there barring any great
8991   catastrophies or acts of God.
8992 * The C++ has been cleaned up in reaction to the changes to satisfy XSI's
8993   requirements.
8994 * libncurses now gets linked to libcurses to help seamless emulation
8995   (replacement) of a vendor's curses. --disable-overwrite turns this behavior
8996   off.
8997
8998 ### ncurses-1.9.6 -> 1.9.7
8999
9000 * corrected return values of setupterm()
9001 * Fixed some bugs in tput (it does padding now)
9002 * fixed a bug in tic that made it do the wrong thing on entries with more than
9003   one `use' capability.
9004 * corrected the screen-size calculation at startup time to alter the
9005   numeric capabilities as per SVr4, not just LINES and COLS.
9006 * toe(1) introduced; does what infocmp -T used to.
9007 * tic(1) can now translate AIX box1 and font[0123] capabilities.
9008 * tic uses much less core, the dotic.sh kluge can go away now.
9009 * fix read_entry() and write_entry() to pass through cancelled capabilities OK.
9010 * Add $HOME/.terminfo as source/target directory for terminfo entries.
9011 * termcap compilation now automatically dumps an entry to $HOME/.terminfo.
9012 * added -h option to toe(1).
9013 * added -R option to tic(1) and infocmp(1).
9014 * added fallback-entry-list feature.
9015 * added -i option to infocmp(1).
9016 * do a better job at detecting if we're on SCO.
9017
9018 ### ncurses-1.9.5 -> 1.9.6
9019
9020 * handling of TERMCAP environment variables now works correctly.
9021 * various changes to shorten termcap translations to less that 1024 chars.
9022 * tset(1) added
9023 * mouse support for xterm.
9024 * most data tables are now const and accordingly live in shareable text space.
9025 * Obey the XPG4/SVr4 practice that echo() is initally off.
9026 * tic is much better at translating XENIX and AIX termcap entries now.
9027 * tic can interpret ko capabilities now.
9028 * integrated Juergen Pfeifer's forms library.
9029 * taught write_entry() how not to write more than it needs to; this change
9030   reduces the size of the terminfo tree by a full 26%!
9031 * infocmp -T option added.
9032 * better warnings about historical tic quirks from tic.
9033
9034 ### ncurses 1.9.4 -> 1.9.5
9035
9036 * menus library is now included with documentation.
9037 * lib_mvcur has been carefully profiled and tuned.
9038 * Fixed a ^Z-handling bug that was tanking lynx(1).
9039 * HJ Lu's patches for ELF shared libraries under Linux
9040 * terminfo.src 9.8.2
9041 * tweaks for compiling in seperate directories.
9042 * Thomas Dickey's patches to support NeXT's brain-dead linker
9043 * Eric Raymond's patches to fix problems with long termcap entries.
9044 * more support for shared libraries under SunOS and IRIX.
9045
9046 ### ncurses 1.9.3 -> 1.9.4
9047
9048 * fixed an undefined-order-of-evaluation bug in lib_acs.c
9049 * systematically gave non-API public functions and data an _nc_ prefix.
9050 * integrated Juergen Pfeifer's menu code into the distribution.
9051 * totally rewrote the knight test game's interface
9052
9053 ### ncurses 1.9.2c -> 1.9.3
9054
9055 * fixed the TERMCAP_FILE Support.
9056 * fixed off-by-one errors in scrolling code
9057 * added tracemunch to the test tools
9058 * took steps to cut the running time of make install.data
9059
9060 ### ncurses 1.9.2c -> 1.9.2d
9061
9062 * revised 'configure' script to produce libraries for normal, debug,
9063   profile and shared object models.
9064
9065 ### ncurses 1.9.1 -> 1.9.2
9066
9067 * use 'autoconf' to implement 'configure' script.
9068 * panels support added
9069 * tic now checks for excessively long termcap entries when doing translation
9070 * first cut at eliminating namespace pollution.
9071
9072 ### ncurses 1.8.9 -> 1.9
9073
9074 * cleanup gcc warnings for the following: use size_t where 'int' is not
9075   appropriate, fixed some shadowed variables, change attr_t to compatible with
9076   chtype, use attr_t in some places where it was confused with 'int'.
9077 * use chtype/attr_t casts as appropriate to ensure portability of masking
9078   operations.
9079 * added-back waddchnstr() to lib_addstr.c (it had been deleted).
9080 * supplied missing prototypes in curses.h
9081 * include <termcap.h> in lib_termcap.c to ensure that the prototypes
9082   are consistent (they weren't).
9083 * corrected prototype of tputs in <termcap.h>
9084 * rewrote varargs parsing in lib_tparm.c (to avoid referencing memory
9085   that may be out of bounds on the stack) -- Purify found this.
9086 * ensure that TRACE is defined in lib_trace.c (to solve prototype
9087   warnings from gcc).
9088 * corrected scrolling-region size in 'mvcur_wrap()'
9089 * more spelling fixes
9090 * use 'calloc()' to allocate WINDOW struct in lib_newwin.c (Purify).
9091 * set default value for SP->_ofp in lib_set_term.c (otherwise SunOS dumps
9092   core in init_acs()).
9093 * include <errno.h> in write_entry.c (most "braindead" includes declare errno
9094   in that file).
9095
9096 ### ncurses 1.8.8 -> 1.8.9
9097
9098 * compile (mostly) clean with gcc 2.5.8 -Wall -Wstrict-prototypes
9099   -Wmissing-prototypes -Wconversion and using __attribute__ to flush out
9100   non-portable use of "%x" for pointers, or for chtype data (which is declared
9101   as a long).
9102 * modified doupdate to ensure that typahead was turned on before attempting
9103   select-call (otherwise, some implementations hang).
9104 * added trace mask TRACE_FIFO, use this in lib_getch.c to allow finer
9105   resolution of traces.
9106 * improved bounds checking on several critical functions.
9107 * the data directory has been replaced by the new master terminfo file.
9108 * -F file-comparison option added to infocmp.
9109 * compatibility with XSI Curses is now documented in the man bages.
9110 * wsyncup/wsyncdown functions are reliable now; subwindow code in general
9111   is much less flaky.
9112 * capabilities ~msgr, tilde_glitch, insert_padding, generic_type, no_pad_char,
9113   memory_above, memory_below, and hard_copy are now used properly.
9114 * cursor-movement optimization has been completely rewritten.
9115 * vertical-movement optimization now uses hardware scrolling, il, dl.
9116
9117 ### ncurses 1.8.7 -> 1.8.8
9118 * untic no longer exists, infocmp replaces it.
9119 * tic can understand termcap now, especially if it is called captoinfo.
9120 * The Linux Standard Console terminfo entry is called linux insead of console.
9121   It also uses the kernel's new method of changing charsets.
9122 * initscr() will EXIT upon error (as the docs say) This wil mostly happen if
9123   you try to run on an undefined terminal.
9124 * I can get things running on AIX but tic can't compile terminfo. I have to
9125   compile entries on another machine. Volunteers to hunt this bug are welcome.
9126 * wbkgd() and wbkgdset() can be used to set a windows background to color.
9127   wclear()/werase() DO NOT use the current attribute to clear the screen.
9128   This is the way SVR4 curses works. PDCurses 2.1 is broken in this respect,
9129   though PDCurses 2.2 has been fixed.
9130 * cleaned up the test/ directory.
9131 * test/worm will segfault after quite a while.
9132 * many spelling corrections courtesy of Thomas E. Dickey
9133
9134 ### ncurses 1.8.6 -> 1.8.7
9135 * cleaned up programs in test/ directory.
9136 * fixed wbkgdset() macro.
9137 * modified getstr() to stop it from advancing cursor in noecho mode.
9138 * modified linux terminfo entry to work with the latest kernel to get
9139   the correct alternate character set.
9140 * also added a linux-mono entry for those running on monochrome screens.
9141 * changed initscr() so that it behaves like the man page says it does.
9142   this fixes the problem with programs in test/ crashing with SIGSEV if
9143   a terminal is undefined.
9144 * modified addch() to avoid using any term.h #define's
9145 * removed duplicate tgoto() in lib_tparm.c
9146 * modified dump_entry.c so that infocmp deals correctly with ',' in acsc
9147 * modified delwin() to correctly handle deleting subwindows.
9148 * fixed Makefile.dist to stop installing an empty curses.h
9149 * fixed a couple of out-of-date notes in man pages.
9150
9151 ### ncurses 1.8.5 -> 1.8.6
9152 * Implemented wbkgd(), bkgd(), bkgdset(), and wbkgdset().
9153 * The handling of attributes has been improved and now does not turn off color
9154   if other attributes are turned off.
9155 * scrolling code is improved. Scrolling in subwindows is still broken.
9156 * Fixes to several bugs that manifest them on platforms other than Linux.
9157 * The default to meta now depends on the status of the terminal when ncurses
9158   is started.
9159 * The interface to the tracing facility has changed.  Instead of the pair of
9160   functions traceon() and traceoff(), there is just one function trace() which
9161   takes a trace mask argument.  The trace masks, defined in curses.h, are
9162   as follows:
9163
9164         #define TRACE_DISABLE   0x00    /* turn off tracing */
9165         #define TRACE_ORDINARY  0x01    /* ordinary trace mode */
9166         #define TRACE_CHARPUT   0x02    /* also trace all character outputs */
9167         #define TRACE_MAXIMUM   0x0f    /* maximum trace level */
9168
9169   More trace masks may be added, or these may be changed, in future releases.
9170 * The pad code has been improved and the pad test code in test/ncurses.c has
9171   been improved.
9172 * The prototype ansi entry has been changed to work with a wider variety
9173   of emulators.
9174 * Fix to the prototype ansi entry that enables it to work with PC emulators
9175   that treat trailing ";m" in a highlight sequence as ";0m"; this doesn't
9176   break operation with any emulators.
9177 * There are now working infocmp, captoinfo, tput, and tclear utilities.
9178 * tic can now compile entries in termcap syntax.
9179 * Core-dump bug in pnoutrefresh fixed.
9180 * We now recognize and compile all the nonstandard capabilities in Ross
9181   Ridge's mytinfo package (rendering it obsolete).
9182 * General cleanup and documentation improvements.
9183 * Fixes and additions to the installation-documentation files.
9184 * Take cursor to normal mode on endwin.
9185
9186 ### ncurses 1.8.4 -> 1.8.5
9187 * serious bugs in updating screen which caused erratic non-display,
9188   fixed.
9189 * fixed initialization for getch() related variable which cause
9190   unpredictable results.
9191 * fixed another doupdate bug which only appeared if you have
9192   parm_char.
9193 * implemented redrawln() and redrawwin().
9194 * implemented winsnstr() and related functions.
9195 * cleaned up insertln() and deleteln() and implemented (w)insdeln().
9196 * changed Makefile.dist so that installation of man pages will
9197   take note of the terminfo directory.
9198 * fixed Configure (removed the mysterious 'X').
9199 * Eric S. Raymond fixed the script.* files so that they work with
9200   stock awk.
9201
9202 #### ncurses 1.8.3 -> 1.8.4 #### ####
9203 * fixed bug in refreshing the screen after return from shell_mode.
9204   There are still problems but they don't manifest themselves on
9205   my machine (Linux 0.99.14f).
9206 * added wgetnstr() and modified things accordingly.
9207 * fixed the script.src script.test to work with awk not just gawk.
9208 * Configure can now take an argument of the target system.
9209 * added test/ncurses.c which replaces several other programs and
9210   performs more testing.
9211 [Thanks to Eric S Raymond for the last 4]
9212 * more fixes to lib_overlay.c and added test/over.c to illustrate
9213   how it works.
9214 * fixed ungetch() to take int instead of ch.
9215 * fixes to cure wgetch() if flushinp() is called.
9216
9217 One note I forgot to mention in 1.8.3 is that tracing is off by
9218 default starting in the version. If you want tracing output, put
9219 traceon(); in your code and link with -ldcurses.
9220
9221 #### ncurses 1.8.2 -> ncurses 1.8.3 #### ####
9222 MAJOR CHANGES:
9223 1) The order of capabilities has been changed in order to achieve
9224 binary compatibility with SVR4 terminfo database. This has the
9225 unfortunate effect of breaking application currently linked with
9226 ncurses. To ensure correct behavior, recompile all such programs.
9227 Most programs using color or newer capabilities will break, others
9228 will probably continue to work ok.
9229
9230 2) Pavel Curtis has renounced his copyright to the public domain.
9231 This means that his original sources (posted to comp.sources.unix,
9232 volume 1) are now in the public domain.  The current sources are
9233 NOT in the public domain, they are copyrighted by me.  I'm
9234 entertaining ideas on what the new terms ncurses is released under.
9235
9236 3) Eric S. Raymond has supplied a complete set of man pages for
9237 ncurses in ?roff format. They will eventually replace most of the
9238 current docs. Both sets are included in this release.
9239
9240 Other changes and notes from 1.8.2 include:
9241 * SIGSEGV during scrolling no longer occurs.
9242 * Other problems with scrolling and use of idl have been corrected.
9243 * lib_getch.c has been re-written and should perform flawlessly.
9244   please use test/getch.c and any other programs to test this.
9245 * ripoffline() is implemented (Thanks to Eric) and slk_ functions
9246   changed accordingly.
9247 * I've added support for terminals that scroll if you write in the
9248   bottom-right corner.
9249 * fixed more bugs in pads code. If anybody has a program that uses
9250   pads I'd love a copy.
9251 * correct handling for terminal with back_color_erase capability
9252   (such as Linux console, and most PC terminals)
9253 * ^Z handling apparently didn't work (I should never trust code
9254   sent me to me without extensive testing). It now seems to be
9255   fixed. Let me know if you have problems.
9256 * I've added support for Apollo and NeXT, but it may still be
9257   incomplete, especially when dealing with the lack of POSIX
9258   features.
9259 * scrolling should be more efficient on terminals with idl
9260   capabilities. Please see src/lib_scroll.c for more notes.
9261 * The line drawing routines were offset by 1 at both ends. This
9262   is now fixed.
9263 * added a few missing prototypes and macros (e.g. setterm())
9264 * fixed code in src/lib_overlay.c which used to crash.
9265 * added a few more programs in test/ The ones from the PDCurses
9266   package are useful, especially if you have SVR4 proper. I'm
9267   interested in the results you get on such a systems (Eric? ;-).
9268   They already exposed certain bugs in ncurses.
9269 * See src/README for porting notes.
9270 * The C++ code should really replace ncurses.h instead of working
9271   around it. It should avoid name-space clashes with nterm.h (use
9272   rows instead of lines, etc.)
9273 * The C++ should compile ok. I've added explicit rules to the
9274   Makefile because no C++ defaults are documented on the suns.
9275 * The docs say that echo() and nocbreak() are mutually exclusive.
9276   At the moment ncurses will switch to cbreak() if the case above
9277   occurs. Should it continue to do so? How about echo() and noraw()?
9278 * PDCurses seem to assume that wclear() will use current attribute
9279   when clearing the screen. According to Eric this is not the case
9280   with SVR4.
9281 * I have discovered, to my chagrin, SunOS 4.x (and probably other systems)
9282   * doesn't have vsscanf and God knows what else!  I've will do a vsscanf().
9283 * I've also found out that the src/script.* rely on gawk and will not
9284   work with stock awk or even with nawk. Any changes are welcome.
9285 * Linux is more tolerant of NULL dereferences than most systems. This
9286   fact was exposed by hanoi.
9287 * ncurses still seems inefficient in drawing the screen on a serial
9288   link between Linux and suns. The padding may be the culprit.
9289 * There seems to be one lingering problem with doupdate() after shelling
9290   out. Despite the fact the it is sending out the correct information
9291   to the terminal, nothing takes effect until you press ^L or another
9292   refresh takes place. And yes, output does get flushed.
9293
9294 #### ncurses 1.8.1 -> ncurses 1.8.2 #### Nov 28, 1993 ####
9295
9296 * added support for SVR4 and BSDI's BSD/386.
9297 * major update and fix to scrolling routine.
9298 * MORE fixes to stuff in lib_getch.c.
9299 * cleaned-up configuration options and can now generate
9300         Config.* files through an awk script.
9301 * changed setupterm() so it can be called more than once,
9302         add added set_curterm(), del_curterm().
9303 * a few minor cleanups.
9304 * added more prototypes in curses.h
9305
9306 #### ncurses 1.8 -> ncurses 1.8.1 #### Nov 4, 1993 ####
9307
9308 * added support for NeXTStep 3.0
9309 * added termcap emulation (not well tested).
9310 * more complete C++ interface to ncurses.
9311 * fixed overlay(), overwrite(), and added copywin().
9312 * a couple of bug fixes.
9313 * a few code cleanups.
9314
9315 #### ncurses 0.7.2/0.7.3 -> ncurses 1.8 #### Aug 31, 1993 ####
9316
9317 * The annoying message "can't open file." was due to missing
9318   terminfo entry for the used terminal. It has now been
9319   replaced by a hopefully more helpful message.
9320 * Problems with running on serial lines are now fixed.
9321 * Added configuration files for SunOS, Linux, HP/UX, Ultrix,
9322   386bsd/BSDI (if you have others send'em to me)
9323 * Cleaner Makefile.
9324 * The documentation in manual.doc is now more uptodate.
9325 * update optimization and support for hp terminals, and 386bsd
9326   console driver(s).
9327 * mvcur optimization for terminals without cursor addressing
9328   (doesn't work on Linux)
9329 * if cursor moved since last update, getch() will refresh the
9330   screen before working.
9331 * getch() & alarm() can now live together. in 0.7.3 a signal
9332   interrupted getch() (bug or feature?) now the getch is
9333   restarted.
9334 * scanw() et all were sick, now fixed.
9335 * support for 8-bit input (use meta()).
9336 * added default screen size to all terminfos.
9337 * added c++ Ncursesw class.
9338 * several minor bug fixes.
9339
9340 #### ncurses 0.7.2 -> ncurses 0.7.3 #### May 27, 1993 ####
9341
9342 * Config file to cope with different platforms (386BSD, BSDI, Ultrix, SunOS)
9343 * more fixes to lib_getch.c
9344 * changes related to Config
9345
9346 #### ncurses 0.7 -> ncurses 0.7.2 #### May 22, 1993 ####
9347
9348 * docs updated slightly (color usage is now documented).
9349 * yet another fix for getch(), this one fixes problems with ESC being swallowed
9350   if another character is typed before the 1 second timeout.
9351 * Hopefully, addstr() and addch() are 8-bit clean.
9352 * fixed lib_tparm.c to use stdarg.h (should run on suns now)
9353 * order of capabilities changed to reflect that specified in SYSV
9354   this will allow for binary-compatibility with existing terminfo dbs.
9355 * added halfdelay()
9356 * fixed problems with asc_init()
9357 * added A_PROTECT and A_INVIS
9358 * cleaned up vidputs()
9359 * general cleanup of the code
9360 * more attention to portability to other systems
9361 * added terminfos for hp70092 (wont work until changes to lib_update.c are
9362   made) and 386BSD pcvt drivers.
9363
9364 Thanks to Hellmuth Michaelis for his help.
9365 optimization code is slated for the next major release, stay tuned!
9366
9367 #### ncurses 0.6/0.61 -> ncurses 0.7 #### April 1, 1993
9368 Please note that the next release will be called 1.8. If you want to know about
9369 the rationale drop me a line.
9370
9371 Included are several test programs in test/.
9372 I've split up the panels library, reversi, tetris, sokoban. They are now
9373 available separately from netcom.com:pub/zmbenhal/
9374
9375 * color and ACS support is now fully compatible with SYSV at the terminfo
9376   level.
9377 * Capabilities now includes as many SYSV caps I could find.
9378 * tigetflag,tigetnum,tigetstr functions added.
9379 * boolnames, boolfnames, boolcodes numnames, numfnames, numcodes,
9380   strnames, strfnames, strcodes arrays are now added.
9381 * keyname() is added.
9382 * All function keys can be defined in terminfo entries.
9383 * fixed lin_tparm.c to behave properly.
9384 * terminfo entries for vt* and xterm are included (improvements are welcome)
9385 * more automation in handling caps and keys.
9386 * included fixes from 0.6.1
9387 * added a few more missing functions.
9388 * fixed a couple of minor bugs.
9389 * updated docs JUST a little (still miles behind in documenting the newer
9390         features).
9391
9392 #### ncurses 0.6 -> ncurses 0.61 ####
9393
9394 1) Included the missing data/console.
9395
9396 2) allow attributes when drawing boxes.
9397
9398 3) corrected usage of win->_delay value.
9399
9400 4) fixed a bug in lib_getch.c. if it didn't recognize a sequence it would
9401         simply return the last character in the sequence. The correct
9402         behavior is to return the entire sequence one character at a time.
9403
9404 #### ncurses0.5 -> ncurses0.6 #### March 1, 1993 ####
9405 * removed _numchngd from struct _win_st and made appropriate changes.
9406 * rewritten kgetch() to remove problems with interaction between alarm and
9407   read(). It caused SIGSEGV every now and then.
9408 * fixed a bug that miscounted the numbers of columns when updating.
9409   (in lib_doupdate.c(ClrUpdate() -- iterate to columns not columns-1)
9410 * fixed a bug that cause the lower-right corner to be incorrect.
9411   (in lib_doupdate.c(putChar() -- check against columns not columns-1)
9412 * made resize() and cleanup() static to lib_newterm.c
9413 * added notimeout().
9414 * added timeout() define in curses.h
9415 * added more function prototypes and fixed napms.
9416 * added use_env().
9417 * moved screen size detection to lib_setup.c.
9418 * fixed newterm() to confirm to prototype.
9419 * removed SIGWINCH support as SYSV does not define its semantics.
9420 * cleaned-up lib_touch.c
9421 * added waddnstr() and relatives.
9422 * added slk_* support.
9423 * fixed a bug in wdeleteln().
9424 * added PANEL library.
9425 * modified Makefile for smoother installation.
9426 * terminfo.h is really term.h
9427
9428 #### ncurses 0.4 -> ncurses 0.5 #### Feb 14, 1993 ####
9429 * changed _win_st structure to allow support for missing functionality.
9430 * Addition of terminfo support for all KEY_*.
9431 * Support for nodelay(), timeout(), notimeout().
9432 * fixed a bug with the keypad char reading that did not return ESC until
9433   another key is pressed.
9434 * nl mapping no longer occur on output (as should be)
9435   fixed bug '\n' no causing a LF.
9436 * fixed bug that reset terminal colors regardless of whether we use color
9437   or not.
9438 * Better support for ACS (not quite complete).
9439 * fixed bug in wvline().
9440 * added curs_set().
9441 * changed from signal() to sigaction().
9442 * re-included the contents of important.patch into source.
9443
9444 #### ncurses 0.3 -> ncurses 0.4 #### Feb 3, 1993 ####
9445 * Addition of more KEY_* definitions.
9446 * Addition of function prototypes.
9447 * Addition of several missing functions.
9448 * No more crashes if screen size is undefined (use SIGWINCH handler).
9449 * added a handler to cleanup after SIGSEGV (hopefully never needed).
9450 * changed SRCDIR from /etc/term to /usr/lib/terminfo.
9451 * renamed compile/dump to tic/untic.
9452 * New scrolling code.
9453 * fixed bug that reversed the sense of nl() and nonl().
9454
9455 #### ncurses 0.2 -> ncurses 0.3 #### Jan 20, 1993 ####
9456 * more support for color and graphics see test/ for examples.
9457 * fixed various files to allow correct update after shelling out.
9458 * more fixes for updates.
9459 * no more core dumps if you don't have a terminfo entry.
9460 * support for LINES and COLUMNS environment variables.
9461 * support for SIGWINCH signal.
9462 * added a handler for SIGINT for clean exits.
9463
9464 #### ncurses 0.1 -> ncurses 0.2 #### Aug 14, 1992 ####
9465 * support for color.
9466 * support for PC graphic characters.
9467 * lib_trace.c updated to use stdarg.h and vprintf routines.
9468 * added gdc.c (Great Digital Clock) as an example of using color.
9469
9470 #### ncurses -> ncurses 0.1 #### Jul 31, 1992 ####
9471 * replacing sgtty stuff by termios stuff.
9472 * ANSIfication of some functions.
9473 * Disabling cost analysis 'cause it's incorrect.
9474 * A quick hack for a terminfo entry.
9475
9476 -- vile:txtmode: