]> ncurses.scripts.mit.edu Git - ncurses.git/blob - NEWS
ncurses 5.9 - patch 20121117
[ncurses.git] / NEWS
1 -------------------------------------------------------------------------------
2 -- Copyright (c) 1998-2011,2012 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.1974 2012/11/18 02:16:21 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 20121117
49         > fixes based on Coverity report:
50         + add missing braces around FreeAndNull in two places.
51         + various fixes in test/ncurses.c
52         + improve limit-checks in tinfo/make_hash.c, tinfo/read_entry.c
53         + correct malloc size in progs/infocmp.c
54         + guard against negative array indices in test/knight.c
55         + fix off-by-one limit check in test/color_name.h
56         + add null-pointer check in progs/tabs.c, test/bs.c, test/demo_forms.c,
57           test/inchs.c
58         + fix memory-leak in tinfo/lib_setup.c, progs/toe.c,
59           test/clip_printw.c, test/demo_menus.c
60         + delete unused windows in test/chgat.c, test/clip_printw.c,
61           test/insdelln.c, test/newdemo.c on error-return.
62
63 20121110
64         + modify configure macro CF_INCLUDE_DIRS to put $CPPFLAGS after the
65           local -I include options in case someone has set conflicting -I
66           options in $CPPFLAGS (prompted by patch for ncurses/Makefile.in by
67           Vassili Courzakis).
68         + modify the ncurses*-config scripts to eliminate relative paths from
69           the RPATH_LIST variable, e.g., "../lib" as used in installing shared
70           libraries or executables.
71
72 20121102
73         + realign these related pages:
74             curs_add_wchstr.3x
75             curs_addchstr.3x
76             curs_addstr.3x
77             curs_addwstr.3x
78           and fix a long-ago error in curs_addstr.3x which said that a -1
79           length parameter would only write as much as fit onto one line
80           (report by Reuben Thomas).
81         + remove obsolete fallback _nc_memmove() for memmove()/bcopy().
82         + remove obsolete fallback _nc_strdup() for strdup().
83         + cancel any debug-rpm in package/ncurses.spec
84         + reviewed vte-2012, reverted most of the change since it was incorrect
85           based on testing with tack -TD
86         + un-cancel the initc in vte-256color, since this was implemented
87           starting with version 0.20 in 2009 -TD
88
89 20121026
90         + improve malloc/realloc checking (prompted by discussion in Redhat
91           #866989).
92         + add ncurses test-program as "ncurses6" to the rpm- and dpkg-scripts.
93         + updated configure macros CF_GCC_VERSION and CF_WITH_PATHLIST.  The
94           first corrects pattern used for Mac OS X's customization of gcc.
95
96 20121017
97         + fix change to _nc_scroll_optimize(), which incorrectly freed memory 
98           (Redhat #866989).
99
100 20121013
101         + add vte-2012, gnome-2012, making these the defaults for vte/gnome
102           (patch by Christian Persch).
103
104 20121006
105         + improve CF_GCC_VERSION to work around Debian's customization of gcc
106           --version message.
107         + improve configure macros as done in byacc:
108           + drop 2.13 compatibility; use 2.52.xxxx version only since EMX port
109             has used that for a while.
110           + add 3rd parameter to AC_DEFINE's to allow autoheader to run, i.e.,
111             for experimental use.
112           + remove unused configure macros.
113         + modify configure script and makefiles to quiet new autoconf warning
114           for LIBS_TO_MAKE variable.
115         + modify configure script to show $PATH_SEPARATOR variable.
116         + update config.guess, config.sub
117
118 20120922
119         + modify setupterm to set its copy of TERM to "unknown" if configured
120           for the terminal driver and TERM was null or empty.
121         + modify treatment of TERM variable for MinGW port to allow explicit
122           use of the windows console driver by checking if $TERM is set to
123           "#win32con" or an abbreviation of that.
124         + undo recent change to fallback definition of vsscanf() to build with
125           older Solaris compilers (cf: 20120728).
126
127 20120908
128         + add test-screens to test/ncurses to show 256-characters at a time,
129           to help with MinGW port.
130
131 20120903
132         + simplify varargs logic in lib_printw.c; va_copy is no longer needed
133           there.
134         + modifications for MinGW port to make wide-character display usable.
135
136 20120902
137         + regenerate configure script (report by Sven Joachim, cf: 20120901).
138
139 20120901
140         + add a null-pointer check in _nc_flush (cf: 20120825).
141         + fix a case in _nc_scroll_optimize() where the _oldnums_list array
142           might not be allocated.
143         + improve comparisons in configure.in for unset shell variables.
144
145 20120826
146         + increase size of ncurses' output-buffer, in case of very small
147           initial screen-sizes.
148         + fix evaluation of TERMINFO and TERMINFO_DIRS default values as needed
149           after changes to use --datarootdir (reports by Gabriele Balducci,
150           Roumen Petrov).
151
152 20120825
153         + change output buffering scheme, using buffer maintained by ncurses
154           rather than stdio, to avoid problems with SIGTSTP handling (report
155           by Brian Bloniarz).
156
157 20120811
158         + update autoconf patch to 2.52.20120811, adding --datarootdir
159           (prompted by discussion with Erwin Waterlander).
160         + improve description of --enable-reentrant option in README and the
161           INSTALL file.
162         + add nsterm-256color, make this the default nsterm -TD
163         + remove bw from nsterm-bce, per testing with tack -TD
164
165 20120804
166         + update test/configure, adding check for tinfo library.
167         + improve limit-checks for the getch fifo (report by Werner Fink).
168         + fix a remaining mismatch between $with_echo and the symbols updated
169           for CF_DISABLE_ECHO affecting parameters for mk-2nd.awk (report by
170           Sven Joachim, cf:  20120317).
171         + modify followup check for pkg-config's library directory in the
172           --enable-pc-files option to validate syntax (report by Sven Joachim,
173           cf: 20110716).
174
175 20120728
176         + correct path for ncurses_mingw.h in include/headers, in case build
177           is done outside source-tree (patch by Roumen Petrov).
178         + modify some older xterm entries to align with xterm source -TD
179         + separate "xterm-old" alias from "xterm-r6" -TD
180         + add E3 extended capability to xterm-basic and putty -TD
181         + parenthesize parameters of other macros in curses.h -TD
182         + parenthesize parameter of COLOR_PAIR and PAIR_NUMBER in curses.h
183           in case it happens to be a comma-expression, etc.  (patch by Nick
184           Black).
185
186 20120721
187         + improved form_request_by_name() and menu_request_by_name().
188         + eliminate two fixed-size buffers in toe.c
189         + extend use_tioctl() to have expected behavior when use_env(FALSE) and
190           use_tioctl(TRUE) are called.
191         + modify ncurses test-program, adding -E and -T options to demonstrate
192           use_env() versus use_tioctl().
193
194 20120714
195         + add use_tioctl() function (adapted from patch by Werner Fink,
196           Novell #769788):
197
198 20120707
199         + add ncurses_mingw.h to installed headers (prompted by patch by
200           Juergen Pfeifer).
201         + clarify return-codes from wgetch() in response to SIGWINCH (prompted
202           by Novell #769788).
203         + modify resizeterm() to always push a KEY_RESIZE onto the fifo, even
204           if screensize is unchanged.  Modify _nc_update_screensize() to push a
205           KEY_RESIZE if there was a SIGWINCH, even if it does not call
206           resizeterm().  These changes eliminate the case where a SIGWINCH is
207           received, but ERR returned from wgetch or wgetnstr because the screen
208           dimensions did not change (Novell #769788).
209
210 20120630
211         + add --enable-interop to sample package scripts (suggested by Juergen
212           Pfeifer).
213         + update CF_PATH_SYNTAX macro, from mawk changes.
214         + modify mk-0th.awk to allow for generating llib-ltic, etc., though
215           some work is needed on cproto to work with lib_gen.c to update
216           llib-lncurses.
217         + remove redundant getenv() cal in database-iterator leftover from
218           cleanup in 20120622 changes (report by Sven Joachim).
219
220 20120622
221         + add -d, -e and -q options to test/demo_terminfo and test/demo_termcap
222         + fix caching of environment variables in database-iterator (patch by
223           Philippe Troin, Redhat #831366).
224
225 20120616
226         + add configure check to distinguish clang from gcc to eliminate
227           warnings about unused command-line parameters when compiler warnings
228           are enabled.
229         + improve behavior when updating terminfo entries which are hardlinked
230           by allowing for the possibility that an alias has been repurposed to
231           a new primary name.
232         + fix some strict compiler warnings based on package scripts.
233         + further fixes for configure check for working poll (Debian #676461).
234
235 20120608
236         + fix an uninitialized variable in -c/-n logic for infocmp changes
237           (cf: 20120526).
238         + corrected fix for building c++ binding with clang 3.0 (report/patch
239           by Richard Yao, Gentoo #417613, cf: 20110409)
240         + correct configure check for working poll, fixing the case where stdin
241           is redirected, e.g., in rpm/dpkg builds (Debian #676461).
242         + add rpm- and dpkg-scripts, to test those build-environments.
243           The resulting packages are used only for testing.
244
245 20120602
246         + add kdch1 aka "Remove" to vt220 and vt220-8 entries -TD
247         + add kdch1, etc., to qvt108 -TD
248         + add dl1/il1 to some entries based on dl/il values -TD
249         + add dl to simpleterm -TD
250         + add consistency-checks in tic for insert-line vs delete-line
251           controls, and insert/delete-char keys
252         + correct no-leaks logic in infocmp when doing comparisons, fixing
253           duplicate free of entries given via the command-line, and freeing
254           entries loaded from the last-but-one of files specified on the
255           command-line.
256         + add kdch1 to wsvt25 entry from NetBSD CVS (reported by David Lord,
257           analysis by Martin Husemann).
258         + add cnorm/civis to wsvt25 entry from NetBSD CVS (report/analysis by
259           Onno van der Linden).
260
261 20120526
262         + extend -c and -n options of infocmp to allow comparing more than two
263           entries.
264         + correct check in infocmp for number of terminal names when more than
265           two are given.
266         + correct typo in curs_threads.3x (report by Yanhui Shen on
267           freebsd-hackers mailing list).
268
269 20120512
270         + corrected 'op' for bterm (report by Samuel Thibault) -TD
271         + modify test/background.c to demonstrate a background character
272           holding a colored ACS_HLINE.  The behavior differs from SVr4 due to
273           the thick- and double-line extension (cf: 20091003).
274         + modify handling of acs characters in PutAttrChar to avoid mapping an
275           unmapped character to a space with A_ALTCHARSET set.
276         + rewrite vt520 entry based on vt420 -TD
277
278 20120505
279         + remove p6 (bold) from opus3n1+ for consistency -TD
280         + remove acs stuff from env230 per clues in Ingres termcap -TD
281         + modify env230 sgr/sgr0 to match other capabilities -TD
282         + modify smacs/rmacs in bq300-8 to match sgr/sgr0 -TD
283         + make sgr for dku7202 agree with other caps -TD
284         + make sgr for ibmpc agree with other caps -TD
285         + make sgr for tek4107 agree with other caps -TD
286         + make sgr for ndr9500 agree with other caps -TD
287         + make sgr for sco-ansi agree with other caps -TD
288         + make sgr for d410 agree with other caps -TD
289         + make sgr for d210 agree with other caps -TD
290         + make sgr for d470c, d470c-7b agree with other caps -TD
291         + remove redundant AC_DEFINE for NDEBUG versus Makefile definition.
292         + fix a back-link in _nc_delink_entry(), which is needed if ncurses is
293           configured with --enable-termcap and --disable-getcap.
294
295 20120428
296         + fix some inconsistencies between vt320/vt420, e.g., cnorm/civis -TD
297         + add eslok flag to dec+sl -TD
298         + dec+sl applies to vt320 and up -TD
299         + drop wsl width from xterm+sl -TD
300         + reuse xterm+sl in putty and nsca-m -TD
301         + add ansi+tabs to vt520 -TD
302         + add ansi+enq to vt220-vt520 -TD
303         + fix a compiler warning in example in ncurses-intro.doc (Paul Waring).
304         + added paragraph in keyname manpage telling how extended capabilities
305           are interpreted as key definitions.
306         + modify tic's check of conflicting key definitions to include extended
307           capability strings in addition to the existing check on predefined
308           keys.
309
310 20120421
311         + improve cleanup of temporary files in tic using atexit().
312         + add msgr to vt420, similar DEC vtXXX entries -TD
313         + add several missing vt420 capabilities from vt220 -TD
314         + factor out ansi+pp from several entries -TD
315         + change xterm+sl and xterm+sl-twm to include only the status-line
316           capabilities and not "use=xterm", making them more generally useful
317           as building-blocks -TD
318         + add dec+sl building block, as example -TD
319
320 20120414
321         + add XT to some terminfo entries to improve usefulness for other
322           applications than screen, which would like to pretend that xterm's
323           title is a status-line.  -TD
324         + change use-clauses in ansi-mtabs, hp2626, and hp2622 based on review
325           of ordering and overrides -TD
326         + add consistency check in tic for screen's "XT" capability.
327         + add section in terminfo.src summarizing the user-defined capabilities
328           used in that file -TD
329
330 20120407
331         + fix an inconsistency between tic/infocmp "-x" option; tic omits all
332           non-standard capabilities, while infocmp was ignoring only the user
333           definable capabilities.
334         + improve special case in tic parsing of description to allow it to be
335           followed by terminfo capabilities.  Previously the description had to
336           be the last field on an input line to allow tic to distinguish
337           between termcap and terminfo format while still allowing commas to be
338           embedded in the description.
339         + correct variable name in gen_edit.sh which broke configurability of
340           the --with-xterm-kbs option.
341         + revert 2011-07-16 change to "linux" alias, return to "linux2.2" -TD
342         + further amend 20110910 change, providing for configure-script
343           override of the "linux" terminfo entry to install and changing the
344           default for that to "linux2.2" (Debian #665959).
345
346 20120331
347         + update Ada95/configure to use CF_DISABLE_ECHO (cf: 20120317).
348         + correct order of use-clauses in st-256color -TD
349         + modify configure script to look for gnatgcc if the Ada95 binding
350           is built, in preference to the default gcc/cc (suggested by
351           Nicolas Boulenguez).
352         + modify configure script to ensure that the same -On option used for
353           the C compiler in CFLAGS is used for ADAFLAGS rather than simply
354           using "-O3" (suggested by Nicolas Boulenguez)
355
356 20120324
357         + amend an old fix so that next_char() exits properly for empty files,
358           e.g., from reading /dev/null (cf: 20080804).
359         + modify tic so that it can read from the standard input, or from
360           a character device.  Because tic uses seek's, this requires writing
361           the data to a temporary file first (prompted by remark by Sven
362           Joachim) (cf: 20000923).
363
364 20120317
365         + correct a check made in lib_napms.c, so that terminfo applications
366           can again use napms() (cf: 20110604).
367         + add a note in tic.h regarding required casts for ABSENT_BOOLEAN
368           (cf: 20040327).
369         + correct scripting for --disable-echo option in test/configure.
370         + amend check for missing c++ compiler to work when no error is
371           reported, and no variables set (cf: 20021206).
372         + add/use configure macro CF_DISABLE_ECHO.
373
374 20120310
375         + fix some strict compiler warnings for abi6 and 64-bits.
376         + use begin_va_copy/end_va_copy macros in lib_printw.c (cf: 20120303).
377         + improve a limit-check in infocmp.c (Werner Fink):
378
379 20120303
380         + minor tidying of terminfo.tail, clarify reason for limitation
381           regarding mapping of \0 to \200
382         + minor improvement to _nc_copy_termtype(), using memcpy to replace
383           loops.
384         + fix no-leaks checking in test/demo_termcap.c to account for multiple
385           calls to setupterm().
386         + modified the libgpm change to show previous load as a problem in the
387           debug-trace.
388         > merge some patches from OpenSUSE rpm (Werner Fink):
389         + ncurses-5.7-printw.dif, fixes for varargs handling in lib_printw.c
390         + ncurses-5.7-gpm.dif, do not dlopen libgpm if already loaded by
391           runtime linker
392         + ncurses-5.6-fallback.dif, do not free arrays and strings from static
393           fallback entries
394
395 20120228
396         + fix breakage in tic/infocmp from 20120225 (report by Werner Fink).
397
398 20120225
399         + modify configure script to allow creating dll's for MinGW when
400           cross-compiling.
401         + add --enable-string-hacks option to control whether strlcat and
402           strlcpy may be used.  The same issue applies to OpenBSD's warnings
403           about snprintf, noting that this function is weakly standardized.
404         + add configure checks for strlcat, strlcpy and snprintf, to help
405           reduce bogus warnings with OpenBSD builds.
406         + build-fix for OpenBSD 4.9 to supply consistent intptr_t declaration
407           (cf:20111231)
408         + update config.guess, config.sub
409
410 20120218
411         + correct CF_ETIP_DEFINES configure macro, making it exit properly on
412           the first success (patch by Pierre Labastie).
413         + improve configure macro CF_MKSTEMP by moving existence-check for
414           mkstemp out of the AC_TRY_RUN, to help with cross-compiles.
415         + improve configure macro CF_FUNC_POLL from luit changes to detect
416           broken implementations, e.g., with Mac OS X.
417         + add configure option --with-tparm-arg
418         + build-fix for MinGW cross-compiling, so that make_hash does not
419           depend on TTY definition (cf: 20111008).
420
421 20120211
422         + make sgr for xterm-pcolor agree with other caps -TD
423         + make sgr for att5425 agree with other caps -TD
424         + make sgr for att630 agree with other caps -TD
425         + make sgr for linux entries agree with other caps -TD
426         + make sgr for tvi9065 agree with other caps -TD
427         + make sgr for ncr260vt200an agree with other caps -TD
428         + make sgr for ncr160vt100pp agree with other caps -TD
429         + make sgr for ncr260vt300an agree with other caps -TD
430         + make sgr for aaa-60-dec-rv, aaa+dec agree with other caps -TD
431         + make sgr for cygwin, cygwinDBG agree with other caps -TD
432         + add configure option --with-xterm-kbs to simplify configuration for
433           Linux versus most other systems.
434
435 20120204
436         + improved tic -D option, avoid making target directory and provide
437           better diagnostics.
438
439 20120128
440         + add mach-gnu (Debian #614316, patch by Samuel Thibault)
441         + add mach-gnu-color, tweaks to mach-gnu terminfo -TD
442         + make sgr for sun-color agree with smso -TD
443         + make sgr for prism9 agree with other caps -TD
444         + make sgr for icl6404 agree with other caps -TD
445         + make sgr for ofcons agree with other caps -TD
446         + make sgr for att5410v1, att4415, att620 agree with other caps -TD
447         + make sgr for aaa-unk, aaa-rv agree with other caps -TD
448         + make sgr for avt-ns agree with other caps -TD
449         + amend fix intended to separate fixups for acsc to allow "tic -cv" to
450           give verbose warnings (cf:  20110730). 
451         + modify misc/gen-edit.sh to make the location of the tabset directory
452           consistent with misc/Makefile.in, i.e., using ${datadir}/tabset
453           (Debian #653435, patch by Sven Joachim).
454
455 20120121
456         + add --with-lib-prefix option to allow configuring for old/new flavors
457           of OS/2 EMX.
458         + modify check for gnat version to allow for year, as used in FreeBSD
459           port.
460         + modify check_existence() in db_iterator.c to simply check if the
461           path is a directory or file, according to the need.  Checking for
462           directory size also gives no usable result with OS/2 (cf: 20120107).
463         + support OS/2 kLIBC (patch by KO Myung-Han).
464
465 20120114
466         + several improvements to test/movewindow.c (prompted by discussion on
467           Linux Mint forum):
468           + modify movement commands to make them continuous
469           + rewrote the test for mvderwin
470           + rewrote the test for recursive mvwin
471         + split-out reusable CF_WITH_NCURSES_ETC macro in test/configure.in
472         + updated configure macro CF_XOPEN_SOURCE, build-fixes for Mac OS X
473           and OpenBSD.
474         + regenerated html manpages.
475
476 20120107
477         + various improvments for MinGW (Juergen Pfeifer):
478           + modify stat() calls to ignore the st_size member
479           + drop mk-dlls.sh script.
480           + change recommended regular expression library.
481           + modify rain.c to allow for threaded configuraton.
482           + modify tset.c to allow for case when size-change logic is not used. 
483
484 20111231
485         + modify toe's report when -a and -s options are combined, to add
486           a column showing which entries belong to a given database.
487         + add -s option to toe, to sort its output.
488         + modify progs/toe.c, simplifying use of db-iterator results to use
489           caching improvements from 20111001 and 20111126.
490         + correct generation of pc-files when ticlib or termlib options are
491           given to rename the corresponding tic- or tinfo-libraries (report
492           by Sven Joachim).
493
494 20111224
495         + document a portability issue with tput, i.e., that scripts which work
496           with ncurses may fail in other implementations that do no parameter
497           analysis.
498         + add putty-sco entry -TD
499
500 20111217
501         + review/fix places in manpages where --program-prefix configure option
502           was not being used.
503         + add -D option to infocmp, to show the database locations that it
504           could use.
505         + fix build for the special case where term-driver, ticlib and termlib
506           are all enabled.  The terminal driver depends on a few features in
507           the base ncurses library, so tic's dependencies include both ncurses
508           and termlib.
509         + fix build work for term-driver when --enable-wgetch-events option is
510           enabled.
511         + use <stdint.h> types to fix some questionable casts to void*.
512
513 20111210
514         + modify configure script to check if thread library provides
515           pthread_mutexattr_settype(), e.g., not provided by Solaris 2.6
516         + modify configure script to suppress check to define _XOPEN_SOURCE
517           for IRIX64, since its header files have a conflict versus
518           _SGI_SOURCE.
519         + modify configure script to add ".pc" files for tic- and
520           tinfo-libraries, which were omitted in recent change (cf: 20111126).
521         + fix inconsistent checks on $PKG_CONFIG variable in configure script.
522
523 20111203
524         + modify configure-check for etip.h dependencies, supplying a temporary
525           copy of ncurses_dll.h since it is a generated file (prompted by
526           Debian #646977).
527         + modify CF_CPP_PARAM_INIT "main" function to work with current C++.
528
529 20111126
530         + correct database iterator's check for duplicate entries
531           (cf: 20111001).
532         + modify database iterator to ignore $TERMCAP when it is not an
533           absolute pathname.
534         + add -D option to tic, to show the database locations that it could
535           use.
536         + improve description of database locations in tic manpage.
537         + modify the configure script to generate a list of the ".pc" files to
538           generate, rather than deriving the list from the libraries which have
539           been built (patch by Mike Frysinger).
540         + use AC_CHECK_TOOLS in preference to AC_PATH_PROGS when searching for
541           ncurses*-config, e.g., in Ada95/configure and test/configure (adapted
542           from patch by Mike Frysinger).
543
544 20111119
545         + remove obsolete/conflicting fallback definition for _POSIX_SOURCE
546           from curses.priv.h, fixing a regression with IRIX64 and Tru64
547           (cf: 20110416)
548         + modify _nc_tic_dir() to ensure that its return-value is nonnull,
549           i.e., the database iterator was not initialized.  This case is needed
550           to when tic is translating to termcap, rather than loading the
551           database (cf:  20111001).
552
553 20111112
554         + add pccon entries for OpenBSD console (Alexei Malinin).
555         + build-fix for OpenBSD 4.9 with gcc 4.2.1, setting _XOPEN_SOURCE to
556           600 to work around inconsistent ifdef'ing of wcstof between C and
557           C++ header files.
558         + modify capconvert script to accept more than exact match on "xterm",
559           e.g., the "xterm-*" variants, to exclude from the conversion (patch
560           by Robert Millan).
561         + add -lc_r as alternative for -lpthread, allows build of threaded code
562           in older FreeBSD machines.
563         + build-fix for MirBSD, which fails when either _XOPEN_SOURCE or
564           _POSIX_SOURCE are defined.
565         + fix a typo misc/Makefile.in, used in uninstalling pc-files.
566
567 20111030
568         + modify make_db_path() to allow creating "terminfo.db" in the same
569           directory as an existing "terminfo" directory.  This fixes a case
570           where switching between hashed/filesystem databases would cause the
571           new hashed database to be installed in the next best location -
572           root's home directory.
573         + add variable cf_cv_prog_gnat_correct to those passed to
574           config.status, fixing a problem with Ada95 builds (cf: 20111022).
575         + change feature test from _XPG5 to _XOPEN_SOURCE in two places, to
576           accommodate broken implementations for _XPG6.
577         + eliminate usage of NULL symbol from etip.h, to reduce header
578           interdependencies.
579         + add configure check to decide when to add _XOPEN_SOURCE define to
580           compiler options, i.e., for Solaris 10 and later (cf: 20100403).
581           This is a workaround for gcc 4.6, which fails to build the c++
582           binding if that symbol is defined by the application, due to
583           incorrectly combining the corresponding feature test macros
584           (report by Peter Kruse).
585
586 20111022
587         + correct logic for discarding mouse events, retaining the partial
588           events used to build up click, double-click, etc, until needed
589           (cf: 20110917).
590         + fix configure script to avoid creating unused Ada95 makefile when
591           gnat does not work.
592         + cleanup width-related gcc 3.4.3 warnings for 64-bit platform, for the
593           internal functions of libncurses.  The external interface of courses
594           uses bool, which still produces these warnings.
595
596 20111015
597         + improve description of --disable-tic-depends option to make it
598           clear that it may be useful whether or not the --with-termlib
599           option is also given (report by Sven Joachim).
600         + amend termcap equivalent for set_pglen_inch to use the X/Open
601           "YI" rather than the obsolete Solaris 2.5 "sL" (cf: 990109).
602         + improve manpage for tgetent differences from termcap library.
603
604 20111008
605         + moved static data from db_iterator.c to lib_data.c
606         + modify db_iterator.c for memory-leak checking, fix one leak.
607         + modify misc/gen-pkgconfig.in to use Requires.private for the parts
608           of ncurses rather than Requires, as well as Libs.private for the
609           other library dependencies (prompted by Debian #644728).
610
611 20111001
612         + modify tic "-K" option to only set the strict-flag rather than force
613           source-output.  That allows the same flag to control the parser for
614           input and output of termcap source.
615         + modify _nc_getent() to ignore backslash at the end of a comment line,
616           making it consistent with ncurses' parser.
617         + restore a special-case check for directory needed to make termcap
618           text files load as if they were databases (cf: 20110924).
619         + modify tic's resolution/collision checking to attempt to remove the
620           conflicting alias from the second entry in the pair, which is
621           normally following in the source file.  Also improved the warning
622           message to make it simpler to see which alias is the problem.
623         + improve performance of the database iterator by caching search-list.
624
625 20110925
626         + add a missing "else" in changes to _nc_read_tic_entry().
627
628 20110924
629         + modify _nc_read_tic_entry() so that hashed-database is checked before
630           filesystem.
631         + updated CF_CURSES_LIBS check in test/configure script.
632         + modify configure script and makefiles to split TIC_ARGS and
633           TINFO_ARGS into pieces corresponding to LDFLAGS and LIBS variables,
634           to help separate searches for tic- and tinfo-libraries (patch by Nick
635           Alcock aka "Nix").
636         + build-fix for lib_mouse.c changes (cf: 20110917).
637
638 20110917
639         + fix compiler warning for clang 2.9
640         + improve merging of mouse events (integrated patch by Damien
641           Guibouret).
642         + correct mask-check used in lib_mouse for wheel mouse buttons 4/5
643           (patch by Damien Guibouret).
644
645 20110910
646         + modify misc/gen_edit.sh to select a "linux" entry which works with
647           the current kernel rather than assuming it is always "linux3.0"
648           (cf: 20110716).
649         + revert a change to getmouse() which had the undesirable side-effect
650           of suppressing button-release events (report by Damien Guibouret,
651           cf: 20100102).
652         + add xterm+kbs fragment from xterm #272 -TD
653         + add configure option --with-pkg-config-libdir to provide control over
654           the actual directory into which pc-files are installed, do not use
655           the pkg-config environment variables (discussion with Frederic L W
656           Meunier).
657         + add link to mailing-list archive in announce.html.in, as done in
658           FAQ (prompted by question by Andrius Bentkus).
659         + improve manpage install by adjusting the "#include" examples to
660           show the ncurses-subdirectory used when --disable-overwrite option
661           is used.
662         + install an alias for "curses" to the ncurses manpage, tied to the
663           --with-curses-h configure option (suggested by Reuben Thomas).
664
665 20110903
666         + propagate error-returns from wresize, i.e., the internal
667           increase_size and decrease_size functions through resize_term (report
668           by Tim van der Molen, cf:  20020713).
669         + fix typo in tset manpage (patch by Sven Joachim).
670
671 20110820
672         + add a check to ensure that termcap files which might have "^?" do
673           not use the terminfo interpretation as "\177".
674         + minor cleanup of X-terminal emulator section of terminfo.src -TD
675         + add terminator entry -TD
676         + add simpleterm entry -TD
677         + improve wattr_get macros by ensuring that if the window pointer is
678           null, then the attribute and color values returned will be zero
679           (cf: 20110528).
680
681 20110813
682         + add substitution for $RPATH_LIST to misc/ncurses-config.in
683         + improve performance of tic with hashed-database by caching the
684           database connection, using atexit() to cleanup.
685         + modify treatment of 2-character aliases at the beginning of termcap
686           entries so they are not counted in use-resolution, since these are
687           guaranteed to be unique.  Also ignore these aliases when reporting
688           the primary name of the entry (cf: 20040501)
689         + double-check gn (generic) flag in terminal descriptions to
690           accommodate old/buggy termcap databases which misused that feature.
691         + minor fixes to _nc_tgetent(), ensure buffer is initialized even on
692           error-return.
693
694 20110807
695         + improve rpath fix from 20110730 by ensuring that the new $RPATH_LIST
696           variable is defined in the makefiles which use it.
697         + build-fix for DragonFlyBSD's pkgsrc in test/configure script.
698         + build-fixes for NetBSD 5.1 with termcap support enabled.
699         + corrected k9 in dg460-ansi, add other features based on manuals -TD
700         + improve trimming of whitespace at the end of terminfo/termcap output
701           from tic/infocmp.
702         + when writing termcap source, ensure that colons in the description
703           field are translated to a non-delimiter, i.e., "=".
704         + add "-0" option to tic/infocmp, to make the termcap/terminfo source
705           use a single line.
706         + add a null-pointer check when handling the $CC variable.
707
708 20110730
709         + modify configure script and makefiles in c++ and progs to allow the
710           directory used for rpath option to be overridden, e.g., to work
711           around updates to the variables used by tic during an install.
712         + add -K option to tic/infocmp, to provide stricter BSD-compatibility
713           for termcap output.
714         + add _nc_strict_bsd variable in tic library which controls the
715           "strict" BSD termcap compatibility from 20110723, plus these
716           features:
717           + allow escapes such as "\8" and "\9" when reading termcap
718           + disallow "\a", "\e", "\l", "\s" and "\:" escapes when reading
719             termcap files, passing through "a", "e", etc.
720           + expand "\:" as "\072" on output.
721         + modify _nc_get_token() to reset the token's string value in case
722           there is a string-typed token lacking the "=" marker.
723         + fix a few memory leaks in _nc_tgetent.
724         + fix a few places where reading from a termcap file could refer to
725           freed memory.
726         + add an overflow check when converting terminfo/termcap numeric
727           values, since terminfo stores those in a short, and they must be
728           positive.
729         + correct internal variables used for translating to termcap "%>"
730           feature, and translating from termcap %B to terminfo, needed by
731           tctest (cf: 19991211).
732         + amend a minor fix to acsc when loading a termcap file to separate it
733           from warnings needed for tic (cf: 20040710)
734         + modify logic in _nc_read_entry() and _nc_read_tic_entry() to allow
735           a termcap file to be handled via TERMINFO_DIRS.
736         + modify _nc_infotocap() to include non-mandatory padding when
737           translating to termcap.
738         + modify _nc_read_termcap_entry(), passing a flag in the case where
739           getcap is used, to reduce interactive warning messages.
740
741 20110723
742         + add a check in start_color() to limit color-pairs to 256 when
743           extended colors are not supported (patch by David Benjamin).
744         + modify setcchar to omit no-longer-needed OR'ing of color pair in
745           the SetAttr() macro (patch by David Benjamin).
746         + add kich1 to sun terminfo entry (Yuri Pankov)
747         + use bold rather than reverse for smso in sun-color terminfo entry
748           (Yuri Pankov).
749         + improve generation of termcap using tic/infocmp -C option, e.g.,
750           to correspond with 4.2BSD (prompted by discussion with Yuri Pankov
751           regarding Schilling's test program):
752           + translate %02 and %03 to %2 and %3 respectively.
753           + suppress string capabilities which use %s, not supported by tgoto
754           + use \040 rather than \s
755           + expand null characters as \200 rather than \0
756         + modify configure script to support shared libraries for DragonFlyBSD.
757
758 20110716
759         + replace an assert() in _nc_Free_Argument() with a regular null
760           pointer check (report/analysis by Franjo Ivancic).
761         + modify configure --enable-pc-files option to take into account the
762           PKG_CONFIG_PATH variable (report by Frederic L W Meunier).
763         + add/use xterm+tmux chunk from xterm #271 -TD
764         + resync xterm-new entry from xterm #271 -TD
765         + add E3 extended capability to linux-basic (Miroslav Lichvar)
766         + add linux2.2, linux2.6, linux3.0 entries to give context for E3 -TD
767         + add SI/SO change to linux2.6 entry (Debian #515609) -TD
768         + fix inconsistent tabset path in pcmw (Todd C. Miller).
769         + remove a backslash which continued comment, obscuring altos3
770           definition with OpenBSD toolset (Nicholas Marriott).
771
772 20110702
773         + add workaround from xterm #271 changes to ensure that compiler flags
774           are not used in the $CC variable.
775         + improve support for shared libraries, tested with AIX 5.3, 6.1 and
776           7.1 with both gcc 4.2.4 and cc.
777         + modify configure checks for AIX to include release 7.x
778         + add loader flags/libraries to libtool options so that dynamic loading
779           works properly, adapted from ncurses-5.7-ldflags-with-libtool.patch
780           at gentoo prefix repository (patch by Michael Haubenwallner).
781
782 20110626
783         + move include of nc_termios.h out of term_entry.h, since the latter
784           is installed, e.g., for tack while the former is not (report by
785           Sven Joachim).
786
787 20110625
788         + improve cleanup() function in lib_tstp.c, using _exit() rather than
789           exit() and checking for SIGTERM rather than SIGQUIT (prompted by
790           comments forwarded by Nicholas Marriott).
791         + reduce name pollution from term.h, moving fallback #define's for
792           tcgetattr(), etc., to new private header nc_termios.h (report by
793           Sergio NNX).
794         + two minor fixes for tracing (patch by Vassili Courzakis).
795         + improve trace initialization by starting it in use_env() and
796           ripoffline().
797         + review old email, add details for some changelog entries.
798
799 20110611
800         + update minix entry to minix 3.2 (Thomas Cort).
801         + fix a strict compiler warning in change to wattr_get (cf: 20110528).
802
803 20110604
804         + fixes for MirBSD port:
805           + set default prefix to /usr.
806           + add support for shared libraries in configure script.
807           + use S_ISREG and S_ISDIR consistently, with fallback definitions.
808         + add a few more checks based on ncurses/link_test.
809         + modify MKlib_gen.sh to handle sp-funcs renaming of NCURSES_OUTC type.
810
811 20110528
812         + add case to CF_SHARED_OPTS for Interix (patch by Markus Duft).
813         + used ncurses/link_test to check for behavior when the terminal has
814           not been initialized and when an application passes null pointers
815           to the library.  Added checks to cover this (prompted by Redhat
816           #707344).
817         + modify MKlib_gen.sh to make its main() function call each function
818           with zero parameters, to help find inconsistent checking for null
819           pointers, etc.
820
821 20110521
822         + fix warnings from clang 2.7 "--analyze"
823
824 20110514
825         + compiler-warning fixes in panel and progs.
826         + modify CF_PKG_CONFIG macro, from changes to tin -TD
827         + modify CF_CURSES_FUNCS configure macro, used in test directory
828           configure script:
829           + work around (non-optimizer) bug in gcc 4.2.1 which caused
830             test-expression to be omitted from executable.
831           + force the linker to see a link-time expression of a symbol, to
832             help work around weak-symbol issues.
833
834 20110507
835         + update discussion of MKfallback.sh script in INSTALL; normally the
836           script is used automatically via the configured makefiles.  However
837           there are still occasions when it might be used directly by packagers
838           (report by Gunter Schaffler).
839         + modify misc/ncurses-config.in to omit the "-L" option from the
840           "--libs" output if the library directory is /usr/lib.
841         + change order of tests for curses.h versus ncurses.h headers in the
842           configure scripts for Ada95 and test-directories, to look for
843           ncurses.h, from fixes to tin -TD
844         + modify ncurses/tinfo/access.c to account for Tandem's root uid
845           (report by Joachim Schmitz).
846
847 20110430
848         + modify rules in Ada95/src/Makefile.in to ensure that the PIC option
849           is not used when building a static library (report by Nicolas
850           Boulenguez):
851         + Ada95 build-fix for big-endian architectures such as sparc.  This
852           undoes one of the fixes from 20110319, which added an "Unused" member
853           to representation clauses, replacing that with pragmas to suppress
854           warnings about unused bits (patch by Nicolas Boulenguez):
855
856 20110423
857         + add check in test/configure for use_window, use_screen.
858         + add configure-checks for getopt's variables, which may be declared
859           as different types on some Unix systems.
860         + add check in test/configure for some legacy curses types of the
861           function pointer passed to tputs().
862         + modify init_pair() to accept -1's for color value after
863           assume_default_colors() has been called (Debian #337095).
864         + modify test/background.c, adding commmand-line options to demonstrate
865           assume_default_colors() and use_default_colors().
866
867 20110416
868         + modify configure script/source-code to only define _POSIX_SOURCE if
869           the checks for sigaction and/or termios fail, and if _POSIX_C_SOURCE
870           and _XOPEN_SOURCE are undefined (report by Valentin Ochs).
871         + update config.guess, config.sub
872
873 20110409
874         + fixes to build c++ binding with clang 3.0 (patch by Alexander
875           Kolesen).
876         + add check for unctrl.h in test/configure, to work around breakage in
877           some ncurses packages.
878         + add "--disable-widec" option to test/configure script.
879         + add "--with-curses-colr" and "--with-curses-5lib" options to the
880           test/configure script to address testing with very old machines.
881
882 20110404 5.9 release for upload to ftp.gnu.org
883
884 20110402
885         + various build-fixes for the rpm/dpkg scripts.
886         + add "--enable-rpath-link" option to Ada95/configure, to allow
887           packages to suppress the rpath feature which is normally used for
888           the in-tree build of sample programs.
889         + corrected definition of libdir variable in Ada95/src/Makefile.in,
890           needed for rpm script.
891         + add "--with-shared" option to Ada95/configure script, to allow
892           making the C-language parts of the binding use appropriate compiler
893           options if building a shared library with gnat.
894
895 20110329
896         > portability fixes for Ada95 binding:
897         + add configure check to ensure that SIGINT works with gnat.  This is
898           needed for the "rain" sample program.  If SIGINT does not work, omit
899           that sample program.
900         + correct typo in check of $PKG_CONFIG variable in Ada95/configure
901         + add ncurses_compat.c, to supply functions used in the Ada95 binding
902           which were added in 5.7 and later.
903         + modify sed expression in CF_NCURSES_ADDON to eliminate a dependency
904           upon GNU sed.
905
906 20110326
907         + add special check in Ada95/configure script for ncurses6 reentrant
908           code.
909         + regen Ada html documentation.
910         + build-fix for Ada shared libraries versus the varargs workaround.
911         + add rpm and dpkg scripts for Ada95 and test directories, for test
912           builds.
913         + update test/configure macros CF_CURSES_LIBS, CF_XOPEN_SOURCE and
914           CF_X_ATHENA_LIBS.
915         + add configure check to determine if gnat's project feature supports
916           libraries, i.e., collections of .ali files.
917         + make all dereferences in Ada95 samples explicit.
918         + fix typo in comment in lib_add_wch.c (patch by Petr Pavlu).
919         + add configure check for, ifdef's for math.h which is in a separate
920           package on Solaris and potentially not installed (report by Petr
921           Pavlu).
922         > fixes for Ada95 binding (Nicolas Boulenguez):
923         + improve type-checking in Ada95 by eliminating a few warning-suppress
924           pragmas.
925         + suppress unreferenced warnings.
926         + make all dereferences in binding explicit.
927
928 20110319
929         + regen Ada html documentation.
930         + change order of -I options from ncurses*-config script when the
931           --disable-overwrite option was used, so that the subdirectory include
932           is listed first.
933         + modify the make-tar.sh scripts to add a MANIFEST and NEWS file.
934         + modify configure script to provide value for HTML_DIR in
935           Ada95/gen/Makefile.in, which depends on whether the Ada95 binding is
936           distributed separately (report by Nicolas Boulenguez).
937         + modify configure script to add "-g" and/or "-O3" to ADAFLAGS if the
938           CFLAGS for the build has these options.
939         + amend change from 20070324, to not add 1 to the result of getmaxx
940           and getmaxy in the Ada binding (report by Nicolas Boulenguez for
941           thread in comp.lang.ada).
942         + build-fix Ada95/samples for gnat 4.5
943         + spelling fixes for Ada95/samples/explain.txt
944         > fixes for Ada95 binding (Nicolas Boulenguez):
945         + add item in Trace_Attribute_Set corresponding to TRACE_ATTRS.
946         + add workaround for binding to set_field_type(), which uses varargs.
947           The original binding from 990220 relied on the prevalent
948           implementation of varargs which did not support or need va_copy().
949         + add dependency on gen/Makefile.in needed for *-panels.ads
950         + add Library_Options to library.gpr
951         + add Languages to library.gpr, for gprbuild
952
953 20110307
954         + revert changes to limit-checks from 20110122 (Debian #616711).
955         > minor type-cleanup of Ada95 binding (Nicolas Boulenguez):
956         + corrected a minor sign error in a field of Low_Level_Field_Type, to
957           conform to form.h.
958         + replaced C_Int by Curses_Bool as return type for some callbacks, see
959           fieldtype(3FORM).
960         + modify samples/sample-explain.adb to provide explicit message when
961           explain.txt is not found.
962
963 20110305
964         + improve makefiles for Ada95 tree (patch by Nicolas Boulenguez).
965         + fix an off-by-one error in _nc_slk_initialize() from 20100605 fixes
966           for compiler warnings (report by Nicolas Boulenguez).
967         + modify Ada95/gen/gen.c to declare unused bits in generated layouts,
968           needed to compile when chtype is 64-bits using gnat 4.4.5
969
970 20110226 5.8 release for upload to ftp.gnu.org
971
972 20110226
973         + update release notes, for 5.8.
974         + regenerated html manpages.
975         + change open() in _nc_read_file_entry() to fopen() for consistency
976           with write_file().
977         + modify misc/run_tic.in to create parent directory, in case this is
978           a new install of hashed database.
979         + fix typo in Ada95/mk-1st.awk which causes error with original awk.
980
981 20110220
982         + configure script rpath fixes from xterm #269.
983         + workaround for cygwin's non-functional features.h, to force ncurses'
984           configure script to define _XOPEN_SOURCE_EXTENDED when building
985           wide-character configuration.
986         + build-fix in run_tic.sh for OS/2 EMX install
987         + add cons25-debian entry (patch by Brian M Carlson, Debian #607662).
988
989 20110212
990         + regenerated html manpages.
991         + use _tracef() in show_where() function of tic, to work correctly with
992           special case of trace configuration.
993
994 20110205
995         + add xterm-utf8 entry as a demo of the U8 feature -TD
996         + add U8 feature to denote entries for terminal emulators which do not
997           support VT100 SI/SO when processing UTF-8 encoding -TD
998         + improve the NCURSES_NO_UTF8_ACS feature by adding a check for an
999           extended terminfo capability U8 (prompted by mailing list
1000           discussion).
1001
1002 20110122
1003         + start documenting interface changes for upcoming 5.8 release.
1004         + correct limit-checks in derwin().
1005         + correct limit-checks in newwin(), to ensure that windows have nonzero
1006           size (report by Garrett Cooper).
1007         + fix a missing "weak" declaration for pthread_kill (patch by Nicholas
1008           Alcock).
1009         + improve documentation of KEY_ENTER in curs_getch.3x manpage (prompted
1010           by discussion with Kevin Martin).
1011
1012 20110115
1013         + modify Ada95/configure script to make the --with-curses-dir option
1014           work without requiring the --with-ncurses option.
1015         + modify test programs to allow them to be built with NetBSD curses.
1016         + document thick- and double-line symbols in curs_add_wch.3x manpage.
1017         + document WACS_xxx constants in curs_add_wch.3x manpage.
1018         + fix some warnings for clang 2.6 "--analyze"
1019         + modify Ada95 makefiles to make html-documentation with the project
1020           file configuration if that is used.
1021         + update config.guess, config.sub
1022
1023 20110108
1024         + regenerated html manpages.
1025         + minor fixes to enable lint when trace is not enabled, e.g., with
1026           clang --analyze.
1027         + fix typo in man/default_colors.3x (patch by Tim van der Molen).
1028         + update ncurses/llib-lncurses*
1029
1030 20110101
1031         + fix remaining strict compiler warnings in ncurses library ABI=5,
1032           except those dealing with function pointers, etc.
1033
1034 20101225
1035         + modify nc_tparm.h, adding guards against repeated inclusion, and
1036           allowing TPARM_ARG to be overridden.
1037         + fix some strict compiler warnings in ncurses library.
1038
1039 20101211
1040         + suppress ncv in screen entry, allowing underline (patch by Alejandro
1041           R Sedeno).
1042         + also suppress ncv in konsole-base -TD
1043         + fixes in wins_nwstr() and related functions to ensure that special
1044           characters, i.e., control characters are handled properly with the
1045           wide-character configuration.
1046         + correct a comparison in wins_nwstr() (Redhat #661506).
1047         + correct help-messages in some of the test-programs, which still
1048           referred to quitting with 'q'.
1049
1050 20101204
1051         + add special case to _nc_infotocap() to recognize the setaf/setab
1052           strings from xterm+256color and xterm+88color, and provide a reduced
1053           version which works with termcap.
1054         + remove obsolete emacs "Local Variables" section from documentation
1055           (request by Sven Joachim).
1056         + update doc/html/index.html to include NCURSES-Programming-HOWTO.html
1057           (report by Sven Joachim).
1058
1059 20101128
1060         + modify test/configure and test/Makefile.in to handle this special
1061           case of building within a build-tree (Debian #34182):
1062                 mkdir -p build && cd build && ../test/configure && make
1063
1064 20101127
1065         + miscellaneous build-fixes for Ada95 and test-directories when built
1066           out-of-tree.
1067         + use VPATH in makefiles to simplify out-of-tree builds (Debian #34182).
1068         + fix typo in rmso for tek4106 entry -Goran Weinholt
1069
1070 20101120
1071         + improve checks in test/configure for X libraries, from xterm #267
1072           changes.
1073         + modify test/configure to allow it to use the build-tree's libraries
1074           e.g., when using that to configure the test-programs without the
1075           rpath feature (request by Sven Joachim).
1076         + repurpose "gnome" terminfo entries as "vte", retaining "gnome" items
1077           for compatibility, but generally deprecating those since the VTE
1078           library is what actually defines the behavior of "gnome", etc.,
1079           since 2003 -TD
1080
1081 20101113
1082         + compiler warning fixes for test programs.
1083         + various build-fixes for test-programs with pdcurses.
1084         + updated configure checks for X packages in test/configure from xterm
1085           #267 changes.
1086         + add configure check to gnatmake, to accommodate cygwin.
1087
1088 20101106
1089         + correct list of sub-directories needed in Ada95 tree for building as
1090           a separate package.
1091         + modify scripts in test-directory to improve builds as a separate
1092           package.
1093
1094 20101023
1095         + correct parsing of relative tab-stops in tabs program (report by
1096           Philip Ganchev).
1097         + adjust configure script so that "t" is not added to library suffix
1098           when weak-symbols are used, allowing the pthread configuration to
1099           more closely match the non-thread naming (report by Werner Fink).
1100         + modify configure check for tic program, used for fallbacks, to a
1101           warning if not found.  This makes it simpler to use additonal
1102           scripts to bootstrap the fallbacks code using tic from the build
1103           tree (report by Werner Fink).
1104         + fix several places in configure script using ${variable-value} form.
1105         + modify configure macro CF_LDFLAGS_STATIC to accommodate some loaders
1106           which do not support selectively linking against static libraries
1107           (report by John P. Hartmann)
1108         + fix an unescaped dash in man/tset.1 (report by Sven Joachim).
1109
1110 20101009
1111         + correct comparison used for setting 16-colors in linux-16color
1112           entry (Novell #644831) -TD
1113         + improve linux-16color entry, using "dim" for color-8 which makes it
1114           gray rather than black like color-0 -TD
1115         + drop misc/ncu-indent and misc/jpf-indent; they are provided by an
1116           external package "cindent".
1117
1118 20101002
1119         + improve linkages in html manpages, adding references to the newer
1120           pages, e.g., *_variables, curs_sp_funcs, curs_threads.
1121         + add checks in tic for inconsistent cursor-movement controls, and for
1122           inconsistent printer-controls.
1123         + fill in no-parameter forms of cursor-movement where a parameterized
1124           form is available -TD
1125         + fill in missing cursor controls where the form of the controls is
1126           ANSI -TD
1127         + fix inconsistent punctuation in form_variables manpage (patch by
1128           Sven Joachim).
1129         + add parameterized cursor-controls to linux-basic (report by Dae) -TD
1130         > patch by Juergen Pfeifer:
1131         + document how to build 32-bit libraries in README.MinGW
1132         + fixes to filename computation in mk-dlls.sh.in
1133         + use POSIX locale in mk-dlls.sh.in rather than en_US (report by Sven
1134           Joachim).
1135         + add a check in mk-dlls.sh.in to obtain the size of a pointer to
1136           distinguish between 32-bit and 64-bit hosts.  The result is stored
1137           in mingw_arch
1138
1139 20100925
1140         + add "XT" capability to entries for terminals that support both
1141           xterm-style mouse- and title-controls, for "screen" which
1142           special-cases TERM beginning with "xterm" or "rxvt" -TD
1143         > patch by Juergen Pfeifer:
1144         + use 64-Bit MinGW toolchain (recommended package from TDM, see
1145           README.MinGW).
1146         + support pthreads when using the TDM MinGW toolchain
1147
1148 20100918
1149         + regenerated html manpages.
1150         + minor fixes for symlinks to curs_legacy.3x and curs_slk.3x manpages.
1151         + add manpage for sp-funcs.
1152         + add sp-funcs to test/listused.sh, for documentation aids.
1153
1154 20100911
1155         + add manpages for summarizing public variables of curses-, terminfo-
1156           and form-libraries.
1157         + minor fixes to manpages for consistency (patch by Jason McIntyre).
1158         + modify tic's -I/-C dump to reformat acsc strings into canonical form
1159           (sorted, unique mapping) (cf: 971004).
1160         + add configure check for pthread_kill(), needed for some old
1161           platforms.
1162
1163 20100904
1164         + add configure option --without-tests, to suppress building test
1165           programs (request by Frederic L W Meunier).
1166
1167 20100828
1168         + modify nsterm, xnuppc and tek4115 to make sgr/sgr0 consistent -TD
1169         + add check in terminfo source-reader to provide more informative
1170           message when someone attempts to run tic on a compiled terminal
1171           description (prompted by Debian #593920).
1172         + note in infotocap and captoinfo manpages that they read terminal
1173           descriptions from text-files (Debian #593920).
1174         + improve acsc string for vt52, show arrow keys (patch by Benjamin
1175           Sittler).
1176
1177 20100814
1178         + document in manpages that "mv" functions first use wmove() to check
1179           the window pointer and whether the position lies within the window
1180           (suggested by Poul-Henning Kamp).
1181         + fixes to curs_color.3x, curs_kernel.3x and wresize.3x manpages (patch
1182           by Tim van der Molen).
1183         + modify configure script to transform library names for tic- and
1184           tinfo-libraries so that those build properly with Mac OS X shared
1185           library configuration.
1186         + modify configure script to ensure that it removes conftest.dSYM
1187           directory leftover on checks with Mac OS X.
1188         + modify configure script to cleanup after check for symbolic links.
1189
1190 20100807
1191         + correct a typo in mk-1st.awk (patch by Gabriele Balducci)
1192           (cf: 20100724)
1193         + improve configure checks for location of tic and infocmp programs
1194           used for installing database and for generating fallback data,
1195           e.g., for cross-compiling.
1196         + add Markus Kuhn's wcwidth function for compiling MinGW
1197         + add special case to CF_REGEX for cross-compiling to MinGW target.
1198
1199 20100731
1200         + modify initialization check for win32con driver to eliminate need for
1201           special case for TERM "unknown", using terminal database if available
1202           (prompted by discussion with Roumen Petrov).
1203         + for MinGW port, ensure that terminal driver is setup if tgetent()
1204           is called (patch by Roumen Petrov).
1205         + document tabs "-0" and "-8" options in manpage.
1206         + fix Debian "lintian" issues with manpages reported in
1207           http://lintian.debian.org/full/csmall@debian.org.html#ncurses
1208
1209 20100724
1210         + add a check in tic for missing set_tab if clear_all_tabs given.
1211         + improve use of symbolic links in makefiles by using "-f" option if
1212           it is supported, to eliminate temporary removal of the target
1213           (prompted by http://www.t2-project.org/packages/ncurses.html)
1214         + minor improvement to test/ncurses.c, reset color pairs in 'd' test
1215           after exit from 'm' main-menu command.
1216         + improved ncu-indent, from mawk changes, allows more than one of
1217           GCC_NORETURN, GCC_PRINTFLIKE and GCC_SCANFLIKE on a single line.
1218
1219 20100717
1220         + add hard-reset for rs2 to wsvt25 to help ensure that reset ends
1221           the alternate character set (patch by Nicholas Marriott)
1222         + remove tar-copy.sh and related configure/Makefile chunks, since the
1223           Ada95 binding is now installed using rules in Ada95/src.
1224
1225 20100703
1226         + continue integrating changes to use gnatmake project files in Ada95
1227           + add/use configure check to turn on project rules for Ada95/src.
1228         + revert the vfork change from 20100130, since it does not work.
1229
1230 20100626
1231         + continue integrating changes to use gnatmake project files in Ada95
1232           + old gnatmake (3.15) does not produce libraries using project-file;
1233             work around by adding script to generate alternate makefile.
1234
1235 20100619
1236         + continue integrating changes to use gnatmake project files in Ada95
1237           + add configure --with-ada-sharedlib option, for the test_make rule.
1238           + move Ada95-related logic into aclocal.m4, since additional checks
1239             will be needed to distinguish old/new implementations of gnat.
1240
1241 20100612
1242         + start integrating changes to use gnatmake project files in Ada95 tree
1243           + add test_make / test_clean / test_install rules in Ada95/src
1244           + change install-path for adainclude directory to /usr/share/ada (was
1245             /usr/lib/ada).
1246         + update Ada95/configure.
1247         + add mlterm+256color entry, for mlterm 3.0.0 -TD
1248         + modify test/configure to use macros to ensure consistent order
1249           of updating LIBS variable.
1250
1251 20100605
1252         + change search order of options for Solaris in CF_SHARED_OPTS, to
1253           work with 64-bit compiles.
1254         + correct quoting of assignment in CF_SHARED_OPTS case for aix
1255           (cf: 20081227)
1256
1257 20100529
1258         + regenerated html documentation.
1259         + modify test/configure to support pkg-config for checking X libraries
1260           used by PDCurses.
1261         + add/use configure macro CF_ADD_LIB to force consistency of
1262           assignments to $LIBS, etc.
1263         + fix configure script for combining --with-pthread
1264           and --enable-weak-symbols options.
1265
1266 20100522
1267         + correct cross-compiling configure check for CF_MKSTEMP macro, by
1268           adding a check cache variable set by AC_CHECK_FUNC (report by
1269           Pierre Labastie).
1270         + simplify include-dependencies of make_hash and make_keys, to reduce
1271           the need for setting BUILD_CPPFLAGS in cross-compiling when the
1272           build- and target-machines differ.
1273         + repair broken-linker configuration by restoring a definition of SP
1274           variable to curses.priv.h, and adjusting for cases where sp-funcs
1275           are used.
1276         + improve configure macro CF_AR_FLAGS, allowing ARFLAGS environment
1277           variable to override (prompted by report by Pablo Cazallas).
1278
1279 20100515
1280         + add configure option --enable-pthreads-eintr to control whether the
1281           new EINTR feature is enabled.
1282         + modify logic in pthread configuration to allow EINTR to interrupt
1283           a read operation in wgetch() (Novell #540571, patch by Werner Fink).
1284         + drop mkdirs.sh, use "mkdir -p".
1285         + add configure option --disable-libtool-version, to use the
1286           "-version-number" feature which was added in libtool 1.5 (report by
1287           Peter Haering).  The default value for the option uses the newer
1288           feature, which makes libraries generated using libtool compatible
1289           with the standard builds of ncurses.
1290         + updated test/configure to match configure script macros.
1291         + fixes for configure script from lynx changes:
1292           + improve CF_FIND_LINKAGE logic for the case where a function is
1293             found in predefined libraries.
1294           + revert part of change to CF_HEADER (cf: 20100424)
1295
1296 20100501
1297         + correct limit-check in wredrawln, accounting for begy/begx values
1298           (patch by David Benjamin).
1299         + fix most compiler warnings from clang.
1300         + amend build-fix for OpenSolaris, to ensure that a system header is
1301           included in curses.h before testing feature symbols, since they
1302           may be defined by that route.
1303
1304 20100424
1305         + fix some strict compiler warnings in ncurses library.
1306         + modify configure macro CF_HEADER_PATH to not look for variations in
1307           the predefined include directories.
1308         + improve configure macros CF_GCC_VERSION and CF_GCC_WARNINGS to work
1309           with gcc 4.x's c89 alias, which gives warning messages for cases
1310           where older versions would produce an error.
1311
1312 20100417
1313         + modify _nc_capcmp() to work with cancelled strings.
1314         + correct translation of "^" in _nc_infotocap(), used to transform
1315           terminfo to termcap strings
1316         + add configure --disable-rpath-hack, to allow disabling the feature
1317           which adds rpath options for libraries in unusual places.
1318         + improve CF_RPATH_HACK_2 by checking if the rpath option for a given
1319           directory was already added.
1320         + improve CF_RPATH_HACK_2 by using ldd to provide a standard list of
1321           directories (which will be ignored).
1322
1323 20100410
1324         + improve win_driver.c handling of mouse:
1325           + discard motion events
1326           + avoid calling _nc_timed_wait when there is a mouse event
1327           + handle 4th and "rightmost" buttons.
1328         + quote substitutions in CF_RPATH_HACK_2 configure macro, needed for
1329           cases where there are embedded blanks in the rpath option.
1330
1331 20100403
1332         + add configure check for exctags vs ctags, to work around pkgsrc.
1333         + simplify logic in _nc_get_screensize() to make it easier to see how
1334           environment variables may override system- and terminfo-values
1335           (prompted by discussion with Igor Bujna).
1336         + make debug-traces for COLOR_PAIR and PAIR_NUMBER less verbose.
1337         + improve handling of color-pairs embedded in attributes for the
1338           extended-colors configuration.
1339         + modify MKlib_gen.sh to build link_test with sp-funcs.
1340         + build-fixes for OpenSolaris aka Solaris 11, for wide-character
1341           configuration as well as for rpath feature in *-config scripts.
1342
1343 20100327
1344         + refactor CF_SHARED_OPTS configure macro, making CF_RPATH_HACK more
1345           reusable.
1346         + improve configure CF_REGEX, similar fixes.
1347         + improve configure CF_FIND_LINKAGE, adding add check between system
1348           (default) and explicit paths, where we can find the entrypoint in the
1349           given library.
1350         + add check if Gpm_Open() returns a -2, e.g., for "xterm".  This is
1351           normally suppressed but can be overridden using $NCURSES_GPM_TERMS.
1352           Ensure that Gpm_Close() is called in this case.
1353
1354 20100320
1355         + rename atari and st52 terminfo entries to atari-old, st52-old, use
1356           newer entries from FreeMiNT by Guido Flohr (from patch/report by Alan
1357           Hourihane).
1358
1359 20100313
1360         + modify install-rule for manpages so that *-config manpages will
1361           install when building with --srcdir (report by Sven Joachim).
1362         + modify CF_DISABLE_LEAKS configure macro so that the --enable-leaks
1363           option is not the same as --disable-leaks (GenToo #305889).
1364         + modify #define's for build-compiler to suppress cchar_t symbol from
1365           compile of make_hash and make_keys, improving cross-compilation of
1366           ncursesw (report by Bernhard Rosenkraenzer).
1367         + modify CF_MAN_PAGES configure macro to replace all occurrences of
1368           TPUT in tput.1's manpage (Debian #573597, report/analysis by Anders
1369           Kaseorg).
1370
1371 20100306
1372         + generate manpages for the *-config scripts, adapted from help2man
1373           (suggested by Sven Joachim).
1374         + use va_copy() in _nc_printf_string() to avoid conflicting use of
1375           va_list value in _nc_printf_length() (report by Wim Lewis).
1376
1377 20100227
1378         + add Ada95/configure script, to use in tar-file created by
1379           Ada95/make-tar.sh
1380         + fix typo in wresize.3x (patch by Tim van der Molen).
1381         + modify screen-bce.XXX entries to exclude ech, since screen's color
1382           model does not clear with color for that feature -TD
1383
1384 20100220
1385         + add make-tar.sh scripts to Ada95 and test subdirectories to help with
1386           making those separately distributable.
1387         + build-fix for static libraries without dlsym (Debian #556378).
1388         + fix a syntax error in man/form_field_opts.3x (patch by Ingo
1389           Schwarze).
1390
1391 20100213
1392         + add several screen-bce.XXX entries -TD
1393
1394 20100206
1395         + update mrxvt terminfo entry -TD
1396         + modify win_driver.c to support mouse single-clicks.
1397         + correct name for termlib in ncurses*-config, e.g., if it is renamed
1398           to provide a single file for ncurses/ncursesw libraries (patch by
1399           Miroslav Lichvar).
1400
1401 20100130
1402         + use vfork in test/ditto.c if available (request by Mike Frysinger).
1403         + miscellaneous cleanup of manpages.
1404         + fix typo in curs_bkgd.3x (patch by Tim van der Molen).
1405         + build-fix for --srcdir (patch by Miroslav Lichvar).
1406
1407 20100123
1408         + for term-driver configuration, ensure that the driver pointer is
1409           initialized in setupterm so that terminfo/termcap programs work.
1410         + amend fix for Debian #542031 to ensure that wattrset() returns only
1411           OK or ERR, rather than the attribute value (report by Miroslav
1412           Lichvar).
1413         + reorder WINDOWLIST to put WINDOW data after SCREEN pointer, making
1414           _nc_screen_of() compatible between normal/wide libraries again (patch
1415           by Miroslav Lichvar)
1416         + review/fix include-dependencies in modules files (report by Miroslav
1417           Lichvar).
1418
1419 20100116
1420         + modify win_driver.c to initialize acs_map for win32 console, so
1421           that line-drawing works.
1422         + modify win_driver.c to initialize TERMINAL struct so that programs
1423           such as test/lrtest.c and test/ncurses.c which test string
1424           capabilities can run.
1425         + modify term-driver modules to eliminate forward-reference
1426           declarations.
1427
1428 20100109
1429         + modify configure macro CF_XOPEN_SOURCE, etc., to use CF_ADD_CFLAGS
1430           consistently to add new -D's while removing duplicates.
1431         + modify a few configure macros to consistently put new options
1432           before older in the list.
1433         + add tiparm(), based on review of X/Open Curses Issue 7.
1434         + minor documentation cleanup.
1435         + update config.guess, config.sub from
1436                 http://savannah.gnu.org/projects/config
1437           (caveat - its maintainer put 2010 copyright date on files dated 2009)
1438
1439 20100102
1440         + minor improvement to tic's checking of similar SGR's to allow for the
1441           most common case of SGR 0.
1442         + modify getmouse() to act as its documentation implied, returning on
1443           each call the preceding event until none are left.  When no more
1444           events remain, it will return ERR.
1445
1446 20091227
1447         + change order of lookup in progs/tput.c, looking for terminfo data
1448           first.  This fixes a confusion between termcap "sg" and terminfo
1449           "sgr" or "sgr0", originally from 990123 changes, but exposed by
1450           20091114 fixes for hashing.  With this change, only "dl" and "ed" are
1451           ambiguous (Mandriva #56272).
1452
1453 20091226
1454         + add bterm terminfo entry, based on bogl 0.1.18 -TD
1455         + minor fix to rxvt+pcfkeys terminfo entry -TD
1456         + build-fixes for Ada95 tree for gnat 4.4 "style".
1457
1458 20091219
1459         + remove old check in mvderwin() which prevented moving a derived
1460           window whose origin happened to coincide with its parent's origin
1461           (report by Katarina Machalkova).
1462         + improve test/ncurses.c to put mouse droppings in the proper window.
1463         + update minix terminfo entry -TD
1464         + add bw (auto-left-margin) to nsterm* entries (Benjamin Sittler)
1465
1466 20091212
1467         + correct transfer of multicolumn characters in multirow
1468           field_buffer(), which stopped at the end of the first row due to
1469           filling of unused entries in a cchar_t array with nulls.
1470         + updated nsterm* entries (Benjamin Sittler, Emanuele Giaquinta)
1471         + modify _nc_viscbuf2() and _tracecchar_t2() to show wide-character
1472           nulls.
1473         + use strdup() in set_menu_mark(), restore .marklen struct member on
1474           failure.
1475         + eliminate clause 3 from the UCB copyrights in read_termcap.c and
1476           tset.c per
1477                 ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
1478           (patch by Nicholas Marriott).
1479         + replace a malloc in tic.c with strdup, checking for failure (patch by
1480           Nicholas Marriott).
1481         + update config.guess, config.sub from
1482                 http://savannah.gnu.org/projects/config
1483
1484 20091205
1485         + correct layout of working window used to extract data in
1486           wide-character configured by set_field_buffer (patch by Rafael
1487           Garrido Fernandez)
1488         + improve some limit-checks related to filename length in reading and
1489           writing terminfo entries.
1490         + ensure that filename is always filled in when attempting to read
1491           a terminfo entry, so that infocmp can report the filename (patch
1492           by Nicholas Marriott).
1493
1494 20091128
1495         + modify mk-1st.awk to allow tinfo library to be built when term-driver
1496           is enabled.
1497         + add error-check to configure script to ensure that sp-funcs is
1498           enabled if term-driver is, since some internal interfaces rely upon
1499           this.
1500
1501 20091121
1502         + fix case where progs/tput is used while sp-funcs is configure; this
1503           requires save/restore of out-character function from _nc_prescreen
1504           rather than the SCREEN structure (report by Charles Wilson).
1505         + fix typo in man/curs_trace.3x which caused incorrect symbolic links
1506         + improved configure macros CF_GCC_ATTRIBUTES, CF_PROG_LINT.
1507
1508 20091114
1509
1510         + updated man/curs_trace.3x
1511         + limit hashing for termcap-names to 2-characters (Ubuntu #481740).
1512         + change a variable name in lib_newwin.c to make it clearer which
1513           value is being freed on error (patch by Nicholas Marriott).
1514
1515 20091107
1516         + improve test/ncurses.c color-cycling test by reusing attribute-
1517           and color-cycling logic from the video-attributes screen.
1518         + add ifdef'd with NCURSES_INTEROP_FUNCS experimental bindings in form
1519           library which help make it compatible with interop applications
1520           (patch by Juergen Pfeifer).
1521         + add configure option --enable-interop, for integrating changes
1522           for generic/interop support to form-library by Juergen Pfeifer
1523
1524 20091031
1525         + modify use of $CC environment variable which is defined by X/Open
1526           as a curses feature, to ignore it if it is not a single character
1527           (prompted by discussion with Benjamin C W Sittler).
1528         + add START_TRACE in slk_init
1529         + fix a regression in _nc_ripoffline which made test/ncurses.c not show
1530           soft-keys, broken in 20090927 merging.
1531         + change initialization of "hidden" flag for soft-keys from true to
1532           false, broken in 20090704 merging (Ubuntu #464274).
1533         + update nsterm entries (patch by Benjamin C W Sittler, prompted by
1534           discussion with Fabian Groffen in GenToo #206201).
1535         + add test/xterm-256color.dat
1536
1537 20091024
1538         + quiet some pedantic gcc warnings.
1539         + modify _nc_wgetch() to check for a -1 in the fifo, e.g., after a
1540           SIGWINCH, and discard that value, to avoid confusing application
1541           (patch by Eygene Ryabinkin, FreeBSD bin/136223).
1542
1543 20091017
1544         + modify handling of $PKG_CONFIG_LIBDIR to use only the first item in
1545           a possibly colon-separated list (Debian #550716).
1546
1547 20091010
1548         + supply a null-terminator to buffer in _nc_viswibuf().
1549         + fix a sign-extension bug in unget_wch() (report by Mike Gran).
1550         + minor fixes to error-returns in default function for tputs, as well
1551           as in lib_screen.c
1552
1553 20091003
1554         + add WACS_xxx definitions to wide-character configuration for thick-
1555           and double-lines (discussion with Slava Zanko).
1556         + remove unnecessary kcan assignment to ^C from putty (Sven Joachim)
1557         + add ccc and initc capabilities to xterm-16color -TD
1558         > patch by Benjamin C W Sittler:
1559         + add linux-16color
1560         + correct initc capability of linux-c-nc end-of-range
1561         + similar change for dg+ccc and dgunix+ccc
1562
1563 20090927
1564         + move leak-checking for comp_captab.c into _nc_leaks_tinfo() since
1565           that module since 20090711 is in libtinfo.
1566         + add configure option --enable-term-driver, to allow compiling with
1567           terminal-driver.  That is used in MinGW port, and (being somewhat
1568           more complicated) is an experimental alternative to the conventional
1569           termlib internals.  Currently, it requires the sp-funcs feature to
1570           be enabled.
1571         + completed integrating "sp-funcs" by Juergen Pfeifer in ncurses
1572           library (some work remains for forms library).
1573
1574 20090919
1575         + document return code from define_key (report by Mike Gran).
1576         + make some symbolic links in the terminfo directory-tree shorter
1577           (patch by Daniel Jacobowitz, forwarded by Sven Joachim).).
1578         + fix some groff warnings in terminfo.5, etc., from recent Debian
1579           changes.
1580         + change ncv and op capabilities in sun-color terminfo entry to match
1581           Sun's entry for this (report by Laszlo Peter).
1582         + improve interix smso terminfo capability by using reverse rather than
1583           bold (report by Kristof Zelechovski).
1584
1585 20090912
1586         + add some test programs (and make these use the same special keys
1587           by sharing linedata.h functions):
1588           test/test_addstr.c
1589           test/test_addwstr.c
1590           test/test_addchstr.c
1591           test/test_add_wchstr.c
1592         + correct internal _nc_insert_ch() to use _nc_insert_wch() when
1593           inserting wide characters, since the wins_wch() function that it used
1594           did not update the cursor position (report by Ciprian Craciun).
1595
1596 20090906
1597         + fix typo s/is_timeout/is_notimeout/ which made "man is_notimeout" not
1598           work.
1599         + add null-pointer checks to other opaque-functions.
1600         + add is_pad() and is_subwin() functions for opaque access to WINDOW
1601           (discussion with Mark Dickinson).
1602         + correct merge to lib_newterm.c, which broke when sp-funcs was
1603           enabled.
1604
1605 20090905
1606         + build-fix for building outside source-tree (report by Sven Joachim).
1607         + fix Debian lintian warning for man/tabs.1 by making section number
1608           agree with file-suffix (report by Sven Joachim).
1609         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1610
1611 20090829
1612         + workaround for bug in g++ 4.1-4.4 warnings for wattrset() macro on
1613           amd64 (Debian #542031).
1614         + fix typo in curs_mouse.3x (Debian #429198).
1615
1616 20090822
1617         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1618
1619 20090815
1620         + correct use of terminfo capabilities for initializing soft-keys,
1621           broken in 20090509 merging.
1622         + modify wgetch() to ensure it checks SIGWINCH when it gets an error
1623           in non-blocking mode (patch by Clemens Ladisch).
1624         + use PATH_SEPARATOR symbol when substituting into run_tic.sh, to
1625           help with builds on non-Unix platforms such as OS/2 EMX.
1626         + modify scripting for misc/run_tic.sh to test configure script's
1627           $cross_compiling variable directly rather than comparing host/build
1628           compiler names (prompted by comment in GenToo #249363).
1629         + fix configure script option --with-database, which was coded as an
1630           enable-type switch.
1631         + build-fixes for --srcdir (report by Frederic L W Meunier).
1632
1633 20090808
1634         + separate _nc_find_entry() and _nc_find_type_entry() from
1635           implementation details of hash function.
1636
1637 20090803
1638         + add tabs.1 to man/man_db.renames
1639         + modify lib_addch.c to compensate for removal of wide-character test
1640           from unctrl() in 20090704 (Debian #539735).
1641
1642 20090801
1643         + improve discussion in INSTALL for use of system's tic/infocmp for
1644           cross-compiling and building fallbacks.
1645         + modify test/demo_termcap.c to correspond better to options in
1646           test/demo_terminfo.c
1647         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1648         + fix logic for 'V' in test/ncurses.c tests f/F.
1649
1650 20090728
1651         + correct logic in tigetnum(), which caused tput program to treat all
1652           string capabilities as numeric (report by Rajeev V Pillai,
1653           cf: 20090711).
1654
1655 20090725
1656         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1657
1658 20090718
1659         + fix a null-pointer check in _nc_format_slks() in lib_slk.c, from
1660           20070704 changes.
1661         + modify _nc_find_type_entry() to use hashing.
1662         + make CCHARW_MAX value configurable, noting that changing this would
1663           change the size of cchar_t, and would be ABI-incompatible.
1664         + modify test-programs, e.g,.  test/view.c, to address subtle
1665           differences between Tru64/Solaris and HPUX/AIX getcchar() return
1666           values.
1667         + modify length returned by getcchar() to count the trailing null
1668           which is documented in X/Open (cf: 20020427).
1669         + fixes for test programs to build/work on HPUX and AIX, etc.
1670
1671 20090711
1672         + improve performance of tigetstr, etc., by using hashing code from tic.
1673         + minor fixes for memory-leak checking.
1674         + add test/demo_terminfo, for comparison with demo_termcap
1675
1676 20090704
1677         + remove wide-character checks from unctrl() (patch by Clemens Ladisch).
1678         + revise wadd_wch() and wecho_wchar() to eliminate dependency on
1679           unctrl().
1680         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1681
1682 20090627
1683         + update llib-lncurses[wt] to use sp-funcs.
1684         + various code-fixes to build/work with --disable-macros configure
1685           option.
1686         + add several new files from Juergen Pfeifer which will be used when
1687           integration of "sp-funcs" is complete.  This includes a port to
1688           MinGW.
1689
1690 20090613
1691         + move definition for NCURSES_WRAPPED_VAR back to ncurses_dll.h, to
1692           make includes of term.h without curses.h work (report by "Nix").
1693         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1694
1695 20090607
1696         + fix a regression in lib_tputs.c, from ongoing merges.
1697
1698 20090606
1699         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1700
1701 20090530
1702         + fix an infinite recursion when adding a legacy-coding 8-bit value
1703           using insch() (report by Clemens Ladisch).
1704         + free home-terminfo string in del_curterm() (patch by Dan Weber).
1705         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1706
1707 20090523
1708         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1709
1710 20090516
1711         + work around antique BSD game's manipulation of stdscr, etc., versus
1712           SCREEN's copy of the pointer (Debian #528411).
1713         + add a cast to wattrset macro to avoid compiler warning when comparing
1714           its result against ERR (adapted from patch by Matt Kraii, Debian
1715           #528374).
1716
1717 20090510
1718         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1719
1720 20090502
1721         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1722         + add vwmterm terminfo entry (patch by Bryan Christ).
1723
1724 20090425
1725         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1726
1727 20090419
1728         + build fix for _nc_free_and_exit() change in 20090418 (report by
1729           Christian Ebert).
1730
1731 20090418
1732         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1733
1734 20090411
1735         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1736           This change finishes merging for menu and panel libraries, does
1737           part of the form library.
1738
1739 20090404
1740         + suppress configure check for static/dynamic linker flags for gcc on
1741           Darwin (report by Nelson Beebe).
1742
1743 20090328
1744         + extend ansi.sys pfkey capability from kf1-kf10 to kf1-kf48, moving
1745           function key definitions from emx-base for consistency -TD
1746         + correct missing final 'p' in pfkey capability of ansi.sys-old (report
1747           by Kalle Olavi Niemitalo).
1748         + improve test/ncurses.c 'F' test, show combining characters in color.
1749         + quiet a false report by cppcheck in c++/cursesw.cc by eliminating
1750           a temporary variable.
1751         + use _nc_doalloc() rather than realloc() in a few places in ncurses
1752           library to avoid leak in out-of-memory condition (reports by William
1753           Egert and Martin Ettl based on cppcheck tool).
1754         + add --with-ncurses-wrap-prefix option to test/configure (discussion
1755           with Charles Wilson).
1756         + use ncurses*-config scripts if available for test/configure.
1757         + update test/aclocal.m4 and test/configure
1758         > patches by Charles Wilson:
1759         + modify CF_WITH_LIBTOOL configure check to allow unreleased libtool
1760           version numbers (e.g.  which include alphabetic chars, as well as
1761           digits, after the final '.').
1762         + improve use of -no-undefined option for libtool by setting an
1763           intermediate variable LT_UNDEF in the configure script, and then
1764           using that in the libtool link-commands.
1765         + fix an missing use of NCURSES_PUBLIC_VAR() in tinfo/MKcodes.awk
1766           from 2009031 changes.
1767         + improve mk-1st.awk script by writing separate cases for the
1768           LIBTOOL_LINK command, depending on which library (ncurses, ticlib,
1769           termlib) is to be linked.
1770         + modify configure.in to allow broken-linker configurations, not just
1771           enable-reentrant, to set public wrap prefix.
1772
1773 20090321
1774         + add TICS_LIST and SHLIB_LIST to allow libtool 2.2.6 on Cygwin to
1775           build with tic and term libraries (patch by Charles Wilson).
1776         + add -no-undefined option to libtool for Cygwin, MinGW, U/Win and AIX
1777           (report by Charles Wilson).
1778         + fix definition for c++/Makefile.in's SHLIB_LIST, which did not list
1779           the form, menu or panel libraries (patch by Charles Wilson).
1780         + add configure option --with-wrap-prefix to allow setting the prefix
1781           for functions used to wrap global variables to something other than
1782           "_nc_" (discussion with Charles Wilson).
1783
1784 20090314
1785         + modify scripts to generate ncurses*-config and pc-files to add
1786           dependency for tinfo library (patch by Charles Wilson).
1787         + improve comparison of program-names when checking for linked flavors
1788           such as "reset" by ignoring the executable suffix (reports by Charles
1789           Wilson, Samuel Thibault and Cedric Bretaudeau on Cygwin mailing
1790           list).
1791         + suppress configure check for static/dynamic linker flags for gcc on
1792           Solaris 10, since gcc is confused by absence of static libc, and
1793           does not switch back to dynamic mode before finishing the libraries
1794           (reports by Joel Bertrand, Alan Pae).
1795         + minor fixes to Intel compiler warning checks in configure script.
1796         + modify _nc_leaks_tinfo() so leak-checking in test/railroad.c works.
1797         + modify set_curterm() to make broken-linker configuration work with
1798           changes from 20090228 (report by Charles Wilson).
1799
1800 20090228
1801         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1802         + modify declaration of cur_term when broken-linker is used, but
1803           enable-reentrant is not, to match pre-5.7 (report by Charles Wilson).
1804
1805 20090221
1806         + continue integrating "sp-funcs" by Juergen Pfeifer (incomplete).
1807
1808 20090214
1809         + add configure script --enable-sp-funcs to enable the new set of
1810           extended functions.
1811         + start integrating patches by Juergen Pfeifer:
1812           + add extended functions which specify the SCREEN pointer for several
1813             curses functions which use the global SP (these are incomplete;
1814             some internals work is needed to complete these).
1815           + add special cases to configure script for MinGW port.
1816
1817 20090207
1818         + update several configure macros from lynx changes
1819           + append (not prepend) to CFLAGS/CPPFLAGS
1820           + change variable from PATHSEP to PATH_SEPARATOR
1821         + improve install-rules for pc-files (patch by Miroslav Lichvar).
1822           + make it work with $DESTDIR
1823           + create the pkg-config library directory if needed.
1824
1825 20090124
1826         + modify init_pair() to allow caller to create extra color pairs beyond
1827           the color_pairs limit, which use default colors (request by Emanuele
1828           Giaquinta).
1829         + add misc/terminfo.tmp and misc/*.pc to "sources" rule.
1830         + fix typo "==" where "=" is needed in ncurses-config.in and
1831           gen-pkgconfig.in files (Debian #512161).
1832
1833 20090117
1834         + add -shared option to MK_SHARED_LIB when -Bsharable is used, for
1835           *BSD's, without which "main" might be one of the shared library's
1836           dependencies (report/analysis by Ken Dickey).
1837         + modify waddch_literal(), updating line-pointer after a multicolumn
1838           character is found to not fit on the current row, and wrapping is
1839           done.  Since the line-pointer was not updated, the wrapped
1840           multicolumn character was written to the beginning of the current row
1841           (cf: 20041023, reported by "Nick" regarding problem with ncmpc
1842           http://musicpd.org/mantis/bug_view_page.php?bug_id=1930).
1843
1844 20090110
1845         + add screen.Eterm terminfo entry (GenToo #124887) -TD
1846         + modify adacurses-config to look for ".ali" files in the adalib
1847           directory.
1848         + correct install for Ada95, which omitted libAdaCurses.a used in
1849           adacurses-config
1850         + change install for adacurses-config to provide additional flavors
1851           such as adacursesw-config, for ncursesw (GenToo #167849).
1852
1853 20090105
1854         + remove undeveloped feature in ncurses-config.in for setting
1855           prefix variable.
1856         + recent change to ncurses-config.in did not take into account the
1857           --disable-overwrite option, which sets $includedir to the
1858           subdirectory and using just that for a -I option does not work - fix
1859           (report by Frederic L W Meunier).
1860
1861 20090104
1862         + modify gen-pkgconfig.in to eliminate a dependency on rpath when
1863           deciding whether to add $LIBS to --libs output; that should be shown
1864           for the ncurses and tinfo libraries without taking rpath into
1865           account.
1866         + fix an overlooked change from $AR_OPTS to $ARFLAGS in mk-1st.awk,
1867           used in static libraries (report by Marty Jack).
1868
1869 20090103
1870         + add a configure-time check to pick a suitable value for
1871           CC_SHARED_OPTS for Solaris (report by Dagobert Michelsen).
1872         + add configure --with-pkg-config and --enable-pc-files options, along
1873           with misc/gen-pkgconfig.in which can be used to generate ".pc" files
1874           for pkg-config (request by Jan Engelhardt).
1875         + use $includedir symbol in misc/ncurses-config.in, add --includedir
1876           option.
1877         + change makefiles to use $ARFLAGS rather than $AR_OPTS, provide a
1878           configure check to detect whether a "-" is needed before "ar"
1879           options.
1880         + update config.guess, config.sub from
1881                 http://savannah.gnu.org/projects/config
1882
1883 20081227
1884         + modify mk-1st.awk to work with extra categories for tinfo library.
1885         + modify configure script to allow building shared libraries with gcc
1886           on AIX 5 or 6 (adapted from patch by Lital Natan).
1887
1888 20081220
1889         + modify to omit the opaque-functions from lib_gen.o when
1890           --disable-ext-funcs is used.
1891         + add test/clip_printw.c to illustrate how to use printw without
1892           wrapping.
1893         + modify ncurses 'F' test to demo wborder_set() with colored lines.
1894         + modify ncurses 'f' test to demo wborder() with colored lines.
1895
1896 20081213
1897         + add check for failure to open hashed-database needed for db4.6
1898           (GenToo #245370).
1899         + corrected --without-manpages option; previous change only suppressed
1900           the auxiliary rules install.man and uninstall.man
1901         + add case for FreeMINT to configure macro CF_XOPEN_SOURCE (patch from
1902           GenToo #250454).
1903         + fixes from NetBSD port at
1904           http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/devel/ncurses/patches
1905           patch-ac (build-fix for DragonFly)
1906           patch-ae (use INSTALL_SCRIPT for installing misc/ncurses*-config).
1907         + improve configure script macros CF_HEADER_PATH and CF_LIBRARY_PATH
1908           by adding CFLAGS, CPPFLAGS and LDFLAGS, LIBS values to the
1909           search-lists.
1910         + correct title string for keybound manpage (patch by Frederic Culot,
1911           OpenBSD documentation/6019),
1912
1913 20081206
1914         + move del_curterm() call from _nc_freeall() to _nc_leaks_tinfo() to
1915           work for progs/clear, progs/tabs, etc.
1916         + correct buffer-size after internal resizing of wide-character
1917           set_field_buffer(), broken in 20081018 changes (report by Mike Gran).
1918         + add "-i" option to test/filter.c to tell it to use initscr() rather
1919           than newterm(), to investigate report on comp.unix.programmer that
1920           ncurses would clear the screen in that case (it does not - the issue
1921           was xterm's alternate screen feature).
1922         + add check in mouse-driver to disable connection if GPM returns a
1923           zero, indicating that the connection is closed (Debian #506717,
1924           adapted from patch by Samuel Thibault).
1925
1926 20081129
1927         + improve a workaround in adding wide-characters, when a control
1928           character is found.  The library (cf: 20040207) uses unctrl() to
1929           obtain a printable version of the control character, but was not
1930           passing color or video attributes.
1931         + improve test/ncurses.c 'a' test, using unctrl() more consistently to
1932           display meta-characters.
1933         + turn on _XOPEN_CURSES definition in curses.h
1934         + add eterm-color entry (report by Vincent Lefevre) -TD
1935         + correct use of key_name() in test/ncurses.c 'A' test, which only
1936           displays wide-characters, not key-codes since 20070612 (report by
1937           Ricardo Cantu).
1938
1939 20081122
1940         + change _nc_has_mouse() to has_mouse(), reflect its use in C++ and
1941           Ada95 (patch by Juergen Pfeifer).
1942         + document in TO-DO an issue with Cygwin's package for GNAT (report
1943           by Mike Dennison).
1944         + improve error-checking of command-line options in "tabs" program.
1945
1946 20081115
1947         + change several terminfo entries to make consistent use of ANSI
1948           clear-all-tabs -TD
1949         + add "tabs" program (prompted by Debian #502260).
1950         + add configure --without-manpages option (request by Mike Frysinger).
1951
1952 20081102 5.7 release for upload to ftp.gnu.org
1953
1954 20081025
1955         + add a manpage to discuss memory leaks.
1956         + add support for shared libraries for QNX (other than libtool, which
1957           does not work well on that platform).
1958         + build-fix for QNX C++ binding.
1959
1960 20081018
1961         + build-fixes for OS/2 EMX.
1962         + modify form library to accept control characters such as newline
1963           in set_field_buffer(), which is compatible with Solaris (report by
1964           Nit Khair).
1965         + modify configure script to assume --without-hashed-db when
1966           --disable-database is used.
1967         + add "-e" option in ncurses/Makefile.in when generating source-files
1968           to force earlier exit if the build environment fails unexpectedly
1969           (prompted by patch by Adrian Bunk).
1970         + change configure script to use CF_UTF8_LIB, improved variant of
1971           CF_LIBUTF8.
1972
1973 20081012
1974         + add teraterm4.59 terminfo entry, use that as primary teraterm entry, rename
1975           original to teraterm2.3 -TD
1976         + update "gnome" terminfo to 2.22.3 -TD
1977         + update "konsole" terminfo to 1.6.6, needs today's fix for tic -TD
1978         + add "aterm" terminfo -TD
1979         + add "linux2.6.26" terminfo -TD
1980         + add logic to tic for cancelling strings in user-defined capabilities,
1981           overlooked til now.
1982
1983 20081011
1984         + regenerated html documentation.
1985         + add -m and -s options to test/keynames.c and test/key_names.c to test
1986           the meta() function with keyname() or key_name(), respectively.
1987         + correct return value of key_name() on error; it is null.
1988         + document some unresolved issues for rpath and pthreads in TO-DO.
1989         + fix a missing prototype for ioctl() on OpenBSD in tset.c
1990         + add configure option --disable-tic-depends to make explicit whether
1991           tic library depends on ncurses/ncursesw library, amends change from
1992           20080823 (prompted by Debian #501421).
1993
1994 20081004
1995         + some build-fixes for configure --disable-ext-funcs (incomplete, but
1996           works for C/C++ parts).
1997         + improve configure-check for awks unable to handle large strings, e.g.
1998           AIX 5.1 whose awk silently gives up on large printf's.
1999
2000 20080927
2001         + fix build for --with-dmalloc by workaround for redefinition of
2002           strndup between string.h and dmalloc.h
2003         + fix build for --disable-sigwinch
2004         + add environment variable NCURSES_GPM_TERMS to allow override to use
2005           GPM on terminals other than "linux", etc.
2006         + disable GPM mouse support when $TERM does not happen to contain
2007           "linux", since Gpm_Open() no longer limits its assertion to terminals
2008           that it might handle, e.g., within "screen" in xterm.
2009         + reset mouse file-descriptor when unloading GPM library (report by
2010           Miroslav Lichvar).
2011         + fix build for --disable-leaks --enable-widec --with-termlib
2012         > patch by Juergen Pfeifer:
2013         + use improved initialization for soft-label keys in Ada95 sample code.
2014         + discard internal symbol _nc_slk_format (unused since 20080112).
2015         + move call of slk_paint_info() from _nc_slk_initialize() to
2016           slk_intern_refresh(), improving initialization.
2017
2018 20080925
2019         + fix bug in mouse code for GPM from 20080920 changes (reported in
2020           Debian #500103, also Miroslav Lichvar).
2021
2022 20080920
2023         + fix shared-library rules for cygwin with tic- and tinfo-libraries.
2024         + fix a memory leak when failure to connect to GPM.
2025         + correct check for notimeout() in wgetch() (report on linux.redhat
2026           newsgroup by FurtiveBertie).
2027         + add an example warning-suppression file for valgrind,
2028           misc/ncurses.supp (based on example from Reuben Thomas)
2029
2030 20080913
2031         + change shared-library configuration for OpenBSD, make rpath work.
2032         + build-fixes for using libutf8, e.g., on OpenBSD 3.7
2033
2034 20080907
2035         + corrected fix for --enable-weak-symbols (report by Frederic L W
2036           Meunier).
2037
2038 20080906
2039         + corrected gcc options for building shared libraries on IRIX64.
2040         + add configure check for awk programs unable to handle big-strings,
2041           use that to improve the default for --enable-big-strings option.
2042         + makefile-fixes for --enable-weak-symbols (report by Frederic L W
2043           Meunier).
2044         + update test/configure script.
2045         + adapt ifdef's from library to make test/view.c build when mbrtowc()
2046           is unavailable, e.g., with HPUX 10.20.
2047         + add configure check for wcsrtombs, mbsrtowcs, which are used in
2048           test/ncurses.c, and use wcstombs, mbstowcs instead if available,
2049           fixing build of ncursew for HPUX 11.00
2050
2051 20080830
2052         + fixes to make Ada95 demo_panels() example work.
2053         + modify Ada95 'rain' test program to accept keyboard commands like the
2054           C-version.
2055         + modify BeOS-specific ifdef's to build on Haiku (patch by Scott
2056           Mccreary).
2057         + add configure-check to see if the std namespace is legal for cerr
2058           and endl, to fix a build issue with Tru64.
2059         + consistently use NCURSES_BOOL in lib_gen.c
2060         + filter #line's from lib_gen.c
2061         + change delimiter in MKlib_gen.sh from '%' to '@', to avoid
2062           substitution by IBM xlc to '#' as part of its extensions to digraphs.
2063         + update config.guess, config.sub from
2064                 http://savannah.gnu.org/projects/config
2065           (caveat - its maintainer removed support for older Linux systems).
2066
2067 20080823
2068         + modify configure check for pthread library to work with OSF/1 5.1,
2069           which uses #define's to associate its header and library.
2070         + use pthread_mutexattr_init() for initializing pthread_mutexattr_t,
2071           makes threaded code work on HPUX 11.23
2072         + fix a bug in demo_menus in freeing menus (cf: 20080804).
2073         + modify configure script for the case where tic library is used (and
2074           possibly renamed) to remove its dependency upon ncurses/ncursew
2075           library (patch by Dr Werner Fink).
2076         + correct manpage for menu_fore() which gave wrong default for
2077           the attribute used to display a selected entry (report by Mike Gran).
2078         + add Eterm-256color, Eterm-88color and rxvt-88color (prompted by
2079           Debian #495815) -TD
2080
2081 20080816
2082         + add configure option --enable-weak-symbols to turn on new feature.
2083         + add configure-check for availability of weak symbols.
2084         + modify linkage with pthread library to use weak symbols so that
2085           applications not linked to that library will not use the mutexes,
2086           etc.  This relies on gcc, and may be platform-specific (patch by Dr
2087           Werner Fink).
2088         + add note to INSTALL to document limitation of renaming of tic library
2089           using the --with-ticlib configure option (report by Dr Werner Fink).
2090         + document (in manpage) why tputs does not detect I/O errors (prompted
2091           by comments by Samuel Thibault).
2092         + fix remaining warnings from Klocwork report.
2093
2094 20080804
2095         + modify _nc_panelhook() data to account for a permanent memory leak.
2096         + fix memory leaks in test/demo_menus
2097         + fix most warnings from Klocwork tool (report by Larry Zhou).
2098         + modify configure script CF_XOPEN_SOURCE macro to add case for
2099           "dragonfly" from xterm #236 changes.
2100         + modify configure script --with-hashed-db to let $LIBS override the
2101           search for the db library (prompted by report by Samson Pierre).
2102
2103 20080726
2104         + build-fixes for gcc 4.3.1 (changes to gnat "warnings", and C inlining
2105           thresholds).
2106
2107 20080713
2108         + build-fix (reports by Christian Ebert, Funda Wang).
2109
2110 20080712
2111         + compiler-warning fixes for Solaris.
2112
2113 20080705
2114         + use NCURSES_MOUSE_MASK() in definition of BUTTON_RELEASE(), etc., to
2115           make those work properly with the "--enable-ext-mouse" configuration
2116           (cf: 20050205).
2117         + improve documentation of build-cc options in INSTALL.
2118         + work-around a bug in gcc 4.2.4 on AIX, which does not pass the
2119           -static/-dynamic flags properly to linker, causing test/bs to
2120           not link.
2121
2122 20080628
2123         + correct some ifdef's needed for the broken-linker configuration.
2124         + make debugging library's $BAUDRATE feature work for termcap
2125           interface.
2126         + make $NCURSES_NO_PADDING feature work for termcap interface (prompted
2127           by comment on FreeBSD mailing list).
2128         + add screen.mlterm terminfo entry -TD
2129         + improve mlterm and mlterm+pcfkeys terminfo entries -TD
2130
2131 20080621
2132         + regenerated html documentation.
2133         + expand manpage description of parameters for form_driver() and
2134           menu_driver() (prompted by discussion with Adam Spragg).
2135         + add null-pointer checks for cur_term in baudrate() and
2136           def_shell_mode(), def_prog_mode()
2137         + fix some memory leaks in delscreen() and wide acs.
2138
2139 20080614
2140         + modify test/ditto.c to illustrate multi-threaded use_screen().
2141         + change CC_SHARED_OPTS from -KPIC to -xcode=pic32 for Solaris.
2142         + add "-shared" option to MK_SHARED_LIB for gcc on Solaris (report
2143           by Poor Yorick).
2144
2145 20080607
2146         + finish changes to wgetch(), making it switch as needed to the
2147           window's actual screen when calling wrefresh() and wgetnstr().  That
2148           allows wgetch() to get used concurrently in different threads with
2149           some minor restrictions, e.g., the application should not delete a
2150           window which is being used in a wgetch().
2151         + simplify mutex's, combining the window- and screen-mutex's.
2152
2153 20080531
2154         + modify wgetch() to use the screen which corresponds to its window
2155           parameter rather than relying on SP; some dependent functions still
2156           use SP internally.
2157         + factor out most use of SP in lib_mouse.c, using parameter.
2158         + add internal _nc_keyname(), replacing keyname() to associate with a
2159           particular SCREEN rather than the global SP.
2160         + add internal _nc_unctrl(), replacing unctrl() to associate with a
2161           particular SCREEN rather than the global SP.
2162         + add internal _nc_tracemouse(), replacing _tracemouse() to eliminate
2163           its associated global buffer _nc_globals.tracemse_buf now in SCREEN.
2164         + add internal _nc_tracechar(), replacing _tracechar() to use SCREEN in
2165           preference to the global _nc_globals.tracechr_buf buffer.
2166
2167 20080524
2168         + modify _nc_keypad() to make it switch temporarily as needed to the
2169           screen which must be updated.
2170         + wrap cur_term variable to help make _nc_keymap() thread-safe, and
2171           always set the screen's copy of this variable in set_curterm().
2172         + restore curs_set() state after endwin()/refresh() (report/patch
2173           Miroslav Lichvar)
2174
2175 20080517
2176         + modify configure script to note that --enable-ext-colors and
2177           --enable-ext-mouse are not experimental, but extensions from
2178           the ncurses ABI 5.
2179         + corrected manpage description of setcchar() (discussion with
2180           Emanuele Giaquinta).
2181         + fix for adding a non-spacing character at the beginning of a line
2182           (report/patch by Miroslav Lichvar).
2183
2184 20080503
2185         + modify screen.* terminfo entries using new screen+fkeys to fix
2186           overridden keys in screen.rxvt (Debian #478094) -TD
2187         + modify internal interfaces to reduce wgetch()'s dependency on the
2188           global SP.
2189         + simplify some loops with macros each_screen(), each_window() and
2190           each_ripoff().
2191
2192 20080426
2193         + continue modifying test/ditto.c toward making it demonstrate
2194           multithreaded use_screen(), using fifos to pass data between screens.
2195         + fix typo in form.3x (report by Mike Gran).
2196
2197 20080419
2198         + add screen.rxvt terminfo entry -TD
2199         + modify tic -f option to format spaces as \s to prevent them from
2200           being lost when that is read back in unformatted strings.
2201         + improve test/ditto.c, using a "talk"-style layout.
2202
2203 20080412
2204         + change test/ditto.c to use openpty() and xterm.
2205         + add locks for copywin(), dupwin(), overlap(), overlay() on their
2206           window parameters.
2207         + add locks for initscr() and newterm() on updates to the SCREEN
2208           pointer.
2209         + finish table in curs_thread.3x manpage.
2210
2211 20080405
2212         + begin table in curs_thread.3x manpage describing the scope of data
2213           used by each function (or symbol) for threading analysis.
2214         + add null-pointer checks to setsyx() and getsyx() (prompted by
2215           discussion by Martin v. Lowis and Jeroen Ruigrok van der Werven on
2216           python-dev2 mailing list).
2217
2218 20080329
2219         + add null-pointer checks in set_term() and delscreen().
2220         + move _nc_windows into _nc_globals, since windows can be pads, which
2221           are not associated with a particular screen.
2222         + change use_screen() to pass the SCREEN* parameter rather than
2223           stdscr to the callback function.
2224         + force libtool to use tag for 'CC' in case it does not detect this,
2225           e.g., on aix when using CC=powerpc-ibm-aix5.3.0.0-gcc
2226           (report/patch by Michael Haubenwallner).
2227         + override OBJEXT to "lo" when building with libtool, to work on
2228           platforms such as AIX where libtool may use a different suffix for
2229           the object files than ".o" (report/patch by Michael Haubenwallner).
2230         + add configure --with-pthread option, for building with the POSIX
2231           thread library.
2232
2233 20080322
2234         + fill in extended-color pair two more places in wbkgrndset() and
2235           waddch_nosync() (prompted by Sedeno's patch).
2236         + fill in extended-color pair in _nc_build_wch() to make colors work
2237           for wide-characters using extended-colors (patch by Alejandro R
2238           Sedeno).
2239         + add x/X toggles to ncurses.c C color test to test/demo
2240           wide-characters with extended-colors.
2241         + add a/A toggles to ncurses.c c/C color tests.
2242         + modify test/ditto.c to use use_screen().
2243         + finish modifying test/rain.c to demonstrate threads.
2244
2245 20080308
2246         + start modifying test/rain.c for threading demo.
2247         + modify test/ncurses.c to make 'f' test accept the f/F/b/F/</> toggles
2248           that the 'F' accepts.
2249         + modify test/worm.c to show trail in reverse-video when other threads
2250           are working concurrently.
2251         + fix a deadlock from improper nesting of mutexes for windowlist and
2252           window.
2253
2254 20080301
2255         + fixes from 20080223 resolved issue with mutexes; change to use
2256           recursive mutexes to fix memory leak in delwin() as called from
2257           _nc_free_and_exit().
2258
2259 20080223
2260         + fix a size-difference in _nc_globals which caused hanging of mutex
2261           lock/unlock when termlib was built separately.
2262
2263 20080216
2264         + avoid using nanosleep() in threaded configuration since that often
2265           is implemented to suspend the entire process.
2266
2267 20080209
2268         + update test programs to build/work with various UNIX curses for
2269           comparisons.  This was to reinvestigate statement in X/Open curses
2270           that insnstr and winsnstr perform wrapping.  None of the Unix-branded
2271           implementations do this, as noted in manpage (cf: 20040228).
2272
2273 20080203
2274         + modify _nc_setupscreen() to set the legacy-coding value the same
2275           for both narrow/wide models.  It had been set only for wide model,
2276           but is needed to make unctrl() work with locale in the narrow model.
2277         + improve waddch() and winsch() handling of EILSEQ from mbrtowc() by
2278           using unctrl() to display illegal bytes rather than trying to append
2279           further bytes to make up a valid sequence (reported by Andrey A
2280           Chernov).
2281         + modify unctrl() to check codes in 128-255 range versus isprint().
2282           If they are not printable, and locale was set, use a "M-" or "~"
2283           sequence.
2284
2285 20080126
2286         + improve threading in test/worm.c (wrap refresh calls, and KEY_RESIZE
2287           handling).  Now it hangs in napms(), no matter whether nanosleep()
2288           or poll() or select() are used on Linux.
2289
2290 20080119
2291         + fixes to build with --disable-ext-funcs
2292         + add manpage for use_window and use_screen.
2293         + add set_tabsize() and set_escdelay() functions.
2294
2295 20080112
2296         + remove recursive-mutex definitions, finish threading demo for worm.c
2297         + remove a redundant adjustment of lines in resizeterm.c's
2298           adjust_window() which caused occasional misadjustment of stdscr when
2299           softkeys were used.
2300
2301 20080105
2302         + several improvements to terminfo entries based on xterm #230 -TD
2303         + modify MKlib_gen.sh to handle keyname/key_name prototypes, so the
2304           "link_test" builds properly.
2305         + fix for toe command-line options -u/-U to ensure filename is given.
2306         + fix allocation-size for command-line parsing in infocmp from 20070728
2307           (report by Miroslav Lichvar)
2308         + improve resizeterm() by moving ripped-off lines, and repainting the
2309           soft-keys (report by Katarina Machalkova)
2310         + add clarification in wclear's manpage noting that the screen will be
2311           cleared even if a subwindow is cleared (prompted by Christer Enfors
2312           question).
2313         + change test/ncurses.c soft-key tests to work with KEY_RESIZE.
2314
2315 20071222
2316         + continue implementing support for threading demo by adding mutex
2317           for delwin().
2318
2319 20071215
2320         + add several functions to C++ binding which wrap C functions that
2321           pass a WINDOW* parameter (request by Chris Lee).
2322
2323 20071201
2324         + add note about configure options needed for Berkeley database to the
2325           INSTALL file.
2326         + improve checks for version of Berkeley database libraries.
2327         + amend fix for rpath to not modify LDFLAGS if the platform has no
2328           applicable transformation (report by Christian Ebert, cf: 20071124).
2329
2330 20071124
2331         + modify configure option --with-hashed-db to accept a parameter which
2332           is the install-prefix of a given Berkeley Database (prompted by
2333           pierre4d2 comments).
2334         + rewrite wrapper for wcrtomb(), making it work on Solaris.  This is
2335           used in the form library to determine the length of the buffer needed
2336           by field_buffer (report by Alfred Fung).
2337         + remove unneeded window-parameter from C++ binding for wresize (report
2338           by Chris Lee).
2339
2340 20071117
2341         + modify the support for filesystems which do not support mixed-case to
2342           generate 2-character (hexadecimal) codes for the lower-level of the
2343           filesystem terminfo database (request by Michail Vidiassov).
2344         + add configure option --enable-mixed-case, to allow overriding the
2345           configure script's check if the filesystem supports mixed-case
2346           filenames.
2347         + add wresize() to C++ binding (request by Chris Lee).
2348         + define NCURSES_EXT_FUNCS and NCURSES_EXT_COLORS in curses.h to make
2349           it simpler to tell if the extended functions and/or colors are
2350           declared.
2351
2352 20071103
2353         + update memory-leak checks for changes to names.c and codes.c
2354         + correct acsc strings in h19, z100 (patch by Benjamin C W Sittler).
2355
2356 20071020
2357         + continue implementing support for threading demo by adding mutex
2358           for use_window().
2359         + add mrxvt terminfo entry, add/fix xterm building blocks for modified
2360           cursor keys -TD
2361         + compile with FreeBSD "contemporary" TTY interface (patch by
2362           Rong-En Fan).
2363
2364 20071013
2365         + modify makefile rules to allow clear, tput and tset to be built
2366           without libtic.  The other programs (infocmp, tic and toe) rely on
2367           that library.
2368         + add/modify null-pointer checks in several functions for SP and/or
2369           the WINDOW* parameter (report by Thorben Krueger).
2370         + fixes for field_buffer() in formw library (see Redhat Bugzilla
2371           #310071, patches by Miroslav Lichvar).
2372         + improve performance of NCURSES_CHAR_EQ code (patch by Miroslav
2373           Lichvar).
2374         + update/improve mlterm and rxvt terminfo entries, e.g., for
2375           the modified cursor- and keypad-keys -TD
2376
2377 20071006
2378         + add code to curses.priv.h ifdef'd with NCURSES_CHAR_EQ, which
2379           changes the CharEq() macro to an inline function to allow comparing
2380           cchar_t struct's without comparing gaps in a possibly unpacked
2381           memory layout (report by Miroslav Lichvar).
2382
2383 20070929
2384         + add new functions to lib_trace.c to setup mutex's for the _tracef()
2385           calls within the ncurses library.
2386         + for the reentrant model, move _nc_tputs_trace and _nc_outchars into
2387           the SCREEN.
2388         + start modifying test/worm.c to provide threading demo (incomplete).
2389         + separated ifdef's for some BSD-related symbols in tset.c, to make
2390           it compile on LynxOS (report by Greg Gemmer).
2391 20070915
2392         + modify Ada95/gen/Makefile to use shlib script, to simplify building
2393           shared-library configuration on platforms lacking rpath support.
2394         + build-fix for Ada95/src/Makefile to reflect changed dependency for
2395           the terminal-interface-curses-aux.adb file which is now generated.
2396         + restructuring test/worm.c, for use_window() example.
2397
2398 20070908
2399         + add use_window() and use_screen() functions, to develop into support
2400           for threaded library (incomplete).
2401         + fix typos in man/curs_opaque.3x which kept the install script from
2402           creating symbolic links to two aliases created in 20070818 (report by
2403           Rong-En Fan).
2404
2405 20070901
2406         + remove a spurious newline from output of html.m4, which caused links
2407           for Ada95 html to be incorrect for the files generated using m4.
2408         + start investigating mutex's for SCREEN manipulation (incomplete).
2409         + minor cleanup of codes.c/names.c for --enable-const
2410         + expand/revise "Routine and Argument Names" section of ncurses manpage
2411           to address report by David Givens in newsgroup discussion.
2412         + fix interaction between --without-progs/--with-termcap configure
2413           options (report by Michail Vidiassov).
2414         + fix typo in "--disable-relink" option (report by Michail Vidiassov).
2415
2416 20070825
2417         + fix a sign-extension bug in infocmp's repair_acsc() function
2418           (cf: 971004).
2419         + fix old configure script bug which prevented "--disable-warnings"
2420           option from working (patch by Mike Frysinger).
2421
2422 20070818
2423         + add 9term terminal description (request by Juhapekka Tolvanen) -TD
2424         + modify comp_hash.c's string output to avoid misinterpreting a null
2425           "\0" followed by a digit.
2426         + modify MKnames.awk and MKcodes.awk to support big-strings.
2427           This only applies to the cases (broken linker, reentrant) where
2428           the corresponding arrays are accessed via wrapper functions.
2429         + split MKnames.awk into two scripts, eliminating the shell redirection
2430           which complicated the make process and also the bogus timestamp file
2431           which was introduced to fix "make -j".
2432         + add test/test_opaque.c, test/test_arrays.c
2433         + add wgetscrreg() and wgetparent() for applications that may need it
2434           when NCURSES_OPAQUE is defined (prompted by Bryan Christ).
2435
2436 20070812
2437         + amend treatment of infocmp "-r" option to retain the 1023-byte limit
2438           unless "-T" is given (cf: 981017).
2439         + modify comp_captab.c generation to use big-strings.
2440         + make _nc_capalias_table and _nc_infoalias_table private accessed via
2441           _nc_get_alias_table() since the tables are used only within the tic
2442           library.
2443         + modify configure script to skip Intel compiler in CF_C_INLINE.
2444         + make _nc_info_hash_table and _nc_cap_hash_table private accessed via
2445           _nc_get_hash_table() since the tables are used only within the tic
2446           library.
2447
2448 20070728
2449         + make _nc_capalias_table and _nc_infoalias_table private, accessed via
2450           _nc_get_alias_table() since they are used only by parse_entry.c
2451         + make _nc_key_names private since it is used only by lib_keyname.c
2452         + add --disable-big-strings configure option to control whether
2453           unctrl.c is generated using the big-string optimization - which may
2454           use strings longer than supported by a given compiler.
2455         + reduce relocation tables for tic, infocmp by changing type of
2456           internal hash tables to short, and make those private symbols.
2457         + eliminate large fixed arrays from progs/infocmp.c
2458
2459 20070721
2460         + change winnstr() to stop at the end of the line (cf: 970315).
2461         + add test/test_get_wstr.c
2462         + add test/test_getstr.c
2463         + add test/test_inwstr.c
2464         + add test/test_instr.c
2465
2466 20070716
2467         + restore a call to obtain screen-size in _nc_setupterm(), which
2468           is used in tput and other non-screen applications via setupterm()
2469           (Debian #433357, reported by Florent Bayle, Christian Ohm,
2470           cf: 20070310).
2471
2472 20070714
2473         + add test/savescreen.c test-program
2474         + add check to trace-file open, if the given name is a directory, add
2475           ".log" to the name and try again.
2476         + add konsole-256color entry -TD
2477         + add extra gcc warning options from xterm.
2478         + minor fixes for ncurses/hashmap test-program.
2479         + modify configure script to quiet c++ build with libtool when the
2480           --disable-echo option is used.
2481         + modify configure script to disable ada95 if libtool is selected,
2482           writing a warning message (addresses FreeBSD ports/114493).
2483         + update config.guess, config.sub
2484
2485 20070707
2486         + add continuous-move "M" to demo_panels to help test refresh changes.
2487         + improve fix for refresh of window on top of multi-column characters,
2488           taking into account some split characters on left/right window
2489           boundaries.
2490
2491 20070630
2492         + add "widec" row to _tracedump() output to help diagnose remaining
2493           problems with multi-column characters.
2494         + partial fix for refresh of window on top of multi-column characters
2495           which are partly overwritten (report by Sadrul H Chowdhury).
2496         + ignore A_CHARTEXT bits in vidattr() and vid_attr(), in case
2497           multi-column extension bits are passed there.
2498         + add setlocale() call to demo_panels.c, needed for wide-characters.
2499         + add some output flags to _nc_trace_ttymode to help diagnose a bug
2500           report by Larry Virden, i.e., ONLCR, OCRNL, ONOCR and ONLRET,
2501
2502 20070623
2503         + add test/demo_panels.c
2504         + implement opaque version of setsyx() and getsyx().
2505
2506 20070612
2507         + corrected xterm+pcf2 terminfo modifiers for F1-F4, to match xterm
2508           #226 -TD
2509         + split-out key_name() from MKkeyname.awk since it now depends upon
2510           wunctrl() which is not in libtinfo (report by Rong-En Fan).
2511
2512 20070609
2513         + add test/key_name.c
2514         + add stdscr cases to test/inchs.c and test/inch_wide.c
2515         + update test/configure
2516         + correct formatting of DEL (0x7f) in _nc_vischar().
2517         + null-terminate result of wunctrl().
2518         + add null-pointer check in key_name() (report by Andreas Krennmair,
2519           cf: 20020901).
2520
2521 20070602
2522         + adapt mouse-handling code from menu library in form-library
2523           (discussion with Clive Nicolson).
2524         + add a modification of test/dots.c, i.e., test/dots_mvcur.c to
2525           illustrate how to use mvcur().
2526         + modify wide-character flavor of SetAttr() to preserve the
2527           WidecExt() value stored in the .attr field, e.g., in case it
2528           is overwritten by chgat (report by Aleksi Torhamo).
2529         + correct buffer-size for _nc_viswbuf2n() (report by Aleksi Torhamo).
2530         + build-fixes for Solaris 2.6 and 2.7 (patch by Peter O'Gorman).
2531
2532 20070526
2533         + modify keyname() to use "^X" form only if meta() has been called, or
2534           if keyname() is called without initializing curses, e.g., via
2535           initscr() or newterm() (prompted by LinuxBase #1604).
2536         + document some portability issues in man/curs_util.3x
2537         + add a shadow copy of TTY buffer to _nc_prescreen to fix applications
2538           broken by moving that data into SCREEN (cf: 20061230).
2539
2540 20070512
2541         + add 'O' (wide-character panel test) in ncurses.c to demonstrate a
2542           problem reported by Sadrul H Chowdhury with repainting parts of
2543           a fullwidth cell.
2544         + modify slk_init() so that if there are preceding calls to
2545           ripoffline(), those affect the available lines for soft-keys (adapted
2546           from patch by Clive Nicolson).
2547         + document some portability issues in man/curs_getyx.3x
2548
2549 20070505
2550         + fix a bug in Ada95/samples/ncurses which caused a variable to
2551           become uninitialized in the "b" test.
2552         + fix Ada95/gen/Makefile.in adahtml rule to account for recent
2553           movement of files, fix a few incorrect manpage references in the
2554           generated html.
2555         + add Ada95 binding to _nc_freeall() as Curses_Free_All to help with
2556           memory-checking.
2557         + correct some functions in Ada95 binding which were using return value
2558           from C where none was returned:  idcok(), immedok() and wtimeout().
2559         + amend recent changes for Ada95 binding to make it build with
2560           Cygwin's linker, e.g., with configure options
2561                 --enable-broken-linker --with-ticlib
2562
2563 20070428
2564         + add a configure check for gcc's options for inlining, use that to
2565           quiet a warning message where gcc's default behavior changed from
2566           3.x to 4.x.
2567         + improve warning message when checking if GPM is linked to curses
2568           library by not warning if its use of "wgetch" is via a weak symbol.
2569         + add loader options when building with static libraries to ensure that
2570           an installed shared library for ncurses does not conflict.  This is
2571           reported as problem with Tru64, but could affect other platforms
2572           (report Martin Mokrejs, analysis by Tim Mooney).
2573         + fix build on cygwin after recent ticlib/termlib changes, i.e.,
2574           + adjust TINFO_SUFFIX value to work with cygwin's dll naming
2575           + revert a change from 20070303 which commented out dependency of
2576             SHLIB_LIST in form/menu/panel/c++ libraries.
2577         + fix initialization of ripoff stack pointer (cf: 20070421).
2578
2579 20070421
2580         + move most static variables into structures _nc_globals and
2581           _nc_prescreen, to simplify storage.
2582         + add/use configure script macro CF_SIG_ATOMIC_T, use the corresponding
2583           type for data manipulated by signal handlers (prompted by comments
2584           in mailing.openbsd.bugs newsgroup).
2585         + modify CF_WITH_LIBTOOL to allow one to pass options such as -static
2586           to the libtool create- and link-operations.
2587
2588 20070414
2589         + fix whitespace in curs_opaque.3x which caused a spurious ';' in
2590           the installed aliases (report by Peter Santoro).
2591         + fix configure script to not try to generate adacurses-config when
2592           Ada95 tree is not built.
2593
2594 20070407
2595         + add man/curs_legacy.3x, man/curs_opaque.3x
2596         + fix acs_map binding for Ada95 when --enable-reentrant is used.
2597         + add adacurses-config to the Ada95 install, based on version from
2598           FreeBSD port, in turn by Juergen Pfeifer in 2000 (prompted by
2599           comment on comp.lang.ada newsgroup).
2600         + fix includes in c++ binding to build with Intel compiler
2601           (cf: 20061209).
2602         + update install rule in Ada95 to use mkdirs.sh
2603         > other fixes prompted by inspection for Coverity report:
2604         + modify ifdef's for c++ binding to use try/catch/throw statements
2605         + add a null-pointer check in tack/ansi.c request_cfss()
2606         + fix a memory leak in ncurses/base/wresize.c
2607         + corrected check for valid memu/meml capabilities in
2608           progs/dump_entry.c when handling V_HPUX case.
2609         > fixes based on Coverity report:
2610         + remove dead code in test/bs.c
2611         + remove dead code in test/demo_defkey.c
2612         + remove an unused assignment in progs/infocmp.c
2613         + fix a limit check in tack/ansi.c tools_charset()
2614         + fix tack/ansi.c tools_status() to perform the VT320/VT420
2615           tests in request_cfss().  The function had exited too soon.
2616         + fix a memory leak in tic.c's make_namelist()
2617         + fix a couple of places in tack/output.c which did not check for EOF.
2618         + fix a loop-condition in test/bs.c
2619         + add index checks in lib_color.c for color palettes
2620         + add index checks in progs/dump_entry.c for version_filter() handling
2621           of V_BSD case.
2622         + fix a possible null-pointer dereference in copywin()
2623         + fix a possible null-pointer dereference in waddchnstr()
2624         + add a null-pointer check in _nc_expand_try()
2625         + add a null-pointer check in tic.c's make_namelist()
2626         + add a null-pointer check in _nc_expand_try()
2627         + add null-pointer checks in test/cardfile.c
2628         + fix a double-free in ncurses/tinfo/trim_sgr0.c
2629         + fix a double-free in ncurses/base/wresize.c
2630         + add try/catch block to c++/cursesmain.cc
2631
2632 20070331
2633         + modify Ada95 binding to build with --enable-reentrant by wrapping
2634           global variables (bug: acs_map does not yet work).
2635         + modify Ada95 binding to use the new access-functions, allowing it
2636           to build/run when NCURSES_OPAQUE is set.
2637         + add access-functions and macros to return properties of the WINDOW
2638           structure, e.g., when NCURSES_OPAQUE is set.
2639         + improved install-sh's quoting.
2640         + use mkdirs.sh rather than mkinstalldirs, e.g., to use fixes from
2641           other programs.
2642
2643 20070324
2644         + eliminate part of the direct use of WINDOW data from Ada95 interface.
2645         + fix substitutions for termlib filename to make configure option
2646           --enable-reentrant work with --with-termlib.
2647         + change a constructor for NCursesWindow to allow compiling with
2648           NCURSES_OPAQUE set, since we cannot pass a reference to
2649           an opaque pointer.
2650
2651 20070317
2652         + ignore --with-chtype=unsigned since unsigned is always added to
2653           the type in curses.h; do the same for --with-mmask-t.
2654         + change warning regarding --enable-ext-colors and wide-character
2655           in the configure script to an error.
2656         + tweak error message in CF_WITH_LIBTOOL to distinguish other programs
2657           such as Darwin's libtool program (report by Michail Vidiassov)
2658         + modify edit_man.sh to allow for multiple substitutions per line.
2659         + set locale in misc/ncurses-config.in since it uses a range
2660         + change permissions libncurses++.a install (report by Michail
2661           Vidiassov).
2662         + corrected length of temporary buffer in wide-character version
2663           of set_field_buffer() (related to report by Bryan Christ).
2664
2665 20070311
2666         + fix mk-1st.awk script install_shlib() function, broken in 20070224
2667           changes for cygwin (report by  Michail Vidiassov).
2668
2669 20070310
2670         + increase size of array in _nc_visbuf2n() to make "tic -v" work
2671           properly in its similar_sgr() function (report/analysis by Peter
2672           Santoro).
2673         + add --enable-reentrant configure option for ongoing changes to
2674           implement a reentrant version of ncurses:
2675           + libraries are suffixed with "t"
2676           + wrap several global variables (curscr, newscr, stdscr, ttytype,
2677             COLORS, COLOR_PAIRS, COLS, ESCDELAY, LINES and TABSIZE) as
2678             functions returning values stored in SCREEN or cur_term.
2679           + move some initialization (LINES, COLS) from lib_setup.c,
2680             i.e., setupterm() to _nc_setupscreen(), i.e., newterm().
2681
2682 20070303
2683         + regenerated html documentation.
2684         + add NCURSES_OPAQUE symbol to curses.h, will use to make structs
2685           opaque in selected configurations.
2686         + move the chunk in lib_acs.c which resets acs capabilities when
2687           running on a terminal whose locale interferes with those into
2688           _nc_setupscreen(), so the libtinfo/libtinfow files can be made
2689           identical (requested by Miroslav Lichvar).
2690         + do not use configure variable SHLIB_LIBS for building libraries
2691           outside the ncurses directory, since that symbol is customized
2692           only for that directory, and using it introduces an unneeded
2693           dependency on libdl (requested by Miroslav Lichvar).
2694         + modify mk-1st.awk so the generated makefile rules for linking or
2695           installing shared libraries do not first remove the library, in
2696           case it is in use, e.g., libncurses.so by /bin/sh (report by Jeff
2697           Chua).
2698         + revised section "Using NCURSES under XTERM" in ncurses-intro.html
2699           (prompted by newsgroup comment by Nick Guenther).
2700
2701 20070224
2702         + change internal return codes of _nc_wgetch() to check for cases
2703           where KEY_CODE_YES should be returned, e.g., if a KEY_RESIZE was
2704           ungetch'd, and read by wget_wch().
2705         + fix static-library build broken in 20070217 changes to remove "-ldl"
2706           (report by Miroslav Lichvar).
2707         + change makefile/scripts for cygwin to allow building termlib.
2708         + use Form_Hook in manpages to match form.h
2709         + use Menu_Hook in manpages, as well as a few places in menu.h
2710         + correct form- and menu-manpages to use specific Field_Options,
2711           Menu_Options and Item_Options types.
2712         + correct prototype for _tracechar() in manpage (cf: 20011229).
2713         + correct prototype for wunctrl() in manpage.
2714
2715 20070217
2716         + fixes for $(TICS_LIST) in ncurses/Makefile (report by Miroslav
2717           Lichvar).
2718         + modify relinking of shared libraries to apply only when rpath is
2719           enabled, and add --disable-relink option which can be used to
2720           disable the feature altogether (reports by Michail Vidiassov,
2721           Adam J Richter).
2722         + fix --with-termlib option for wide-character configuration, stripping
2723           the "w" suffix in one place (report by Miroslav Lichvar).
2724         + remove "-ldl" from some library lists to reduce dependencies in
2725           programs (report by Miroslav Lichvar).
2726         + correct description of --enable-signed-char in configure --help
2727           (report by Michail Vidiassov).
2728         + add pattern for GNU/kFreeBSD configuration to CF_XOPEN_SOURCE,
2729           which matches an earlier change to CF_SHARED_OPTS, from xterm #224
2730           fixes.
2731         + remove "${DESTDIR}" from -install_name option used for linking
2732           shared libraries on Darwin (report by Michail Vidiassov).
2733
2734 20070210
2735         + add test/inchs.c, test/inch_wide.c, to test win_wchnstr().
2736         + remove libdl from library list for termlib (report by Miroslav
2737           Lichvar).
2738         + fix configure.in to allow --without-progs --with-termlib (patch by
2739           Miroslav Lichvar).
2740         + modify win_wchnstr() to ensure that only a base cell is returned
2741           for each multi-column character (prompted by report by Wei Kong
2742           regarding change in mvwin_wch() cf: 20041023).
2743
2744 20070203
2745         + modify fix_wchnstr() in form library to strip attributes (and color)
2746           from the cchar_t array (field cells) read from a field's window.
2747           Otherwise, when copying the field cells back to the window, the
2748           associated color overrides the field's background color (report by
2749           Ricardo Cantu).
2750         + improve tracing for form library, showing created forms, fields, etc.
2751         + ignore --enable-rpath configure option if --with-shared was omitted.
2752         + add _nc_leaks_tinfo(), _nc_free_tic(), _nc_free_tinfo() entrypoints
2753           to allow leak-checking when both tic- and tinfo-libraries are built.
2754         + drop CF_CPP_VSCAN_FUNC macro from configure script, since C++ binding
2755           no longer relies on it.
2756         + disallow combining configure script options --with-ticlib and
2757           --enable-termcap (report by Rong-En Fan).
2758         + remove tack from ncurses tree.
2759
2760 20070128
2761         + fix typo in configure script that broke --with-termlib option
2762           (report by Rong-En Fan).
2763
2764 20070127
2765         + improve fix for FreeBSD gnu/98975, to allow for null pointer passed
2766           to tgetent() (report by Rong-en Fan).
2767         + update tack/HISTORY and tack/README to tell how to build it after
2768           it is removed from the ncurses tree.
2769         + fix configure check for libtool's version to trim blank lines
2770           (report by sci-fi@hush.ai).
2771         + review/eliminate other original-file artifacts in cursesw.cc, making
2772           its license consistent with ncurses.
2773         + use ncurses vw_scanw() rather than reading into a fixed buffer in
2774           the c++ binding for scanw() methods (prompted by report by Nuno Dias).
2775         + eliminate fixed-buffer vsprintf() calls in c++ binding.
2776
2777 20070120
2778         + add _nc_leaks_tic() to separate leak-checking of tic library from
2779           term/ncurses libraries, and thereby eliminate a library dependency.
2780         + fix test/mk-test.awk to ignore blank lines.
2781         + correct paths in include/headers, for --srcdir (patch by Miroslav
2782           Lichvar).
2783
2784 20070113
2785         + add a break-statement in misc/shlib to ensure that it exits on the
2786           _first_ matched directory (report by Paul Novak).
2787         + add tack/configure, which can be used to build tack outside the
2788           ncurses build-tree.
2789         + add --with-ticlib option, to build/install the tic-support functions
2790           in a separate library (suggested by Miroslav Lichvar).
2791
2792 20070106
2793         + change MKunctrl.awk to reduce relocation table for unctrl.o
2794         + change MKkeyname.awk to reduce relocation table for keyname.o
2795           (patch by Miroslav Lichvar).
2796
2797 20061230
2798         + modify configure check for libtool's version to trim blank lines
2799           (report by sci-fi@hush.ai).
2800         + modify some modules to allow them to be reentrant if _REENTRANT is
2801           defined: lib_baudrate.c, resizeterm.c (local data only)
2802         + eliminate static data from some modules: add_tries.c, hardscroll.c,
2803           lib_ttyflags.c, lib_twait.c
2804         + improve manpage install to add aliases for the transformed program
2805           names, e.g., from --program-prefix.
2806         + used linklint to verify links in the HTML documentation, made fixes
2807           to manpages as needed.
2808         + fix a typo in curs_mouse.3x (report by William McBrine).
2809         + fix install-rule for ncurses5-config to make the bin-directory.
2810
2811 20061223
2812         + modify configure script to omit the tic (terminfo compiler) support
2813           from ncurses library if --without-progs option is given.
2814         + modify install rule for ncurses5-config to do this via "install.libs"
2815         + modify shared-library rules to allow FreeBSD 3.x to use rpath.
2816         + update config.guess, config.sub
2817
2818 20061217 5.6 release for upload to ftp.gnu.org
2819
2820 20061217
2821         + add ifdef's for <wctype.h> for HPUX, which has the corresponding
2822           definitions in <wchar.h>.
2823         + revert the va_copy() change from 20061202, since it was neither
2824           correct nor portable.
2825         + add $(LOCAL_LIBS) definition to progs/Makefile.in, needed for
2826           rpath on Solaris.
2827         + ignore wide-acs line-drawing characters that wcwidth() claims are
2828           not one-column.  This is a workaround for Solaris' broken locale
2829           support.
2830
2831 20061216
2832         + modify configure --with-gpm option to allow it to accept a parameter,
2833           i.e., the name of the dynamic GPM library to load via dlopen()
2834           (requested by Bryan Henderson).
2835         + add configure option --with-valgrind, changes from vile.
2836         + modify configure script AC_TRY_RUN and AC_TRY_LINK checks to use
2837           'return' in preference to 'exit()'.
2838
2839 20061209
2840         + change default for --with-develop back to "no".
2841         + add XTABS to tracing of TTY bits.
2842         + updated autoconf patch to ifdef-out the misfeature which declares
2843           exit() for configure tests.  This fixes a redefinition warning on
2844           Solaris.
2845         + use ${CC} rather than ${LD} in shared library rules for IRIX64,
2846           Solaris to help ensure that initialization sections are provided for
2847           extra linkage requirements, e.g., of C++ applications (prompted by
2848           comment by Casper Dik in newsgroup).
2849         + rename "$target" in CF_MAN_PAGES to make it easier to distinguish
2850           from the autoconf predefined symbol.  There was no conflict,
2851           since "$target" was used only in the generated edit_man.sh file,
2852           but SuSE's rpm package contains a patch.
2853
2854 20061202
2855         + update man/term.5 to reflect extended terminfo support and hashed
2856           database configuration.
2857         + updates for test/configure script.
2858         + adapted from SuSE rpm package:
2859           + remove long-obsolete workaround for broken-linker which declared
2860             cur_term in tic.c
2861           + improve error recovery in PUTC() macro when wcrtomb() does not
2862             return usable results for an 8-bit character.
2863         + patches from rpm package (SuSE):
2864           + use va_copy() in extra varargs manipulation for tracing version
2865             of printw, etc.
2866           + use a va_list rather than a null in _nc_freeall()'s call to
2867             _nc_printf_string().
2868         + add some see-also references in manpages to show related
2869           wide-character functions (suggested by Claus Fischer).
2870
2871 20061125
2872         + add a check in lib_color.c to ensure caller does not increase COLORS
2873           above max_colors, which is used as an array index (discussion with
2874           Simon Sasburg).
2875         + add ifdef's allowing ncurses to be built with tparm() using either
2876           varargs (the existing status), or using a fixed-parameter list (to
2877           match X/Open).
2878
2879 20061104
2880         + fix redrawing of windows other than stdscr using wredrawln() by
2881           touching the corresponding rows in curscr (discussion with Dan
2882           Gookin).
2883         + add test/redraw.c
2884         + add test/echochar.c
2885         + review/cleanup manpage descriptions of error-returns for form- and
2886           menu-libraries (prompted by FreeBSD docs/46196).
2887
2888 20061028
2889         + add AUTHORS file -TD
2890         + omit the -D options from output of the new config script --cflags
2891           option (suggested by Ralf S Engelschall).
2892         + make NCURSES_INLINE unconditionally defined in curses.h
2893
2894 20061021
2895         + revert change to accommodate bash 3.2, since that breaks other
2896           platforms, e.g., Solaris.
2897         + minor fixes to NEWS file to simplify scripting to obtain list of
2898           contributors.
2899         + improve some shared-library configure scripting for Linux, FreeBSD
2900           and NetBSD to make "--with-shlib-version" work.
2901         + change configure-script rules for FreeBSD shared libraries to allow
2902           for rpath support in versions past 3.
2903         + use $(DESTDIR) in makefile rules for installing/uninstalling the
2904           package config script (reports/patches by Christian Wiese,
2905           Ralf S Engelschall).
2906         + fix a warning in the configure script for NetBSD 2.0, working around
2907           spurious blanks embedded in its ${MAKEFLAGS} symbol.
2908         + change test/Makefile to simplify installing test programs in a
2909           different directory when --enable-rpath is used.
2910
2911 20061014
2912         + work around bug in bash 3.2 by adding extra quotes (Jim Gifford).
2913         + add/install a package config script, e.g., "ncurses5-config" or
2914           "ncursesw5-config", according to configuration options.
2915
2916 20061007
2917         + add several GNU Screen terminfo variations with 16- and 256-colors,
2918           and status line (Alain Bench).
2919         + change the way shared libraries (other than libtool) are installed.
2920           Rather than copying the build-tree's libraries, link the shared
2921           objects into the install directory.  This makes the --with-rpath
2922           option work except with $(DESTDIR) (cf: 20000930).
2923
2924 20060930
2925         + fix ifdef in c++/internal.h for QNX 6.1
2926         + test-compiled with (old) egcs-1.1.2, modified configure script to
2927           not unset the $CXX and related variables which would prevent this.
2928         + fix a few terminfo.src typos exposed by improvments to "-f" option.
2929         + improve infocmp/tic "-f" option formatting.
2930
2931 20060923
2932         + make --disable-largefile option work (report by Thomas M Ott).
2933         + updated html documentation.
2934         + add ka2, kb1, kb3, kc2 to vt220-keypad as an extension -TD
2935         + minor improvements to rxvt+pcfkeys -TD
2936
2937 20060916
2938         + move static data from lib_mouse.c into SCREEN struct.
2939         + improve ifdef's for _POSIX_VDISABLE in tset to work with Mac OS X
2940           (report by Michail Vidiassov).
2941         + modify CF_PATH_SYNTAX to ensure it uses the result from --prefix
2942           option (from lynx changes) -TD
2943         + adapt AC_PROG_EGREP check, noting that this is likely to be another
2944           place aggravated by POSIXLY_CORRECT.
2945         + modify configure check for awk to ensure that it is found (prompted
2946           by report by Christopher Parker).
2947         + update config.sub
2948
2949 20060909
2950         + add kon, kon2 and jfbterm terminfo entry (request by Till Maas) -TD
2951         + remove invis capability from klone+sgr, mainly used by linux entry,
2952           since it does not really do this -TD
2953
2954 20060903
2955         + correct logic in wadd_wch() and wecho_wch(), which did not guard
2956           against passing the multi-column attribute into a call on waddch(),
2957           e.g., using data returned by win_wch() (cf: 20041023)
2958           (report by Sadrul H Chowdhury).
2959
2960 20060902
2961         + fix kterm's acsc string -TD
2962         + fix for change to tic/infocmp in 20060819 to ensure no blank is
2963           embedded into a termcap description.
2964         + workaround for 20050806 ifdef's change to allow visbuf.c to compile
2965           when using --with-termlib --with-trace options.
2966         + improve tgetstr() by making the return value point into the user's
2967           buffer, if provided (patch by Miroslav Lichvar (see Redhat Bugzilla
2968           #202480)).
2969         + correct libraries needed for foldkeys (report by Stanislav Ievlev)
2970
2971 20060826
2972         + add terminfo entries for xfce terminal (xfce) and multi gnome
2973           terminal (mgt) -TD
2974         + add test/foldkeys.c
2975
2976 20060819
2977         + modify tic and infocmp to avoid writing trailing blanks on terminfo
2978           source output (Debian #378783).
2979         + modify configure script to ensure that if the C compiler is used
2980           rather than the loader in making shared libraries, the $(CFLAGS)
2981           variable is also used (Redhat Bugzilla #199369).
2982         + port hashed-db code to db2 and db3.
2983         + fix a bug in tgetent() from 20060625 and 20060715 changes
2984           (patch/analysis by Miroslav Lichvar (see Redhat Bugzilla #202480)).
2985
2986 20060805
2987         + updated xterm function-keys terminfo to match xterm #216 -TD
2988         + add configure --with-hashed-db option (tested only with FreeBSD 6.0,
2989           e.g., the db 1.8.5 interface).
2990
2991 20060729
2992         + modify toe to access termcap data, e.g., via cgetent() functions,
2993           or as a text file if those are not available.
2994         + use _nc_basename() in tset to improve $SHELL check for csh/sh.
2995         + modify _nc_read_entry() and _nc_read_termcap_entry() so infocmp,
2996           can access termcap data when the terminfo database is disabled.
2997
2998 20060722
2999         + widen the test for xterm kmous a little to allow for other strings
3000           than \E[M, e.g., for xterm-sco functionality in xterm.
3001         + update xterm-related terminfo entries to match xterm patch #216 -TD
3002         + update config.guess, config.sub
3003
3004 20060715
3005         + fix for install-rule in Ada95 to add terminal_interface.ads
3006           and terminal_interface.ali (anonymous posting in comp.lang.ada).
3007         + correction to manpage for getcchar() (report by William McBrine).
3008         + add test/chgat.c
3009         + modify wchgat() to mark updated cells as changed so a refresh will
3010           repaint those cells (comments by Sadrul H Chowdhury and William
3011           McBrine).
3012         + split up dependency of names.c and codes.c in ncurses/Makefile to
3013           work with parallel make (report/analysis by Joseph S Myers).
3014         + suppress a warning message (which is ignored) for systems without
3015           an ldconfig program (patch by Justin Hibbits).
3016         + modify configure script --disable-symlinks option to allow one to
3017           disable symlink() in tic even when link() does not work (report by
3018           Nigel Horne).
3019         + modify MKfallback.sh to use tic -x when constructing fallback tables
3020           to allow extended capabilities to be retrieved from a fallback entry.
3021         + improve leak-checking logic in tgetent() from 20060625 to ensure that
3022           it does not free the current screen (report by Miroslav Lichvar).
3023
3024 20060708
3025         + add a check for _POSIX_VDISABLE in tset (NetBSD #33916).
3026         + correct _nc_free_entries() and related functions used for memory leak
3027           checking of tic.
3028
3029 20060701
3030         + revert a minor change for magic-cookie support from 20060513, which
3031           caused unexpected reset of attributes, e.g., when resizing test/view
3032           in color mode.
3033         + note in clear manpage that the program ignores command-line
3034           parameters (prompted by Debian #371855).
3035         + fixes to make lib_gen.c build properly with changes to the configure
3036           --disable-macros option and NCURSES_NOMACROS (cf:  20060527)
3037         + update/correct several terminfo entries -TD
3038         + add some notes regarding copyright to terminfo.src -TD
3039
3040 20060625
3041         + fixes to build Ada95 binding with gnat-4.1.0
3042         + modify read_termtype() so the term_names data is always allocated as
3043           part of the str_table, a better fix for a memory leak (cf: 20030809).
3044         + reduce memory leaks in repeated calls to tgetent() by remembering the
3045           last TERMINAL* value allocated to hold the corresponding data and
3046           freeing that if the tgetent() result buffer is the same as the
3047           previous call (report by "Matt" for FreeBSD gnu/98975).
3048         + modify tack to test extended capability function-key strings.
3049         + improved gnome terminfo entry (GenToo #122566).
3050         + improved xterm-256color terminfo entry (patch by Alain Bench).
3051
3052 20060617
3053         + fix two small memory leaks related to repeated tgetent() calls
3054           with TERM=screen (report by "Matt" for FreeBSD gnu/98975).
3055         + add --enable-signed-char to simplify Debian package.
3056         + reduce name-pollution in term.h by removing #define's for HAVE_xxx
3057           symbols.
3058         + correct typo in curs_terminfo.3x (Debian #369168).
3059
3060 20060603
3061         + enable the mouse in test/movewindow.c
3062         + improve a limit-check in frm_def.c (John Heasley).
3063         + minor copyright fixes.
3064         + change configure script to produce test/Makefile from data file.
3065
3066 20060527
3067         + add a configure option --enable-wgetch-events to enable
3068           NCURSES_WGETCH_EVENTS, and correct the associated loop-logic in
3069           lib_twait.c (report by Bernd Jendrissek).
3070         + remove include/nomacros.h from build, since the ifdef for
3071           NCURSES_NOMACROS makes that obsolete.
3072         + add entrypoints for some functions which were only provided as macros
3073           to make NCURSES_NOMACROS ifdef work properly:  getcurx(), getcury(),
3074           getbegx(), getbegy(), getmaxx(), getmaxy(), getparx() and getpary(),
3075           wgetbkgrnd().
3076         + provide ifdef for NCURSES_NOMACROS which suppresses most macro
3077           definitions from curses.h, i.e., where a macro is defined to override
3078           a function to improve performance.  Allowing a developer to suppress
3079           these definitions can simplify some application (discussion with
3080           Stanislav Ievlev).
3081         + improve description of memu/meml in terminfo manpage.
3082
3083 20060520
3084         + if msgr is false, reset video attributes when doing an automargin
3085           wrap to the next line.  This makes the ncurses 'k' test work properly
3086           for hpterm.
3087         + correct caching of keyname(), which was using only half of its table.
3088         + minor fixes to memory-leak checking.
3089         + make SCREEN._acs_map and SCREEN._screen_acs_map pointers rather than
3090           arrays, making ACS_LEN less visible to applications (suggested by
3091           Stanislav Ievlev).
3092         + move chunk in SCREEN ifdef'd for USE_WIDEC_SUPPORT to the end, so
3093           _screen_acs_map will have the same offset in both ncurses/ncursesw,
3094           making the corresponding tinfo/tinfow libraries binary-compatible
3095           (cf: 20041016, report by Stanislav Ievlev).
3096
3097 20060513
3098         + improve debug-tracing for EmitRange().
3099         + change default for --with-develop to "yes".  Add NCURSES_NO_HARD_TABS
3100           and NCURSES_NO_MAGIC_COOKIE environment variables to allow runtime
3101           suppression of the related hard-tabs and xmc-glitch features.
3102         + add ncurses version number to top-level manpages, e.g., ncurses, tic,
3103           infocmp, terminfo as well as form, menu, panel.
3104         + update config.guess, config.sub
3105         + modify ncurses.c to work around a bug in NetBSD 3.0 curses
3106           (field_buffer returning null for a valid field).  The 'r' test
3107           appears to not work with that configuration since the new_fieldtype()
3108           function is broken in that implementation.
3109
3110 20060506
3111         + add hpterm-color terminfo entry -TD
3112         + fixes to compile test-programs with HPUX 11.23
3113
3114 20060422
3115         + add copyright notices to files other than those that are generated,
3116           data or adapted from pdcurses (reports by William McBrine, David
3117           Taylor).
3118         + improve rendering on hpterm by not resetting attributes at the end
3119           of doupdate() if the terminal has the magic-cookie feature (report
3120           by Bernd Rieke).
3121         + add 256color variants of terminfo entries for programs which are
3122           reported to implement this feature -TD
3123
3124 20060416
3125         + fix typo in change to NewChar() macro from 20060311 changes, which
3126           broke tab-expansion (report by Frederic L W Meunier).
3127
3128 20060415
3129         + document -U option of tic and infocmp.
3130         + modify tic/infocmp to suppress smacs/rmacs when acsc is suppressed
3131           due to size limit, e.g., converting to termcap format.  Also
3132           suppress them if the output format does not contain acsc and it
3133           was not VT100-like, i.e., a one-one mapping (Novell #163715).
3134         + add configure check to ensure that SIGWINCH is defined on platforms
3135           such as OS X which exclude that when _XOPEN_SOURCE, etc., are
3136           defined (report by Nicholas Cole)
3137
3138 20060408
3139         + modify write_object() to not write coincidental extensions of an
3140           entry made due to it being referenced in a use= clause (report by
3141           Alain Bench).
3142         + another fix for infocmp -i option, which did not ensure that some
3143           escape sequences had comparable prefixes (report by Alain Bench).
3144
3145 20060401
3146         + improve discussion of init/reset in terminfo and tput manpages
3147           (report by Alain Bench).
3148         + use is3 string for a fallback of rs3 in the reset program; it was
3149           using is2 (report by Alain Bench).
3150         + correct logic for infocmp -i option, which did not account for
3151           multiple digits in a parameter (cf: 20040828) (report by Alain
3152           Bench).
3153         + move _nc_handle_sigwinch() to lib_setup.c to make --with-termlib
3154           option work after 20060114 changes (report by Arkadiusz Miskiewicz).
3155         + add copyright notices to test-programs as needed (report by William
3156           McBrine).
3157
3158 20060318
3159         + modify ncurses.c 'F' test to combine the wide-characters with color
3160           and/or video attributes.
3161         + modify test/ncurses to use CTL/Q or ESC consistently for exiting
3162           a test-screen (some commands used 'x' or 'q').
3163
3164 20060312
3165         + fix an off-by-one in the scrolling-region change (cf_ 20060311).
3166
3167 20060311
3168         + add checks in waddchnstr() and wadd_wchnstr() to stop copying when
3169           a null character is found (report by Igor Bogomazov).
3170         + modify progs/Makefile.in to make "tput init" work properly with
3171           cygwin, i.e., do not pass a ".exe" in the reference string used
3172           in check_aliases (report by Samuel Thibault).
3173         + add some checks to ensure current position is within scrolling
3174           region before scrolling on a new line (report by Dan Gookin).
3175         + change some NewChar() usage to static variables to work around
3176           stack garbage introduced when cchar_t is not packed (Redhat #182024).
3177
3178 20060225
3179         + workarounds to build test/movewindow with PDcurses 2.7.
3180         + fix for nsterm-16color entry (patch by Alain Bench).
3181         + correct a typo in infocmp manpage (Debian #354281).
3182
3183 20060218
3184         + add nsterm-16color entry -TD
3185         + updated mlterm terminfo entry -TD
3186         + remove 970913 feature for copying subwindows as they are moved in
3187           mvwin() (discussion with Bryan Christ).
3188         + modify test/demo_menus.c to demonstrate moving a menu (both the
3189           window and subwindow) using shifted cursor-keys.
3190         + start implementing recursive mvwin() in movewindow.c (incomplete).
3191         + add a fallback definition for GCC_PRINTFLIKE() in test.priv.h,
3192           for movewindow.c (report by William McBrine).
3193         + add help-message to test/movewindow.c
3194
3195 20060211
3196         + add test/movewindow.c, to test mvderwin().
3197         + fix ncurses soft-key test so color changes are shown immediately
3198           rather than delayed.
3199         + modify ncurses soft-key test to hide the keys when exiting the test
3200           screen.
3201         + fixes to build test programs with PDCurses 2.7, e.g., its headers
3202           rely on autoconf symbols, and it declares stubs for nonfunctional
3203           terminfo and termcap entrypoints.
3204
3205 20060204
3206         + improved test/configure to build test/ncurses on HPUX 11 using the
3207           vendor curses.
3208         + documented ALTERNATE CONFIGURATIONS in the ncurses manpage, for the
3209           benefit of developers who do not read INSTALL.
3210
3211 20060128
3212         + correct form library Window_To_Buffer() change (cf:  20040516), which
3213           should ignore the video attributes (report by Ricardo Cantu).
3214
3215 20060121
3216         + minor fixes to xmc-glitch experimental code:
3217           + suppress line-drawing
3218           + implement max_attributes
3219           tested with xterm.
3220         + minor fixes for the database iterator.
3221         + fix some buffer limits in c++ demo (comment by Falk Hueffner in
3222           Debian #348117).
3223
3224 20060114
3225         + add toe -a option, to show all databases.  This uses new private
3226           interfaces in the ncurses library for iterating through the list of
3227           databases.
3228         + fix toe from 20000909 changes which made it not look at
3229           $HOME/.terminfo
3230         + make toe's -v option parameter optional as per manpage.
3231         + improve SIGWINCH handling by postponing its effect during newterm(),
3232           etc., when allocating screens.
3233
3234 20060111
3235         + modify wgetnstr() to return KEY_RESIZE if a sigwinch occurs.  Use
3236           this in test/filter.c
3237         + fix an error in filter() modification which caused some applications
3238           to fail.
3239
3240 20060107
3241         + check if filter() was called when getting the screensize.  Keep it
3242           at 1 if so (based on Redhat #174498).
3243         + add extension nofilter().
3244         + refined the workaround for ACS mapping.
3245         + make ifdef's consistent in curses.h for the extended colors so the
3246           header file can be used for the normal curses library.  The header
3247           file installed for extended colors is a variation of the
3248           wide-character configuration (report by Frederic L W Meunier).
3249
3250 20051231
3251         + add a workaround to ACS mapping to allow applications such as
3252           test/blue.c to use the "PC ROM" characters by masking them with
3253           A_ALTCHARSET.  This worked up til 5.5, but was lost in the revision
3254           of legacy coding (report by Michael Deutschmann).
3255         + add a null-pointer check in the wide-character version of
3256           calculate_actual_width() (report by Victor Julien).
3257         + improve test/ncurses 'd' (color-edit) test by allowing the RGB
3258           values to be set independently (patch by William McBrine).
3259         + modify test/configure script to allow building test programs with
3260           PDCurses/X11.
3261         + modified test programs to allow some to work with NetBSD curses.
3262           Several do not because NetBSD curses implements a subset of X/Open
3263           curses, and also lacks much of SVr4 additions.  But it's enough for
3264           comparison.
3265         + update config.guess and config.sub
3266
3267 20051224
3268         + use BSD-specific fix for return-value from cgetent() from CVS where
3269           an unknown terminal type would be reportd as "database not found".
3270         + make tgetent() return code more readable using new symbols
3271           TGETENT_YES, etc.
3272         + remove references to non-existent "tctest" program.
3273         + remove TESTPROGS from progs/Makefile.in (it was referring to code
3274           that was never built in that directory).
3275         + typos in curs_addchstr.3x, some doc files (noticed in OpenBSD CVS).
3276
3277 20051217
3278         + add use_legacy_coding() function to support lynx's font-switching
3279           feature.
3280         + fix formatting in curs_termcap.3x (report by Mike Frysinger).
3281         + modify MKlib_gen.sh to change preprocessor-expanded _Bool back to
3282           bool.
3283
3284 20051210
3285         + extend test/ncurses.c 's' (overlay window) test to exercise overlay(),
3286           overwrite() and copywin() with different combinations of colors and
3287           attributes (including background color) to make it easy to see the
3288           effect of the different functions.
3289         + corrections to menu/m_global.c for wide-characters (report by
3290           Victor Julien).
3291
3292 20051203
3293         + add configure option --without-dlsym, allowing developers to
3294           configure GPM support without using dlsym() (discussion with Michael
3295           Setzer).
3296         + fix wins_nwstr(), which did not handle single-column non-8bit codes
3297           (Debian #341661).
3298
3299 20051126
3300         + move prototypes for wide-character trace functions from curses.tail
3301           to curses.wide to avoid accidental reference to those if
3302           _XOPEN_SOURCE_EXTENDED is defined without ensuring that <wchar.h> is
3303           included.
3304         + add/use NCURSES_INLINE definition.
3305         + change some internal functions to use int/unsigned rather than the
3306           short equivalents.
3307
3308 20051119
3309         + remove a redundant check in lib_color.c (Debian #335655).
3310         + use ld's -search_paths_first option on Darwin to work around odd
3311           search rules on that platform (report by Christian Gennerat, analysis
3312           by Andrea Govoni).
3313         + remove special case for Darwin in CF_XOPEN_SOURCE configure macro.
3314         + ignore EINTR in tcgetattr/tcsetattr calls (Debian #339518).
3315         + fix several bugs in test/bs.c (patch by Stephen Lindholm).
3316
3317 20051112
3318         + other minor fixes to cygwin based on tack -TD
3319         + correct smacs in cygwin (Debian #338234, report by Baurzhan
3320           Ismagulov, who noted that it was fixed in Cygwin).
3321
3322 20051029
3323         + add shifted up/down arrow codes to xterm-new as kind/kri strings -TD
3324         + modify wbkgrnd() to avoid clearing the A_CHARTEXT attribute bits
3325           since those record the state of multicolumn characters (Debian
3326           #316663).
3327         + modify werase to clear multicolumn characters that extend into
3328           a derived window (Debian #316663).
3329
3330 20051022
3331         + move assignment from environment variable ESCDELAY from initscr()
3332           down to newterm() so the environment variable affects timeouts for
3333           terminals opened with newterm() as well.
3334         + fix a memory leak in keyname().
3335         + add test/demo_altkeys.c
3336         + modify test/demo_defkey.c to exit from loop via 'q' to allow
3337           leak-checking, as well as fix a buffer size in winnstr() call.
3338
3339 20051015
3340         + correct order of use-clauses in rxvt-basic entry which made codes for
3341           f1-f4 vt100-style rather than vt220-style (report by Gabor Z Papp).
3342         + suppress configure check for gnatmake if Ada95/Makefile.in is not
3343           found.
3344         + correct a typo in configure --with-bool option for the case where
3345           --without-cxx is used (report by Daniel Jacobowitz).
3346         + add a note to INSTALL's discussion of --with-normal, pointing out
3347           that one may wish to use --without-gpm to ensure a completely
3348           static link (prompted by report by Felix von Leitner).
3349
3350 20051010 5.5 release for upload to ftp.gnu.org
3351
3352 20051008
3353         + document in demo_forms.c some portability issues.
3354
3355 20051001
3356         + document side-effect of werase() which sets the cursor position.
3357         + save/restore the current position in form field editing to make
3358           overlay mode work.
3359
3360 20050924
3361         + correct header dependencies in progs, allowing parallel make (report
3362           by Daniel Jacobowitz).
3363         + modify CF_BUILD_CC to ensure that pre-setting $BUILD_CC overrides
3364           the configure check for --with-build-cc (report by Daniel Jacobowitz).
3365         + modify CF_CFG_DEFAULTS to not use /usr as the default prefix for
3366           NetBSD.
3367         + update config.guess and config.sub from
3368                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
3369
3370 20050917
3371         + modify sed expression which computes path for /usr/lib/terminfo
3372           symbolic link in install to ensure that it does not change unexpected
3373           levels of the path (Gentoo #42336).
3374         + modify default for --disable-lp64 configure option to reduce impact
3375           on existing 64-bit builds.  Enabling the _LP64 option may change the
3376           size of chtype and mmask_t.  However, for ABI 6, it is enabled by
3377           default (report by Mike Frysinger).
3378         + add configure script check for --enable-ext-mouse, bump ABI to 6 by
3379           default if it is used.
3380         + improve configure script logic for bumping ABI to omit this if the
3381           --with-abi-version option was used.
3382         + update address for Free Software Foundation in tack's source.
3383         + correct wins_wch(), which was not marking the filler-cells of
3384           multi-column characters (cf:  20041023).
3385
3386 20050910
3387         + modify mouse initialization to ensure that Gpm_Open() is called only
3388           once.  Otherwise GPM gets confused in its initialization of signal
3389           handlers (Debian #326709).
3390
3391 20050903
3392         + modify logic for backspacing in a multiline form field to ensure that
3393           it works even when the preceding line is full (report by Frank van
3394           Vugt).
3395         + remove comment about BUGS section of ncurses manpage (Debian #325481)
3396
3397 20050827
3398         + document some workarounds for shared and libtool library
3399           configurations in INSTALL (see --with-shared and --with-libtool).
3400         + modify CF_GCC_VERSION and CF_GXX_VERSION macros to accommodate
3401           cross-compilers which emit the platform name in their version
3402           message, e.g.,
3403                 arm-sa1100-linux-gnu-g++ (GCC) 4.0.1
3404           (report by Frank van Vugt).
3405
3406 20050820
3407         + start updating documentation for upcoming 5.5 release.
3408         + fix to make libtool  and libtinfo work together again (cf: 20050122).
3409         + fixes to allow building traces into libtinfo
3410         + add debug trace to tic that shows if/how ncurses will write to the
3411           lower corner of a terminal's screen.
3412         + update llib-l* files.
3413
3414 20050813
3415         + modify initializers in c++ binding to build with old versions of g++.
3416         + improve special case for 20050115 repainting fix, ensuring that if
3417           the first changed cell is not a character that the range to be
3418           repainted is adjusted to start at a character's beginning (Debian
3419           #316663).
3420
3421 20050806
3422         + fixes to build on QNX 6.1
3423         + improve configure script checks for Intel 9.0 compiler.
3424         + remove #include's for libc.h (obsolete).
3425         + adjust ifdef's in curses.priv.h so that when cross-compiling to
3426           produce comp_hash and make_keys, no dependency on wchar.h is needed.
3427           That simplifies the build-cppflags (report by Frank van Vugt).
3428         + move modules related to key-binding into libtinfo to fix linkage
3429           problem caused by 20050430 changes to MKkeyname.sh (report by
3430           Konstantin Andreev).
3431
3432 20050723
3433         + updates/fixes for configure script macros from vile -TD
3434         + make prism9's sgr string agree with the rest of the terminfo -TD
3435         + make vt220's sgr0 string consistent with sgr string, do this for
3436           several related cases -TD
3437         + improve translation to termcap by filtering the 'me' (sgr0) strings
3438           as in the runtime call to tgetent() (prompted by a discussion with
3439           Thomas Klausner).
3440         + improve tic check for sgr0 versus sgr(0), to help ensure that sgr0
3441           resets line-drawing.
3442
3443 20050716
3444         + fix special cases for trimming sgr0 for hurd and vt220 (Debian
3445           #318621).
3446         + split-out _nc_trim_sgr0() from modifications made to tgetent(), to
3447           allow it to be used by tic to provide information about the runtime
3448           changes that would be made to sgr0 for termcap applications.
3449         + modify make_sed.sh to make the group-name in the NAME section of
3450           form/menu library manpage agree with the TITLE string when renaming
3451           is done for Debian (Debian #78866).
3452
3453 20050702
3454         + modify parameter type in c++ binding for insch() and mvwinsch() to
3455           be consistent with underlying ncurses library (was char, is chtype).
3456         + modify treatment of Intel compiler to allow _GNU_SOURCE to be defined
3457           on Linux.
3458         + improve configure check for nanosleep(), checking that it works since
3459           some older systems such as AIX 4.3 have a nonworking version.
3460
3461 20050625
3462         + update config.guess and config.sub from
3463                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
3464         + modify misc/shlib to work in test-directory.
3465         + suppress $suffix in misc/run_tic.sh when cross-compiling.  This
3466           allows cross-compiles to use the host's tic program to handle the
3467           "make install.data" step.
3468         + improve description of $LINES and $COLUMNS variables in manpages
3469           (prompted by report by Dave Ulrick).
3470         + improve description of cross-compiling in INSTALL
3471         + add NCURSES-Programming-HOWTO.html by Pradeep Padala
3472           (see http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/).
3473         + modify configure script to obtain soname for GPM library (discussion
3474           with Daniel Jacobowitz).
3475         + modify configure script so that --with-chtype option will still
3476           compute the unsigned literals suffix for constants in curses.h
3477           (report by Daniel Jacobowitz:
3478         + patches from Daniel Jacobowitz:
3479           + the man_db.renames entry for tack.1 was backwards.
3480           + tack.1 had some 1m's that should have been 1M's.
3481           + the section for curs_inwstr.3 was wrong.
3482
3483 20050619
3484         + correction to --with-chtype option (report by Daniel Jacobowitz).
3485
3486 20050618
3487         + move build-time edit_man.sh and edit_man.sed scripts to top directory
3488           to simplify reusing them for renaming tack's manpage (prompted by a
3489           review of Debian package).
3490         + revert minor optimization from 20041030 (Debian #313609).
3491         + libtool-specific fixes, tested with libtool 1.4.3, 1.5.0, 1.5.6,
3492           1.5.10 and 1.5.18 (all work except as noted previously for the c++
3493           install using libtool 1.5.0):
3494           + modify the clean-rule in c++/Makefile.in to work with IRIX64 make
3495             program.
3496           + use $(LIBTOOL_UNINSTALL) symbol, overlooked in 20030830
3497         + add configure options --with-chtype and --with-mmask-t, to allow
3498           overriding of the non-LP64 model's use of the corresponding types.
3499         + revise test for size of chtype (and mmask_t), which always returned
3500           "long" due to an uninitialized variable (report by Daniel Jacobowitz).
3501
3502 20050611
3503         + change _tracef's that used "%p" format for va_list values to ignore
3504           that, since on some platforms those are not pointers.
3505         + fixes for long-formats in printf's due to largefile support.
3506
3507 20050604
3508         + fixes for termcap support:
3509           + reset pointer to _nc_curr_token.tk_name when the input stream is
3510             closed, which could point to free memory (cf: 20030215).
3511           + delink TERMTYPE data which is used by the termcap reader, so that
3512             extended names data will be freed consistently.
3513           + free pointer to TERMTYPE data in _nc_free_termtype() rather than
3514             its callers.
3515           + add some entrypoints for freeing permanently allocated data via
3516             _nc_freeall() when NO_LEAKS is defined.
3517         + amend 20041030 change to _nc_do_color to ensure that optimization is
3518           applied only when the terminal supports back_color_erase (bce).
3519
3520 20050528
3521         + add sun-color terminfo entry -TD
3522         + correct a missing assignment in c++ binding's method
3523           NCursesPanel::UserPointer() from 20050409 changes.
3524         + improve configure check for large-files, adding check for dirent64
3525           from vile -TD
3526         + minor change to configure script to improve linker options for the
3527           Ada95 tree.
3528
3529 20050515
3530         + document error conditions for ncurses library functions (report by
3531           Stanislav Ievlev).
3532         + regenerated html documentation for ada binding.
3533           see ftp://invisible-island.net/ncurses/patches/gnathtml
3534
3535 20050507
3536         + regenerated html documentation for manpages.
3537         + add $(BUILD_EXEEXT) suffix to invocation of make_keys in
3538           ncurses/Makefile (Gentoo #89772).
3539         + modify c++/demo.cc to build with g++ -fno-implicit-templates option
3540           (patch by Mike Frysinger).
3541         + modify tic to filter out long extended names when translating to
3542           termcap format.  Only two characters are permissible for termcap
3543           capability names.
3544
3545 20050430
3546         + modify terminfo entries xterm-new and rxvt to add strings for
3547           shift-, control-cursor keys.
3548         + workaround to allow c++ binding to compile with g++ 2.95.3, which
3549           has a broken implementation of static_cast<> (patch by Jeff Chua).
3550         + modify initialization of key lookup table so that if an extended
3551           capability (tic -x) string is defined, and its name begins with 'k',
3552           it will automatically be treated as a key.
3553         + modify test/keynames.c to allow for the possibility of extended
3554           key names, e.g., via define_key(), or via "tic -x".
3555         + add test/demo_termcap.c to show the contents of given entry via the
3556           termcap interface.
3557
3558 20050423
3559         + minor fixes for vt100/vt52 entries -TD
3560         + add configure option --enable-largefile
3561         + corrected libraries used to build Ada95/gen/gen, found in testing
3562           gcc 4.0.0.
3563
3564 20050416
3565         + update config.guess, config.sub
3566         + modify configure script check for _XOPEN_SOURCE, disable that on
3567           Darwin whose header files have problems (patch by Chris Zubrzycki).
3568         + modify form library Is_Printable_String() to use iswprint() rather
3569           than wcwidth() for determining if a character is printable.  The
3570           latter caused it to reject menu items containing non-spacing
3571           characters.
3572         + modify ncurses test program's F-test to handle non-spacing characters
3573           by combining them with a reverse-video blank.
3574         + review/fix several gcc -Wconversion warnings.
3575
3576 20050409
3577         + correct an off-by-one error in m_driver() for mouse-clicks used to
3578           position the mouse to a particular item.
3579         + implement test/demo_menus.c
3580         + add some checks in lib_mouse to ensure SP is set.
3581         + modify C++ binding to make 20050403 changes work with the configure
3582           --enable-const option.
3583
3584 20050403
3585         + modify start_color() to return ERR if it cannot allocate memory.
3586         + address g++ compiler warnings in C++ binding by adding explicit
3587           member initialization, assignment operators and copy constructors.
3588           Most of the changes simply preserve the existing semantics of the
3589           binding, which can leak memory, etc., but by making these features
3590           visible, it provides a framework for improving the binding.
3591         + improve C++ binding using static_cast, etc.
3592         + modify configure script --enable-warnings to add options to g++ to
3593           correspond to the gcc --enable-warnings.
3594         + modify C++ binding to use some C internal functions to make it
3595           compile properly on Solaris (and other platforms).
3596
3597 20050327
3598         + amend change from 20050320 to limit it to configurations with a
3599           valid locale.
3600         + fix a bug introduced in 20050320 which broke the translation of
3601           nonprinting characters to uparrow form (report by Takahashi Tamotsu).
3602
3603 20050326
3604         + add ifdef's for _LP64 in curses.h to avoid using wasteful 64-bits for
3605           chtype and mmask_t, but add configure option --disable-lp64 in case
3606           anyone used that configuration.
3607         + update misc/shlib script to account for Mac OS X (report by Michail
3608           Vidiassov).
3609         + correct comparison for wrapping multibyte characters in
3610           waddch_literal() (report by Takahashi Tamotsu).
3611
3612 20050320
3613         + add -c and -w options to tset to allow user to suppress ncurses'
3614           resizing of the terminal emulator window in the special case where it
3615           is not able to detect the true size (report by Win Delvaux, Debian
3616           #300419).
3617         + modify waddch_nosync() to account for locale zn_CH.GBK, which uses
3618           codes 128-159 as part of multibyte characters (report by Wang
3619           WenRui, Debian #300512).
3620
3621 20050319
3622         + modify ncurses.c 'd' test to make it work with 88-color
3623           configuration, i.e., by implementing scrolling.
3624         + improve scrolling in ncurses.c 'c' and 'C' tests, e.g., for 88-color
3625           configuration.
3626
3627 20050312
3628         + change tracemunch to use strict checking.
3629         + modify ncurses.c 'p' test to test line-drawing within a pad.
3630         + implement environment variable NCURSES_NO_UTF8_ACS to support
3631           miscellaneous terminal emulators which ignore alternate character
3632           set escape sequences when in UTF-8 mode.
3633
3634 20050305
3635         + change NCursesWindow::err_handler() to a virtual function (request by
3636           Steve Beal).
3637         + modify fty_int.c and fty_num.c to handle wide characters (report by
3638           Wolfgang Gutjahr).
3639         + adapt fix for fty_alpha.c to fty_alnum.c, which also handled normal
3640           and wide characters inconsistently (report by Wolfgang Gutjahr).
3641         + update llib-* files to reflect internal interface additions/changes.
3642
3643 20050226
3644         + improve test/configure script, adding tests for _XOPEN_SOURCE, etc.,
3645           from lynx.
3646         + add aixterm-16color terminfo entry -TD
3647         + modified xterm-new terminfo entry to work with tgetent() changes -TD
3648         + extended changes in tgetent() from 20040710 to allow the substring of
3649           sgr0 which matches rmacs to be at the beginning of the sgr0 string
3650           (request by Thomas Wolff).  Wolff says the visual effect in
3651           combination with pre-20040710 ncurses is improved.
3652         + fix off-by-one in winnstr() call which caused form field validation
3653           of multibyte characters to ignore the last character in a field.
3654         + correct logic in winsch() for inserting multibyte strings; the code
3655           would clear cells after the insertion rather than push them to the
3656           right (cf: 20040228).
3657         + fix an inconsistency in Check_Alpha_Field() between normal and wide
3658           character logic (report by Wolfgang Gutjahr).
3659
3660 20050219
3661         + fix a bug in editing wide-characters in form library: deleting a
3662           nonwide character modified the previous wide-character.
3663         + update manpage to describe NCURSES_MOUSE_VERSION 2.
3664         + correct manpage description of mouseinterval() (Debian #280687).
3665         + add a note to default_colors.3x explaining why this extension was
3666           added (Debian #295083).
3667         + add traces to panel library.
3668
3669 20050212
3670         + improve editing of wide-characters in form library:  left/right
3671           cursor movement, and single-character deletions work properly.
3672         + disable GPM mouse support when $TERM happens to be prefixed with
3673           "xterm".  Gpm_Open() would otherwise assert that it can deal with
3674           mouse events in this case.
3675         + modify GPM mouse support so it closes the server connection when
3676           the caller disables the mouse (report by Stanislav Ievlev).
3677
3678 20050205
3679         + add traces for callback functions in form library.
3680         + add experimental configure option --enable-ext-mouse, which defines
3681           NCURSES_MOUSE_VERSION 2, and modifies the encoding of mouse events to
3682           support wheel mice, which may transmit buttons 4 and 5.  This works
3683           with xterm and similar X terminal emulators (prompted by question by
3684           Andreas Henningsson, this is also related to Debian #230990).
3685         + improve configure macros CF_XOPEN_SOURCE and CF_POSIX_C_SOURCE to
3686           avoid redefinition warnings on cygwin.
3687
3688 20050129
3689         + merge remaining development changes for extended colors (mostly
3690           complete, does not appear to break other configurations).
3691         + add xterm-88color.dat (part of extended colors testing).
3692         + improve _tracedump() handling of color pairs past 96.
3693         + modify return-value from start_color() to return OK if colors have
3694           already been started.
3695         + modify curs_color.3x list error conditions for init_pair(),
3696           pair_content() and color_content().
3697         + modify pair_content() to return -1 for consistency with init_pair()
3698           if it corresponds to the default-color.
3699         + change internal representation of default-color to allow application
3700           to use color number 255.  This does not affect the total number of
3701           color pairs which are allowed.
3702         + add a top-level tags rule.
3703
3704 20050122
3705         + add a null-pointer check in wgetch() in case it is called without
3706           first calling initscr().
3707         + add some null-pointer checks for SP, which is not set by libtinfo.
3708         + modify misc/shlib to ensure that absolute pathnames are used.
3709         + modify test/Makefile.in, etc., to link test programs only against the
3710           libraries needed, e.g., omit form/menu/panel library for the ones
3711           that are curses-specific.
3712         + change SP->_current_attr to a pointer, adjust ifdef's to ensure that
3713           libtinfo.so and libtinfow.so have the same ABI.  The reason for this
3714           is that the corresponding data which belongs to the upper-level
3715           ncurses library has a different size in each model (report by
3716           Stanislav Ievlev).
3717
3718 20050115
3719         + minor fixes to allow test-compiles with g++.
3720         + correct column value shown in tic's warnings, which did not account
3721           for leading whitespace.
3722         + add a check in _nc_trans_string() for improperly ended strings, i.e.,
3723           where a following line begins in column 1.
3724         + modify _nc_save_str() to return a null pointer on buffer overflow.
3725         + improve repainting while scrolling wide-character data (Eungkyu Song).
3726
3727 20050108
3728         + merge some development changes to extend color capabilities.
3729
3730 20050101
3731         + merge some development changes to extend color capabilities.
3732         + fix manpage typo (FreeBSD report docs/75544).
3733         + update config.guess, config.sub
3734         > patches for configure script (Albert Chin-A-Young):
3735         + improved fix to make mbstate_t recognized on HPUX 11i (cf:
3736           20030705), making vsscanf() prototype visible on IRIX64.  Tested for
3737           on HP-UX 11i, Solaris 7, 8, 9, AIX 4.3.3, 5.2, Tru64 UNIX 4.0D, 5.1,
3738           IRIX64 6.5, Redhat Linux 7.1, 9, and RHEL 2.1, 3.0.
3739         + print the result of the --disable-home-terminfo option.
3740         + use -rpath when compiling with SGI C compiler.
3741
3742 20041225
3743         + add trace calls to remaining public functions in form and menu
3744           libraries.
3745         + fix check for numeric digits in test/ncurses.c 'b' and 'B' tests.
3746         + fix typo in test/ncurses.c 'c' test from 20041218.
3747
3748 20041218
3749         + revise test/ncurses.c 'c' color test to improve use for xterm-88color
3750           and xterm-256color, added 'C' test using the wide-character color_set
3751           and attr_set functions.
3752
3753 20041211
3754         + modify configure script to work with Intel compiler.
3755         + fix an limit-check in wadd_wchnstr() which caused labels in the
3756           forms-demo to be one character short.
3757         + fix typo in curs_addchstr.3x (Jared Yanovich).
3758         + add trace calls to most functions in form and menu libraries.
3759         + update working-position for adding wide-characters when window is
3760           scrolled (prompted by related report by Eungkyu Song).
3761
3762 20041204
3763         + replace some references on Linux to wcrtomb() which use it to obtain
3764           the length of a multibyte string with _nc_wcrtomb, since wcrtomb() is
3765           broken in glibc (see Debian #284260).
3766         + corrected length-computation in wide-character support for
3767           field_buffer().
3768         + some fixes to frm_driver.c to allow it to accept multibyte input.
3769         + modify configure script to work with Intel 8.0 compiler.
3770
3771 20041127
3772         + amend change to setupterm() in 20030405 which would reuse the value
3773           of cur_term if the same output was selected.  This now reuses it only
3774           when setupterm() is called from tgetent(), which has no notion of
3775           separate SCREENs.  Note that tgetent() must be called after initscr()
3776           or newterm() to use this feature (Redhat Bugzilla #140326).
3777         + add a check in CF_BUILD_CC macro to ensure that developer has given
3778           the --with-build-cc option when cross-compiling (report by Alexandre
3779           Campo).
3780         + improved configure script checks for _XOPEN_SOURCE and
3781           _POSIX_C_SOURCE (fix for IRIX 5.3 from Georg Schwarz, _POSIX_C_SOURCE
3782           updates from lynx).
3783         + cosmetic fix to test/gdc.c to recolor the bottom edge of the box
3784           for consistency (comment by Dan Nelson).
3785
3786 20041120
3787         + update wsvt25 terminfo entry -TD
3788         + modify test/ins_wide.c to test all flavors of ins_wstr().
3789         + ignore filler-cells in wadd_wchnstr() when adding a cchar_t array
3790           which consists of multi-column characters, since this function
3791           constructs them (cf: 20041023).
3792         + modify winnstr() to return multibyte character strings for the
3793           wide-character configuration.
3794
3795 20041106
3796         + fixes to make slk_set() and slk_wset() accept and store multibyte
3797           or multicolumn characters.
3798
3799 20041030
3800         + improve color optimization a little by making _nc_do_color() check
3801           if the old/new pairs are equivalent to the default pair 0.
3802         + modify assume_default_colors() to not require that
3803           use_default_colors() be called first.
3804
3805 20041023
3806         + modify term_attrs() to use termattrs(), add the extended attributes
3807           such as enter_horizontal_hl_mode for WA_HORIZONTAL to term_attrs().
3808         + add logic in waddch_literal() to clear orphaned cells when one
3809           multi-column character partly overwrites another.
3810         + improved logic for clearing cells when a multi-column character
3811           must be wrapped to a new line.
3812         + revise storage of cells for multi-column characters to correct a
3813           problem with repainting.  In the old scheme, it was possible for
3814           doupdate() to decide that only part of a multi-column character
3815           should be repainted since the filler cells stored only an attribute
3816           to denote them as fillers, rather than the character value and the
3817           attribute.
3818
3819 20041016
3820         + minor fixes for traces.
3821         + add SP->_screen_acs_map[], used to ensure that mapping of missing
3822           line-drawing characters is handled properly.  For example, ACS_DARROW
3823           is absent from xterm-new, and it was coincidentally displayed the
3824           same as ACS_BTEE.
3825
3826 20041009
3827         + amend 20021221 workaround for broken acs to reset the sgr, rmacs
3828           and smacs strings as well.  Also modify the check for screen's
3829           limitations in that area to allow the multi-character shift-in
3830           and shift-out which seem to work.
3831         + change GPM initialization, using dl library to load it dynamically
3832           at runtime (Debian #110586).
3833
3834 20041002
3835         + correct logic for color pair in setcchar() and getcchar() (patch by
3836           Marcin 'Qrczak' Kowalczyk).
3837         + add t/T commands to ncurses b/B tests to allow a different color to
3838           be tested for the attrset part of the test than is used in the
3839           background color.
3840
3841 20040925
3842         + fix to make setcchar() to work when its wchar_t* parameter is
3843           pointing to a string which contains more data than can be converted.
3844         + modify wget_wstr() and example in ncurses.c to work if wchar_t and
3845           wint_t are different sizes (report by Marcin 'Qrczak' Kowalczyk).
3846
3847 20040918
3848         + remove check in wget_wch() added to fix an infinite loop, appears to
3849           have been working around a transitory glibc bug, and interferes
3850           with normal operation (report by Marcin 'Qrczak' Kowalczyk).
3851         + correct wadd_wch() and wecho_wch(), which did not pass the rendition
3852           information (report by Marcin 'Qrczak' Kowalczyk).
3853         + fix aclocal.m4 so that the wide-character version of ncurses gets
3854           compiled as libncursesw.5.dylib, instead of libncurses.5w.dylib
3855           (adapted from patch by James J Ramsey).
3856         + change configure script for --with-caps option to indicate that it
3857           is no longer experimental.
3858         + change configure script to reflect the fact that --enable-widec has
3859           not been "experimental" since 5.3 (report by Bruno Lustosa).
3860
3861 20040911
3862         + add 'B' test to ncurses.c, to exercise some wide-character functions.
3863
3864 20040828
3865         + modify infocmp -i option to match 8-bit controls against its table
3866           entries, e.g., so it can analyze the xterm-8bit entry.
3867         + add morphos terminfo entry, improve amiga-8bit entry (Pavel Fedin).
3868         + correct translation of "%%" in terminfo format to termcap, e.g.,
3869           using "tic -C" (Redhat Bugzilla #130921).
3870         + modified configure script CF_XOPEN_SOURCE macro to ensure that if
3871           it defines _POSIX_C_SOURCE, that it defines it to a specific value
3872           (comp.os.stratus newsgroup comment).
3873
3874 20040821
3875         + fixes to build with Ada95 binding with gnat 3.4 (all warnings are
3876           fatal, and gnat does not follow the guidelines for pragmas).
3877           However that did find a coding error in Assume_Default_Colors().
3878         + modify several terminfo entries to ensure xterm mouse and cursor
3879           visibility are reset in rs2 string:  hurd, putty, gnome,
3880           konsole-base, mlterm, Eterm, screen (Debian #265784, #55637).  The
3881           xterm entries are left alone - old ones for compatibility, and the
3882           new ones do not require this change. -TD
3883
3884 20040814
3885         + fake a SIGWINCH in newterm() to accommodate buggy terminal emulators
3886           and window managers (Debian #265631).
3887         > terminfo updates -TD
3888         + remove dch/dch1 from rxvt because they are implemented inconsistently
3889           with the common usage of bce/ech
3890         + remove khome from vt220 (vt220's have no home key)
3891         + add rxvt+pcfkeys
3892
3893 20040807
3894         + modify test/ncurses.c 'b' test, adding v/V toggles to cycle through
3895           combinations of video attributes so that for instance bold and
3896           underline can be tested.  This made the legend too crowded, added
3897           a help window as well.
3898         + modify test/ncurses.c 'b' test to cycle through default colors if
3899           the -d option is set.
3900         + update putty terminfo entry (Robert de Bath).
3901
3902 20040731
3903         + modify test/cardfile.c to allow it to read more data than can be
3904           displayed.
3905         + correct logic in resizeterm.c which kept it from processing all
3906           levels of window hierarchy (reports by Folkert van Heusden,
3907           Chris Share).
3908
3909 20040724
3910         + modify "tic -cv" to ignore delays when comparing strings.  Also
3911           modify it to ignore a canceled sgr string, e.g., for terminals which
3912           cannot properly combine attributes in one control sequence.
3913         + corrections for gnome and konsole entries (Redhat Bugzilla #122815,
3914           patch by Hans de Goede)
3915         > terminfo updates -TD
3916         + make ncsa-m rmacs/smacs consistent with sgr
3917         + add sgr, rc/sc and ech to syscons entries
3918         + add function-keys to decansi
3919         + add sgr to mterm-ansi
3920         + add sgr, civis, cnorm to emu
3921         + correct/simplify cup in addrinfo
3922
3923 20040717
3924         > terminfo updates -TD
3925         + add xterm-pc-fkeys
3926         + review/update gnome and gnome-rh90 entries (prompted by Redhat
3927           Bugzilla #122815).
3928         + review/update konsole entries
3929         + add sgr, correct sgr0 for kterm and mlterm
3930         + correct tsl string in kterm
3931
3932 20040711
3933         + add configure option --without-xterm-new
3934
3935 20040710
3936         + add check in wget_wch() for printable bytes that are not part of a
3937           multibyte character.
3938         + modify wadd_wchnstr() to render text using window's background
3939           attributes.
3940         + improve tic's check to compare sgr and sgr0.
3941         + fix c++ directory's .cc.i rule.
3942         + modify logic in tgetent() which adjusts the termcap "me" string
3943           to work with ISO-2022 string used in xterm-new (cf: 20010908).
3944         + modify tic's check for conflicting function keys to omit that if
3945           converting termcap to termcap format.
3946         + add -U option to tic and infocmp.
3947         + add rmam/smam to linux terminfo entry (Trevor Van Bremen)
3948         > terminfo updates -TD
3949         + minor fixes for emu
3950         + add emu-220
3951         + change wyse acsc strings to use 'i' map rather than 'I'
3952         + fixes for avatar0
3953         + fixes for vp3a+
3954
3955 20040703
3956         + use tic -x to install terminfo database -TD
3957         + add -x to infocmp's usage message.
3958         + correct field used for comparing O_ROWMAJOR in set_menu_format()
3959           (report/patch by Tony Li).
3960         + fix a missing nul check in set_field_buffer() from 20040508 changes.
3961         > terminfo updates -TD
3962           + make xterm-xf86-v43 derived from xterm-xf86-v40 rather than
3963             xterm-basic -TD
3964           + align with xterm patch #192's use of xterm-new -TD
3965           + update xterm-new and xterm-8bit for cvvis/cnorm strings -TD
3966           + make xterm-new the default "xterm" entry -TD
3967
3968 20040626
3969         + correct BUILD_CPPFLAGS substitution in ncurses/Makefile.in, to allow
3970           cross-compiling from a separate directory tree (report/patch by
3971           Dan Engel).
3972         + modify is_term_resized() to ensure that window sizes are nonzero,
3973           as documented in the manpage (report by Ian Collier).
3974         + modify CF_XOPEN_SOURCE configure macro to make Hurd port build
3975           (Debian #249214, report/patch by Jeff Bailey).
3976         + configure-script mods from xterm, e.g., updates to CF_ADD_CFLAGS
3977         + update config.guess, config.sub
3978         > terminfo updates -TD
3979           + add mlterm
3980           + add xterm-xf86-v44
3981           + modify xterm-new aka xterm-xfree86 to accommodate luit, which
3982             relies on G1 being used via an ISO-2022 escape sequence (report by
3983             Juliusz Chroboczek)
3984           + add 'hurd' entry
3985
3986 20040619
3987         + reconsidered winsnstr(), decided after comparing other
3988           implementations that wrapping is an X/Open documentation error.
3989         + modify test/inserts.c to test all flavors of insstr().
3990
3991 20040605
3992         + add setlocale() calls to a few test programs which may require it:
3993           demo_forms.c, filter.c, ins_wide.c, inserts.c
3994         + correct a few misspelled function names in ncurses-intro.html (report
3995           by Tony Li).
3996         + correct internal name of key_defined() manpage, which conflicted with
3997           define_key().
3998
3999 20040529
4000         + correct size of internal pad used for holding wide-character
4001           field_buffer() results.
4002         + modify data_ahead() to work with wide-characters.
4003
4004 20040522
4005         + improve description of terminfo if-then-else expressions (suggested
4006           by Arne Thomassen).
4007         + improve test/ncurses.c 'd' test, allow it to use external file for
4008           initial palette (added xterm-16color.dat and linux-color.dat), and
4009           reset colors to the initial palette when starting/ending the test.
4010         + change limit-check in init_color() to allow r/g/b component to
4011           reach 1000 (cf: 20020928).
4012
4013 20040516
4014         + modify form library to use cchar_t's rather than char's in the
4015           wide-character configuration for storing data for field buffers.
4016         + correct logic of win_wchnstr(), which did not work for more than
4017           one cell.
4018
4019 20040508
4020         + replace memset/memcpy usage in form library with for-loops to
4021           simplify changing the datatype of FIELD.buf, part of wide-character
4022           changes.
4023         + fix some inconsistent use of #if/#ifdef (report by Alain Guibert).
4024
4025 20040501
4026         + modify menu library to account for actual number of columns used by
4027           multibyte character strings, in the wide-character configuration
4028           (adapted from patch by Philipp Tomsich).
4029         + add "-x" option to infocmp like tic's "-x", for use in "-F"
4030           comparisons.  This modifies infocmp to only report extended
4031           capabilities if the -x option is given, making this more consistent
4032           with tic.  Some scripts may break, since infocmp previous gave this
4033           information without an option.
4034         + modify termcap-parsing to retain 2-character aliases at the beginning
4035           of an entry if the "-x" option is used in tic.
4036
4037 20040424
4038         + minor compiler-warning and test-program fixes.
4039
4040 20040417
4041         + modify tic's missing-sgr warning to apply to terminfo only.
4042         + free some memory leaks in tic.
4043         + remove check in post_menu() that prevented menus from extending
4044           beyond the screen (request by Max J. Werner).
4045         + remove check in newwin() that prevents allocating windows
4046           that extend beyond the screen.  Solaris curses does this.
4047         + add ifdef in test/color_set.c to allow it to compile with older
4048           curses.
4049         + add napms() calls to test/dots.c to make it not be a CPU hog.
4050
4051 20040403
4052         + modify unctrl() to return null if its parameter does not correspond
4053           to an unsigned char.
4054         + add some limit-checks to guard isprint(), etc., from being used on
4055           values that do not fit into an unsigned char (report by Sami Farin).
4056
4057 20040328
4058         + fix a typo in the _nc_get_locale() change.
4059
4060 20040327
4061         + modify _nc_get_locale() to use setlocale() to query the program's
4062           current locale rather than using getenv().  This fixes a case in tin
4063           which relies on legacy treatment of 8-bit characters when the locale
4064           is not initialized (reported by Urs Jansen).
4065         + add sgr string to screen's and rxvt's terminfo entries -TD.
4066         + add a check in tic for terminfo entries having an sgr0 but no sgr
4067           string.  This confuses Tru64 and HPUX curses when combined with
4068           color, e.g., making them leave line-drawing characters in odd places.
4069         + correct casts used in ABSENT_BOOLEAN, CANCELLED_BOOLEAN, matches the
4070           original definitions used in Debian package to fix PowerPC bug before
4071           20030802 (Debian #237629).
4072
4073 20040320
4074         + modify PutAttrChar() and PUTC() macro to improve use of
4075           A_ALTCHARSET attribute to prevent line-drawing characters from
4076           being lost in situations where the locale would otherwise treat the
4077           raw data as nonprintable (Debian #227879).
4078
4079 20040313
4080         + fix a redefinition of CTRL() macro in test/view.c for AIX 5.2 (report
4081           by Jim Idle).
4082         + remove ".PP" after ".SH NAME" in a few manpages; this confuses
4083           some apropos script (Debian #237831).
4084
4085 20040306
4086         + modify ncurses.c 'r' test so editing commands, like inserted text,
4087           set the field background, and the state of insert/overlay editing
4088           mode is shown in that test.
4089         + change syntax of dummy targets in Ada95 makefiles to work with pmake.
4090         + correct logic in test/ncurses.c 'b' for noncolor terminals which
4091           did not recognize a quit-command (cf: 20030419).
4092
4093 20040228
4094         + modify _nc_insert_ch() to allow for its input to be part of a
4095           multibyte string.
4096         + split out lib_insnstr.c, to prepare to rewrite it.  X/Open states
4097           that this function performs wrapping, unlike all of the other
4098           insert-functions.  Currently it does not wrap.
4099         + check for nl_langinfo(CODESET), use it if available (report by
4100           Stanislav Ievlev).
4101         + split-out CF_BUILD_CC macro, actually did this for lynx first.
4102         + fixes for configure script CF_WITH_DBMALLOC and CF_WITH_DMALLOC,
4103           which happened to work with bash, but not with Bourne shell (report
4104           by Marco d'Itri via tin-dev).
4105
4106 20040221
4107         + some changes to adapt the form library to wide characters, incomplete
4108           (request by Mike Aubury).
4109         + add symbol to curses.h which can be used to suppress include of
4110           stdbool.h, e.g.,
4111                 #define NCURSES_ENABLE_STDBOOL_H 0
4112                 #include <curses.h>
4113           (discussion on XFree86 mailing list).
4114
4115 20040214
4116         + modify configure --with-termlib option to accept a value which sets
4117           the name of the terminfo library.  This would allow a packager to
4118           build libtinfow.so renamed to coincide with libtinfo.so (discussion
4119           with Stanislav Ievlev).
4120         + improve documentation of --with-install-prefix, --prefix and
4121           $(DESTDIR) in INSTALL (prompted by discussion with Paul Lew).
4122         + add configure check if the compiler can use -c -o options to rename
4123           its output file, use that to omit the 'cd' command which was used to
4124           ensure object files are created in a separate staging directory
4125           (prompted by comments by Johnny Wezel, Martin Mokrejs).
4126
4127 20040208 5.4 release for upload to ftp.gnu.org
4128         + update TO-DO.
4129
4130 20040207 pre-release
4131         + minor fixes to _nc_tparm_analyze(), i.e., do not count %i as a param,
4132           and do not count %d if it follows a %p.
4133         + correct an inconsistency between handling of codes in the 128-255
4134           range, e.g., as illustrated by test/ncurses.c f/F tests.  In POSIX
4135           locale, the latter did not show printable results, while the former
4136           did.
4137         + modify MKlib_gen.sh to compensate for broken C preprocessor on Mac
4138           OS X, which alters "%%" to "% % " (report by Robert Simms, fix
4139           verified by Scott Corscadden).
4140
4141 20040131 pre-release
4142         + modify SCREEN struct to align it between normal/wide curses flavors
4143           to simplify future changes to build a single version of libtinfo
4144           (patch by Stanislav Ievlev).
4145         + document handling of carriage return by addch() in manpage.
4146         + document special features of unctrl() in manpage.
4147         + documented interface changes in INSTALL.
4148         + corrected control-char test in lib_addch.c to account for locale
4149           (Debian #230335, cf: 971206).
4150         + updated test/configure.in to use AC_EXEEXT and AC_OBJEXT.
4151         + fixes to compile Ada95 binding with Debian gnat 3.15p-4 package.
4152         + minor configure-script fixes for older ports, e.g., BeOS R4.5.
4153
4154 20040125 pre-release
4155         + amend change to PutAttrChar() from 20030614 which computed the number
4156           of cells for a possibly multi-cell character.  The 20030614 change
4157           forced the cell to a blank if the result from wcwidth() was not
4158           greater than zero.  However, wcwidth() called for parameters in the
4159           range 128-255 can give this return value.  The logic now simply
4160           ensures that the number of cells is greater than zero without
4161           modifying the displayed value.
4162
4163 20040124 pre-release
4164         + looked good for 5.4 release for upload to ftp.gnu.org (but see above)
4165         + modify configure script check for ranlib to use AC_CHECK_TOOL, since
4166           that works better for cross-compiling.
4167
4168 20040117 pre-release
4169         + modify lib_get_wch.c to prefer mblen/mbtowc over mbrlen/mbrtowc to
4170           work around core dump in Solaris 8's locale support, e.g., for
4171           zh_CN.GB18030 (report by Saravanan Bellan).
4172         + add includes for <stdarg.h> and <stdio.h> in configure script macro
4173           to make <wchar.h> check work with Tru64 4.0d.
4174         + add terminfo entry for U/Win -TD
4175         + add terminfo entries for SFU aka Interix aka OpenNT (Federico
4176           Bianchi).
4177         + modify tput's error messages to prefix them with the program name
4178           (report by Vincent Lefevre, patch by Daniel Jacobowitz (see Debian
4179           #227586)).
4180         + correct a place in tack where exit_standout_mode was used instead of
4181           exit_attribute_mode (patch by Jochen Voss (see Debian #224443)).
4182         + modify c++/cursesf.h to use const in the Enumeration_Field method.
4183         + remove an ambiguous (actually redundant) method from c++/cursesf.h
4184         + make $HOME/.terminfo update optional (suggested by Stanislav Ievlev).
4185         + improve sed script which extracts libtool's version in the
4186           CF_WITH_LIBTOOL macro.
4187         + add ifdef'd call to AC_PROG_LIBTOOL to CF_WITH_LIBTOOL macro (to
4188           simplify local patch for Albert Chin-A-Young)..
4189         + add $(CXXFLAGS) to link command in c++/Makefile.in (adapted from
4190           patch by Albert Chin-A-Young)..
4191         + fix a missing substitution in configure.in for "$target" needed for
4192           HPUX .so/.sl case.
4193         + resync CF_XOPEN_SOURCE configure macro with lynx; fixes IRIX64 and
4194           NetBSD 1.6 conflicts with _XOPEN_SOURCE.
4195         + make check for stdbool.h more specific, to ensure that including it
4196           will actually define/declare bool for the configured compiler.
4197         + rewrite ifdef's in curses.h relating NCURSES_BOOL and bool.  The
4198           intention of that is to #define NCURSES_BOOL as bool when the
4199           compiler declares bool, and to #define bool as NCURSES_BOOL when it
4200           does not (reported by Jim Gifford, Sam Varshavchik, cf: 20031213).
4201
4202 20040110 pre-release
4203         + change minor version to 4, i.e., ncurses 5.4
4204         + revised/improved terminfo entries for tvi912b, tvi920b (Benjamin C W
4205           Sittler).
4206         + simplified ncurses/base/version.c by defining the result from the
4207           configure script rather than using sprintf (suggested by Stanislav
4208           Ievlev).
4209         + remove obsolete casts from c++/cursesw.h (reported by Stanislav
4210           Ievlev).
4211         + modify configure script so that when configuring for termlib, programs
4212           such as tic are not linked with the upper-level ncurses library
4213           (suggested by Stanislav Ievlev).
4214         + move version.c from ncurses/base to ncurses/tinfo to allow linking
4215           of tic, etc., using libtinfo (suggested by Stanislav Ievlev).
4216
4217 20040103
4218         + adjust -D's to build ncursesw on OpenBSD.
4219         + modify CF_PROG_EXT to make OS/2 build with EXEEXT.
4220         + add pecho_wchar().
4221         + remove <wctype.h> include from lib_slk_wset.c which is not needed (or
4222           available) on older platforms.
4223
4224 20031227
4225         + add -D's to build ncursew on FreeBSD 5.1.
4226         + modify shared library configuration for FreeBSD 4.x/5.x to add the
4227           soname information (request by Marc Glisse).
4228         + modify _nc_read_tic_entry() to not use MAX_ALIAS, but PATH_MAX only
4229           for limiting the length of a filename in the terminfo database.
4230         + modify termname() to return the terminal name used by setupterm()
4231           rather than $TERM, without truncating to 14 characters as documented
4232           by X/Open (report by Stanislav Ievlev, cf:  970719).
4233         + re-add definition for _BSD_TYPES, lost in merge (cf: 20031206).
4234
4235 20031220
4236         + add configure option --with-manpage-format=catonly to address
4237           behavior of BSDI, allow install of man+cat files on NetBSD, whose
4238           behavior has diverged by requiring both to be present.
4239         + remove leading blanks from comment-lines in manlinks.sed script to
4240           work with Tru64 4.0d.
4241         + add screen.linux terminfo entry (discussion on mutt-users mailing
4242           list).
4243
4244 20031213
4245         + add a check for tic to flag missing backslashes for termcap
4246           continuation lines.  ncurses reads the whole entry, but termcap
4247           applications do not.
4248         + add configure option "--with-manpage-aliases" extending
4249           "--with-manpage-aliases" to provide the option of generating ".so"
4250           files rather than symbolic links for manpage aliases.
4251         + add bool definition in include/curses.h.in for configurations with no
4252           usable C++ compiler (cf: 20030607).
4253         + fix pathname of SigAction.h for building with --srcdir (reported by
4254           Mike Castle).
4255
4256 20031206
4257         + folded ncurses/base/sigaction.c into includes of ncurses/SigAction.h,
4258           since that header is used only within ncurses/tty/lib_tstp.c, for
4259           non-POSIX systems (discussion with Stanislav Ievlev).
4260         + remove obsolete _nc_outstr() function (report by Stanislav Ievlev
4261           <inger@altlinux.org>).
4262         + add test/background.c and test/color_set.c
4263         + modify color_set() function to work with color pair 0 (report by
4264           George Andreou <gbandreo@tem.uoc.gr>).
4265         + add configure option --with-trace, since defining TRACE seems too
4266           awkward for some cases.
4267         + remove a call to _nc_free_termtype() from read_termtype(), since the
4268           corresponding buffer contents were already zeroed by a memset (cf:
4269           20000101).
4270         + improve configure check for _XOPEN_SOURCE and related definitions,
4271           adding special cases for Solaris' __EXTENSIONS__ and FreeBSD's
4272           __BSD_TYPES (reports by Marc Glisse <marc.glisse@normalesup.org>).
4273         + small fixes to compile on Solaris and IRIX64 using cc.
4274         + correct typo in check for pre-POSIX sort options in MKkey_defs.sh
4275           (cf: 20031101).
4276
4277 20031129
4278         + modify _nc_gettime() to avoid a problem with arithmetic on unsigned
4279           values (Philippe Blain).
4280         + improve the nanosleep() logic in napms() by checking for EINTR and
4281           restarting (Philippe Blain).
4282         + correct expression for "%D" in lib_tgoto.c (Juha Jarvi
4283           <mooz@welho.com>).
4284
4285 20031122
4286         + add linux-vt terminfo entry (Andrey V Lukyanov <land@long.yar.ru>).
4287         + allow "\|" escape in terminfo; tic should not warn about this.
4288         + save the full pathname of the trace-file the first time it is opened,
4289           to avoid creating it in different directories if the application
4290           opens and closes it while changing its working directory.
4291         + modify configure script to provide a non-empty default for
4292           $BROKEN_LINKER
4293
4294 20031108
4295         + add DJGPP to special case of DOS-style drive letters potentially
4296           appearing in TERMCAP environment variable.
4297         + fix some spelling in comments (reports by Jason McIntyre, Jonathon
4298           Gray).
4299         + update config.guess, config.sub
4300
4301 20031101
4302         + fix a memory leak in error-return from setupterm() (report by
4303           Stanislav Ievlev <inger@altlinux.org>).
4304         + use EXEEXT and OBJEXT consistently in makefiles.
4305         + amend fixes for cross-compiling to use separate executable-suffix
4306           BUILD_EXEEXT (cf: 20031018).
4307         + modify MKkey_defs.sh to check for sort utility that does not
4308           recognize key options, e.g., busybox (report by Peter S Mazinger
4309           <ps.m@gmx.net>).
4310         + fix potential out-of-bounds indexing in _nc_infotocap() (found by
4311           David Krause using some of the new malloc debugging features
4312           under OpenBSD, patch by Ted Unangst).
4313         + modify CF_LIB_SUFFIX for Itanium releases of HP-UX, which use a
4314           ".so" suffix (patch by Jonathan Ward <Jonathan.Ward@hp.com>).
4315
4316 20031025
4317         + update terminfo for xterm-xfree86 -TD
4318         + add check for multiple "tc=" clauses in a termcap to tic.
4319         + check for missing op/oc in tic.
4320         + correct _nc_resolve_uses() and _nc_merge_entry() to allow infocmp and
4321           tic to show cancelled capabilities.  These functions were ignoring
4322           the state of the target entry, which should be untouched if cancelled.
4323         + correct comment in tack/output.c (Debian #215806).
4324         + add some null-pointer checks to lib_options.c (report by Michael
4325           Bienia).
4326         + regenerated html documentation.
4327         + correction to tar-copy.sh, remove a trap command that resulted in
4328           leaving temporary files (cf: 20030510).
4329         + remove contact/maintainer addresses for Juergen Pfeifer (his request).
4330
4331 20031018
4332         + updated test/configure to reflect changes for libtool (cf: 20030830).
4333         + fix several places in tack/pad.c which tested and used the parameter-
4334           and parameterless strings inconsistently, i.e., in pad_rin(),
4335           pad_il(), pad_indn() and pad_dl() (Debian #215805).
4336         + minor fixes for configure script and makefiles to cleanup executables
4337           generated when cross-compiling for DJGPP.
4338         + modify infocmp to omit check for $TERM for operations that do not
4339           require it, e.g., "infocmp -e" used to build fallback list (report by
4340           Koblinger Egmont).
4341
4342 20031004
4343         + add terminfo entries for DJGPP.
4344         + updated note about maintainer in ncurses-intro.html
4345
4346 20030927
4347         + update terminfo entries for gnome terminal.
4348         + modify tack to reset colors after each color test, correct a place
4349           where exit_standout_mode was used instead of exit_attribute_mode.
4350         + improve tack's bce test by making it set colors other than black
4351           on white.
4352         + plug a potential recursion between napms() and _nc_timed_wait()
4353           (report by Philippe Blain).
4354
4355 20030920
4356         + add --with-rel-version option to allow workaround to allow making
4357           libtool on Darwin generate the "same" library names as with the
4358           --with-shared option.  The Darwin ld program does not work well
4359           with a zero as the minor-version value (request by Chris Zubrzycki).
4360         + modify CF_MIXEDCASE_FILENAMES macro to work with cross-compiling.
4361         + modify tack to allow it to run from fallback terminfo data.
4362         > patch by Philippe Blain:
4363         + improve PutRange() by adjusting call to EmitRange() and corresponding
4364           return-value to not emit unchanged characters on the end of the
4365           range.
4366         + improve a check for changed-attribute by exiting a loop when the
4367           change is found.
4368         + improve logic in TransformLine(), eliminating a duplicated comparison
4369           in the clr_bol logic.
4370
4371 20030913
4372         > patch by Philippe Blain:
4373         + in ncurses/tty/lib_mvcur.c,
4374           move the label 'nonlocal' just before the second gettimeofday() to
4375           be able to compute the diff time when 'goto nonlocal' used.
4376           Rename 'msec' to 'microsec' in the debug-message.
4377         + in ncurses/tty/lib_mvcur.c,
4378           Use _nc_outch() in carriage return/newline movement instead of
4379           putchar() which goes to stdout.  Move test for xold>0 out of loop.
4380         + in ncurses/tinfo/setbuf.c,
4381           Set the flag SP->_buffered at the end of operations when all has been
4382           successful (typeMalloc can fail).
4383         + simplify NC_BUFFERED macro by moving check inside _nc_setbuf().
4384
4385 20030906
4386         + modify configure script to avoid using "head -1", which does not
4387           work if POSIXLY_CORRECT (sic) is set.
4388         + modify run_tic.in to avoid using wrong shared libraries when
4389           cross-compiling (Dan Kegel).
4390
4391 20030830
4392         + alter configure script help message to make it clearer that
4393           --with-build-cc does not specify a cross-compiler (suggested by Dan
4394           Kegel <dank@kegel.com>).
4395         + modify configure script to accommodate libtool 1.5, as well as add an
4396           parameter to the "--with-libtool" option which can specify the
4397           pathname of libtool (report by Chris Zubrzycki).  We note that
4398           libtool 1.5 has more than one bug in its C++ support, so it is not
4399           able to install libncurses++, for instance, if $DESTDIR or the option
4400           --with-install-prefix is used.
4401
4402 20030823
4403         > patch by Philippe Blain:
4404         + move assignments to SP->_cursrow, SP->_curscol into online_mvcur().
4405         + make baudrate computation in delay_output() consistent with the
4406           assumption in _nc_mvcur_init(), i.e., a byte is 9 bits.
4407
4408 20030816
4409         + modify logic in waddch_literal() to take into account zh_TW.Big5
4410           whose multibyte sequences may contain "printable" characters, e.g.,
4411           a "g" in the sequence "\247g" (Debian #204889, cf: 20030621).
4412         + improve storage used by _nc_safe_strcpy() by ensuring that the size
4413           is reset based on the initialization call, in case it were called
4414           after other strcpy/strcat calls (report by Philippe Blain).
4415         > patch by Philippe Blain:
4416         + remove an unused ifdef for REAL_ATTR & WANT_CHAR
4417         + correct a place where _cup_cost was used rather than _cuu_cost
4418
4419 20030809
4420         + fix a small memory leak in _nc_free_termtype().
4421         + close trace-file if trace() is called with a zero parameter.
4422         + free memory allocated for soft-key strings, in delscreen().
4423         + fix an allocation size in safe_sprintf.c for the "*" format code.
4424         + correct safe_sprintf.c to not return a null pointer if the format
4425           happens to be an empty string.  This applies to the "configure
4426           --enable-safe-sprintf" option (Redhat #101486).
4427
4428 20030802
4429         + modify casts used for ABSENT_BOOLEAN and CANCELLED_BOOLEAN (report by
4430           Daniel Jacobowitz).
4431         > patch by Philippe Blain:
4432         + change padding for change_scroll_region to not be proportional to
4433           the size of the scroll-region.
4434         + correct error-return in _nc_safe_strcat().
4435
4436 20030726
4437         + correct limit-checks in _nc_scroll_window() (report and test-case by
4438           Thomas Graf <graf@dms.at> cf: 20011020).
4439         + re-order configure checks for _XOPEN_SOURCE to avoid conflict with
4440           _GNU_SOURCE check.
4441
4442 20030719
4443         + use clr_eol in preference to blanks for bce terminals, so select and
4444           paste will have fewer trailing blanks, e.g., when using xterm
4445           (request by Vincent Lefevre).
4446         + correct prototype for wunctrl() in manpage.
4447         + add configure --with-abi-version option (discussion with Charles
4448           Wilson).
4449         > cygwin changes from Charles Wilson:
4450           + aclocal.m4: on cygwin, use autodetected prefix for import
4451             and static lib, but use "cyg" for DLL.
4452           + include/ncurses_dll.h: correct the comments to reflect current
4453             status of cygwin/mingw port.  Fix compiler warning.
4454           + misc/run_tic.in: ensure that tic.exe can find the uninstalled
4455             DLL, by adding the lib-directory to the PATH variable.
4456           + misc/terminfo.src (nxterm|xterm-color): make xterm-color
4457             primary instead of nxterm, to match XFree86's xterm.terminfo
4458             usage and to prevent circular links.
4459             (rxvt): add additional codes from rxvt.org.
4460             (rxvt-color): new alias
4461             (rxvt-xpm): new alias
4462             (rxvt-cygwin): like rxvt, but with special acsc codes.
4463             (rxvt-cygwin-native): ditto.  rxvt may be run under XWindows, or
4464             with a "native" MSWin GUI.  Each takes different acsc codes,
4465             which are both different from the "normal" rxvt's acsc.
4466             (cygwin): cygwin-in-cmd.exe window.  Lots of fixes.
4467             (cygwinDBG): ditto.
4468           + mk-1st.awk: use "cyg" for the DLL prefix, but "lib" for import
4469             and static libs.
4470
4471 20030712
4472         + update config.guess, config.sub
4473         + add triples for configuring shared libraries with the Debian
4474           GNU/FreeBSD packages (patch by Robert Millan <zeratul2@wanadoo.es>).
4475
4476 20030705
4477         + modify CF_GCC_WARNINGS so it only applies to gcc, not g++.  Some
4478           platforms have installed g++ along with the native C compiler, which
4479           would not accept gcc warning options.
4480         + add -D_XOPEN_SOURCE=500 when configuring with --enable-widec, to
4481           get mbstate_t declaration on HPUX 11.11 (report by David Ellement).
4482         + add _nc_pathlast() to get rid of casts in _nc_basename() calls.
4483         + correct a sign-extension in wadd_wch() and wecho_wchar() from
4484           20030628 (report by Tomohiro Kubota).
4485         + work around omission of btowc() and wctob() from wide-character
4486           support (sic) in NetBSD 1.6 using mbtowc() and wctomb() (report by
4487           Gabor Z Papp).
4488         + add portability note to curs_get_wstr.3x (Debian #199957).
4489
4490 20030628
4491         + rewrite wadd_wch() and wecho_wchar() to call waddch() and wechochar()
4492           respectively, to avoid calling waddch_noecho() with wide-character
4493           data, since that function assumes its input is 8-bit data.
4494           Similarly, modify waddnwstr() to call wadd_wch().
4495         + remove logic from waddnstr() which transformed multibyte character
4496           strings into wide-characters.  Rewrite of waddch_literal() from
4497           20030621 assumes its input is raw multibyte data rather than wide
4498           characters (report by Tomohiro Kubota).
4499
4500 20030621
4501         + write getyx() and related 2-return macros in terms of getcury(),
4502           getcurx(), etc.
4503         + modify waddch_literal() in case an application passes bytes of a
4504           multibyte character directly to waddch().  In this case, waddch()
4505           must reassemble the bytes into a wide-character (report by Tomohiro
4506           Kubota <kubota@debian.org>).
4507
4508 20030614
4509         + modify waddch_literal() in case a multibyte value occupies more than
4510           two cells.
4511         + modify PutAttrChar() to compute the number of character cells that
4512           are used in multibyte values.  This fixes a problem displaying
4513           double-width characters (report/test by Mitsuru Chinen
4514           <mchinen@yamato.ibm.com>).
4515         + add a null-pointer check for result of keyname() in _tracechar()
4516         + modify _tracechar() to work around glibc sprintf bug.
4517
4518 20030607
4519         + add a call to setlocale() in cursesmain.cc, making demo display
4520           properly in a UTF-8 locale.
4521         + add a fallback definition in curses.priv.h for MB_LEN_MAX (prompted
4522           by discussion with Gabor Z Papp).
4523         + use macros NCURSES_ACS() and NCURSES_WACS() to hide cast needed to
4524           appease -Wchar-subscript with g++ 3.3 (Debian #195732).
4525         + fix a redefinition of $RANLIB in the configure script when libtool
4526           is used, which broke configure on Mac OS X (report by Chris Zubrzycki
4527           <beren@mac.com>).
4528         + simplify ifdef for bool declaration in curses.h.in (suggested by
4529           Albert Chin-A-Young).
4530         + remove configure script check to allow -Wconversion for older
4531           versions of gcc (suggested by Albert Chin-A-Young).
4532
4533 20030531
4534         + regenerated html manpages.
4535         + modify ifdef's in curses.h.in that disabled use of __attribute__()
4536           for g++, since recent versions implement the cases which ncurses uses
4537           (Debian #195230).
4538         + modify _nc_get_token() to handle a case where an entry has no
4539           description, and capabilities begin on the same line as the entry
4540           name.
4541         + fix a typo in ncurses_dll.h reported by gcc 3.3.
4542         + add an entry for key_defined.3x to man_db.renames.
4543
4544 20030524
4545         + modify setcchar() to allow converting control characters to complex
4546           characters (report/test by Mitsuru Chinen <mchinen@yamato.ibm.com>).
4547         + add tkterm entry -TD
4548         + modify parse_entry.c to allow a terminfo entry with a leading
4549           2-character name (report by Don Libes).
4550         + corrected acsc in screen.teraterm, which requires a PC-style mapping.
4551         + fix trace statements in read_entry.c to use lseek() rather than
4552           tell().
4553         + fix signed/unsigned warnings from Sun's compiler (gcc should give
4554           these warnings, but it is unpredictable).
4555         + modify configure script to omit -Winline for gcc 3.3, since that
4556           feature is broken.
4557         + modify manlinks.sed to add a few functions that were overlooked since
4558           they return function pointers:  field_init, field_term, form_init,
4559           form_term, item_init, item_term, menu_init and menu_term.
4560
4561 20030517
4562         + prevent recursion in wgetch() via wgetnstr() if the connection cannot
4563           be switched between cooked/raw modes because it is not a TTY (report
4564           by Wolfgang Gutjahr <gutw@knapp.com>).
4565         + change parameter of define_key() and key_defined() to const (prompted
4566           by Debian #192860).
4567         + add a check in test/configure for ncurses extensions, since there
4568           are some older versions, etc., which would not compile with the
4569           current test programs.
4570         + corrected demo in test/ncurses.c of wgetn_wstr(), which did not
4571           convert wchar_t string to multibyte form before printing it.
4572         + corrections to lib_get_wstr.c:
4573           + null-terminate buffer passed to setcchar(), which occasionally
4574             failed.
4575           + map special characters such as erase- and kill-characters into
4576             key-codes so those will work as expected even if they are not
4577             mentioned in the terminfo.
4578         + modify PUTC() and Charable() macros to make wide-character line
4579           drawing work for POSIX locale on Linux console (cf: 20021221).
4580
4581 20030510
4582         + make typography for program options in manpages consistent (report
4583           by Miloslav Trmac <mitr@volny.cz>).
4584         + correct dependencies in Ada95/src/Makefile.in, so the builds with
4585           "--srcdir" work (report by Warren L Dodge).
4586         + correct missing definition of $(CC) in Ada95/gen/Makefile.in
4587           (reported by Warren L Dodge <warrend@mdhost.cse.tek.com>).
4588         + fix typos and whitespace in manpages (patch by Jason McIntyre
4589           <jmc@prioris.mini.pw.edu.pl>).
4590
4591 20030503
4592         + fix form_driver() cases for REQ_CLR_EOF, REQ_CLR_EOL, REQ_DEL_CHAR,
4593           REQ_DEL_PREV and REQ_NEW_LINE, which did not ensure the cursor was at
4594           the editing position before making modifications.
4595         + add test/demo_forms and associated test/edit_field.c demos.
4596         + modify test/configure.in to use test/modules for the list of objects
4597           to compile rather than using the list of programs.
4598
4599 20030419
4600         + modify logic of acsc to use the original character if no mapping is
4601           defined, noting that Solaris does this.
4602         + modify ncurses 'b' test to avoid using the acs_map[] array since
4603           20021231 changes it to no longer contain information from the acsc
4604           string.
4605         + modify makefile rules in c++, progs, tack and test to ensure that
4606           the compiler flags (e.g., $CFLAGS or $CCFLAGS) are used in the link
4607           command (report by Jose Luis Rico Botella <informatica@serpis.com>).
4608         + modify soft-key initialization to use A_REVERSE if A_STANDOUT would
4609           not be shown when colors are used, i.e., if ncv#1 is set in the
4610           terminfo as is done in "screen".
4611
4612 20030412
4613         + add a test for slk_color(), in ncurses.c
4614         + fix some issues reported by valgrind in the slk_set() and slk_wset()
4615           code, from recent rewrite.
4616         + modify ncurses 'E' test to use show previous label via slk_label(),
4617           as in 'e' test.
4618         + modify wide-character versions of NewChar(), NewChar2() macros to
4619           ensure that the whole struct is initialized.
4620
4621 20030405
4622         + modify setupterm() to check if the terminfo and terminal-modes have
4623           already been read.  This ensures that it does not reinvoke
4624           def_prog_mode() when an application calls more than one function,
4625           such as tgetent() and initscr() (report by Olaf Buddenhagen).
4626
4627 20030329
4628         + add 'E' test to ncurses.c, to exercise slk_wset().
4629         + correct handling of carriage-return in wgetn_wstr(), used in demo of
4630           slk_wset().
4631         + first draft of slk_wset() function.
4632
4633 20030322
4634         + improved warnings in tic when suppressing items to fit in termcap's
4635           1023-byte limit.
4636         + built a list in test/README showing which externals are being used
4637           by either programs in the test-directory or via internal library
4638           calls.
4639         + adjust include-options in CF_ETIP_DEFINES to avoid missing
4640           ncurses_dll.h, fixing special definitions that may be needed for
4641           etip.h (reported by Greg Schafer <gschafer@zip.com.au>).
4642
4643 20030315
4644         + minor fixes for cardfile.c, to make it write the updated fields to
4645           a file when ^W is given.
4646         + add/use _nc_trace_bufcat() to eliminate some fixed buffer limits in
4647           trace code.
4648
4649 20030308
4650         + correct a case in _nc_remove_string(), used by define_key(), to avoid
4651           infinite loop if the given string happens to be a substring of other
4652           strings which are assigned to keys (report by John McCutchan).
4653         + add key_defined() function, to tell which keycode a string is bound
4654           to (discussion with John McCutchan <ttb@tentacle.dhs.org>).
4655         + correct keybound(), which reported definitions in the wrong table,
4656           i.e., the list of definitions which are disabled by keyok().
4657         + modify demo_keydef.c to show the details it changes, and to check
4658           for errors.
4659
4660 20030301
4661         + restructured test/configure script, make it work for libncursesw.
4662         + add description of link_fieldtype() to manpage (report by
4663           L Dee Holtsclaw <dee@sunbeltsoft.com>).
4664
4665 20030222
4666         + corrected ifdef's relating to configure check for wchar_t, etc.
4667         + if the output is a socket or other non-tty device, use 1 millisecond
4668           for the cost in mvcur; previously it was 9 milliseconds because the
4669           baudrate was not known.
4670         + in _nc_get_tty_mode(), initialize the TTY buffer on error, since
4671           glibc copies uninitialized data in that case, as noted by valgrind.
4672         + modify tput to use the same parameter analysis as tparm() does, to
4673           provide for user-defined strings, e.g., for xterm title, a
4674           corresponding capability might be
4675                 title=\E]2;%p1%s^G,
4676         + modify MKlib_gen.sh to avoid passing "#" tokens through the C
4677           preprocessor.  This works around Mac OS X's preprocessor, which
4678           insists on adding a blank on each side of the token (report/analysis
4679           by Kevin Murphy <murphy@genome.chop.edu>).
4680
4681 20030215
4682         + add configure check for wchar_t and wint_t types, rather than rely
4683           on preprocessor definitions.  Also work around for gcc fixinclude
4684           bug which creates a shadow copy of curses.h if it sees these symbols
4685           apparently typedef'd.
4686         + if database is disabled, do not generate run_tic.sh
4687         + minor fixes for memory-leak checking when termcap is read.
4688
4689 20030208
4690         + add checking in tic for incomplete line-drawing character mapping.
4691         + updated configure script to reflect fix for AC_PROG_GCC_TRADITIONAL,
4692           which is broken in autoconf 2.5x for Mac OS X 10.2.3 (report by
4693           Gerben Wierda <Sherlock@rna.nl>).
4694         + make return value from _nc_printf_string() consistent.  Before,
4695           depending on whether --enable-safe-sprintf was used, it might not be
4696           cached for reallocating.
4697
4698 20030201
4699         + minor fixes for memory-leak checking in lib_tparm.c, hardscroll.c
4700         + correct a potentially-uninitialized value if _read_termtype() does
4701           not read as much data as expected (report by Wolfgang Rohdewald
4702           <wr6@uni.de>).
4703         + correct several places where the aclocal.m4 macros relied on cache
4704           variable names which were incompatible (as usual) between autoconf
4705           2.13 and 2.5x, causing the test for broken-linker to give incorrect
4706           results (reports by Gerben Wierda <Sherlock@rna.nl> and Thomas Esser
4707           <te@dbs.uni-hannover.de>).
4708         + do not try to open gpm mouse driver if standard output is not a tty;
4709           the gpm library does not make this check (bug report for dialog
4710           by David Oliveira <davidoliveira@develop.prozone.ws>).
4711
4712 20030125
4713         + modified emx.src to correspond more closely to terminfo.src, added
4714           emx-base to the latter -TD
4715         + add configure option for FreeBSD sysmouse, --with-sysmouse, and
4716           implement support for that in lib_mouse.c, lib_getch.c
4717
4718 20030118
4719         + revert 20030105 change to can_clear_with(), does not work for the
4720           case where the update is made on cells which are blanks with
4721           attributes, e.g., reverse.
4722         + improve ifdef's to guard against redefinition of wchar_t and wint_t
4723           in curses.h (report by Urs Jansen).
4724
4725 20030111
4726         + improve mvcur() by checking if it is safe to move when video
4727           attributes are set (msgr), and if not, reset/restore attributes
4728           within that function rather than doing it separately in the GoTo()
4729           function in tty_update.c (suggested by Philippe Blain).
4730         + add a message in run_tic.in to explain more clearly what does not
4731           work when attempting to create a symbolic link for /usr/lib/terminfo
4732           on OS/2 and other platforms with no symbolic links (report by John
4733           Polterak).
4734         + change several sed scripts to avoid using "\+" since it is not a BRE
4735           (basic regular expression).  One instance caused terminfo.5 to be
4736           misformatted on FreeBSD (report by Kazuo Horikawa
4737           <horikawa@FreeBSD.org> (see FreeBSD docs/46709)).
4738         + correct misspelled 'wint_t' in curs_get_wch.3x (Michael Elkins).
4739
4740 20030105
4741         + improve description of terminfo operators, especially static/dynamic
4742           variables (comments by Mark I Manning IV <mark4th@earthlink.net>).
4743         + demonstrate use of FIELDTYPE by modifying test/ncurses 'r' test to
4744           use the predefined TYPE_ALPHA field-type, and by defining a
4745           specialized type for the middle initial/name.
4746         + fix MKterminfo.sh, another workaround for POSIXLY_CORRECT misfeature
4747           of sed 4.0
4748         > patch by Philippe Blain:
4749         + optimize can_clear_with() a little by testing first if the parameter
4750           is indeed a "blank".
4751         + simplify ClrBottom() a little by allowing it to use clr_eos to clear
4752           sections as small as one line.
4753         + improve ClrToEOL() by checking if clr_eos is available before trying
4754           to use it.
4755         + use tputs() rather than putp() in a few cases in tty_update.c since
4756           the corresponding delays are proportional to the number of lines
4757           affected: repeat_char, clr_eos, change_scroll_region.
4758
4759 20021231
4760         + rewrite of lib_acs.c conflicts with copying of SCREEN acs_map to/from
4761           global acs_map[] array; removed the lines that did the copying.
4762
4763 20021228
4764         + change some overlooked tputs() calls in scrolling code to use putp()
4765           (report by Philippe Blain).
4766         + modify lib_getch.c to avoid recursion via wgetnstr() when the input
4767           is not a tty and consequently mode-changes do not work (report by
4768           <R.Chamberlin@querix.com>).
4769         + rewrote lib_acs.c to allow PutAttrChar() to decide how to render
4770           alternate-characters, i.e., to work with Linux console and UTF-8
4771           locale.
4772         + correct line/column reference in adjust_window(), needed to make
4773           special windows such as curscr track properly when resizing (report
4774           by Lucas Gonze <lgonze@panix.com>).
4775         > patch by Philippe Blain:
4776         + correct the value used for blank in ClrBottom() (broken in 20000708).
4777         + correct an off-by-one in GoTo() parameter in _nc_scrolln().
4778
4779 20021221
4780         + change several tputs() calls in scrolling code to use putp(), to
4781           enable padding which may be needed for some terminals (patch by
4782           Philippe Blain).
4783         + use '%' as sed substitute delimiter in run_tic script to avoid
4784           problems with pathname delimiters such as ':' and '@' (report by John
4785           Polterak).
4786         + implement a workaround so that line-drawing works with screen's
4787           crippled UTF-8 support (tested with 3.9.13).  This only works with
4788           the wide-character support (--enable-widec); the normal library will
4789           simply suppress line-drawing when running in a UTF-8 locale in screen.
4790
4791 20021214
4792         + allow BUILD_CC and related configure script variables to be
4793           overridden from the environment.
4794         + make build-tools variables in ncurses/Makefile.in consistent with
4795           the configure script variables (report by Maciej W Rozycki).
4796         + modify ncurses/modules to allow
4797                 configure --disable-leaks --disable-ext-funcs
4798           to build (report by Gary Samuelson).
4799         + fix a few places in configure.in which lacked quotes (report by
4800           Gary Samuelson <gary.samuelson@verizon.com>).
4801         + correct handling of multibyte characters in waddch_literal() which
4802           force wrapping because they are started too late on the line (report
4803           by Sam Varshavchik).
4804         + small fix for CF_GNAT_VERSION to ignore the help-message which
4805           gnatmake adds to its version-message.
4806         > Maciej W Rozycki <macro@ds2.pg.gda.pl>:
4807         + use AC_CHECK_TOOL to get proper values for AR and LD for cross
4808           compiling.
4809         + use $cross_compiling variable in configure script rather than
4810           comparing $host_alias and $target alias, since "host" is
4811           traditionally misused in autoconf to refer to the target platform.
4812         + change configure --help message to use "build" rather than "host"
4813           when referring to the --with-build-XXX options.
4814
4815 20021206
4816         + modify CF_GNAT_VERSION to print gnatmake's version, and to allow for
4817           possible gnat versions such as 3.2 (report by Chris Lingard
4818           <chris@stockwith.co.uk>).
4819         + modify #define's for CKILL and other default control characters in
4820           tset to use the system's default values if they are defined.
4821         + correct interchanged defaults for kill and interrupt characters
4822           in tset, which caused it to report unnecessarily (Debian #171583).
4823         + repair check for missing C++ compiler, which is broken in autoconf
4824           2.5x by hardcoding it to g++ (report by Martin Mokrejs).
4825         + update config.guess, config.sub (2002-11-30)
4826         + modify configure script to skip --with-shared, etc., when the
4827           --with-libtool option is given, since they would be ignored anyway.
4828         + fix to allow "configure --with-libtool --with-termlib" to build.
4829         + modify configure script to show version number of libtool, to help
4830           with bug reports.  libtool still gets confused if the installed
4831           ncurses libraries are old, since it ignores the -L options at some
4832           point (tested with libtool 1.3.3 and 1.4.3).
4833         + reorder configure script's updating of $CPPFLAGS and $CFLAGS to
4834           prevent -I options in the user's environment from introducing
4835           conflicts with the build -I options (may be related to reports by
4836           Patrick Ash and George Goffe).
4837         + rename test/define_key.c to test/demo_defkey.c, test/keyok.c to
4838           test/demo_keyok.c to allow building these with libtool.
4839
4840 20021123
4841         + add example program test/define_key.c for define_key().
4842         + add example program test/keyok.c for keyok().
4843         + add example program test/ins_wide.c for wins_wch() and wins_wstr().
4844         + modify wins_wch() and wins_wstr() to interpret tabs by using the
4845           winsch() internal function.
4846         + modify setcchar() to allow for wchar_t input strings that have
4847           more than one spacing character.
4848
4849 20021116
4850         + fix a boundary check in lib_insch.c (patch by Philippe Blain).
4851         + change type for *printw functions from NCURSES_CONST to const
4852           (prompted by comment by Pedro Palhoto Matos <plpm@mega.ist.utl.pt>,
4853           but really from a note on X/Open's website stating that either is
4854           acceptable, and the latter will be used in a future revision).
4855         + add xterm-1002, xterm-1003 terminfo entries to demonstrate changes in
4856           lib_mouse.c (20021026) -TD
4857         + add screen-bce, screen-s entries from screen 3.9.13 (report by
4858           Adam Lazur <zal@debian.org>) -TD
4859         + add mterm terminfo entries -TD
4860
4861 20021109
4862         + split-out useful fragments in terminfo for vt100 and vt220 numeric
4863           keypad, i.e., vt100+keypad, vt100+pfkeys, vt100+fnkeys and
4864           vt220+keypad.  The last as embedded in various entries had ka3 and
4865           kb2 interchanged (report/discussion with Leonard den Ottolander
4866           <leonardjo@hetnet.nl>).
4867         + add check in tic for keypads consistent with vt100 layout.
4868         + improve checks in tic for color capabilities
4869
4870 20021102
4871         + check for missing/empty/illegal terminfo name in _nc_read_entry()
4872           (report by Martin Mokrejs, where $TERM was set to an empty string).
4873         + rewrote lib_insch.c, combining it with lib_insstr.c so both handle
4874           tab and other control characters consistently (report by Philippe
4875           Blain).
4876         + remove an #undef for KEY_EVENT from curses.tail used in the
4877           experimental NCURSES_WGETCH_EVENTS feature.  The #undef confuses
4878           dpkg's build script (Debian #165897).
4879         + fix MKlib_gen.sh, working around the ironically named POSIXLY_CORRECT
4880           feature of GNU sed 4.0 (reported by Ervin Nemeth <airwin@inf.bme.hu>).
4881
4882 20021026
4883         + implement logic in lib_mouse.c to handle position reports which are
4884           generated when XFree86 xterm is initialized with private modes 1002
4885           or 1003.  These are returned to the application as the
4886           REPORT_MOUSE_POSITION mask, which was not implemented.  Tested both
4887           with ncurses 'a' menu (prompted by discussion with Larry Riedel
4888           <Larry@Riedel.org>).
4889         + modify lib_mouse.c to look for "XM" terminfo string, which allows
4890           one to override the escape sequence used to enable/disable mouse
4891           mode.  In particular this works for XFree86 xterm private modes
4892           1002 and 1003.  If "XM" is missing (note that this is an extended
4893           name), lib_mouse uses the conventional private mode 1000.
4894         + correct NOT_LOCAL() macro in lib_mvcur.c to refer to screen_columns
4895           where it used screen_lines (report by Philippe Blain).
4896         + correct makefile rules for the case when both --with-libtool and
4897           --with-gpm are given (report by Mr E_T <troll@logi.net.au>).
4898         + add note to terminfo manpage regarding the differences between
4899           setaf/setab and setf/setb capabilities (report by Pavel Roskin).
4900
4901 20021019
4902         + remove redundant initialization of TABSIZE in newterm(), since it is
4903           already done in setupterm() (report by Philippe Blain).
4904         + add test/inserts.c, to test winnstr() and winsch().
4905         + replace 'sort' in dist.mk with script that sets locale to POSIX.
4906         + update URLs in announce.html.in (patch by Frederic L W Meunier).
4907         + remove glibc add-on files, which are no longer needed (report by
4908           Frederic L W Meunier).
4909
4910 20021012 5.3 release for upload to ftp.gnu.org
4911         + modify ifdef's in etip.h.in to allow the etip.h header to compile
4912           with gcc 3.2 (patch by Dimitar Zhekov <jimmy@is-vn.bg>).
4913         + add logic to setupterm() to make it like initscr() and newterm(),
4914           by checking for $NCURSES_TRACE environment variable and enabling
4915           the debug trace in that case.
4916         + modify setupterm() to ensure that it initializes the baudrate, for
4917           applications such as tput (report by Frank Henigman).
4918         + modify definition of bits used for command-line and library debug
4919           traces to avoid overlap, using new definition TRACE_SHIFT to relate
4920           the two.
4921         + document tput's interpretation of parameterized strings according to
4922           whether parameters are given, etc. (discussion with Robert De Bath).
4923
4924 20021005 pre-release
4925         + correct winnwstr() to account for non-character cells generated when
4926           a double-width character is added (report by Michael Bienia
4927           <michael@vorlon.ping.de>).
4928         + modify _nc_viswbuf2n() to provide better results using wctomb().
4929         + correct logic in _nc_varargs() which broke tracing of parameters for
4930           formats such as "%.*s".
4931         + correct scale factor in linux-c and linux-c-nc terminfo entries
4932           (report Floyd Davidson).
4933         + change tic -A option to -t, add the same option to infocmp for
4934           consistency.
4935         + correct "%c" implementation in lib_tparm.c, which did not map a null
4936           character to a 128 (cf: 980620) (patch by Frank Henigman
4937           <fjhenigman@mud.cgl.uwaterloo.ca>).
4938
4939 20020928 pre-release
4940         + modify MKkey_defs.sh to check for POSIX sort -k option, use that if
4941           it is found, to accommodate newer utility which dropped the
4942           compatibility support for +number options (reported by Andrey A
4943           Chernov).
4944         + modify linux terminfo entry to use color palette feature from
4945           linux-c-nc entry (comments by Tomasz Wasiak and Floyd Davidson).
4946         + restore original color definitions in endwin() if init_color() was
4947           used, and resume those colors on the next doupdate() or refresh()
4948           (report by Tomasz Wasiak <tjwasiak@komputom.com.pl>).
4949         + improve debug-traces by modifying MKlib_gen.sh to generate calls
4950           to returnBool() and returnAttr().
4951         + add/use _nc_visbufn() and _nc_viswbufn() to limit the debug trace
4952           of waddnstr() and similar functions to match the parameters as used.
4953         + add/use _nc_retrace_bool() and _nc_retrace_unsigned().
4954         + correct type used by _nc_retrace_chtype().
4955         + add debug traces to some functions in lib_mouse.c
4956         + modify lib_addch.c to handle non-spacing characters.
4957         + correct parameter of RemAttr() in lib_bkgd.c, which caused the c++
4958           demo's boxes to lose the A_ALTCHARSET flag (broken in 20020629).
4959         + correct width computed in _tracedump(), which did not account for
4960           the attributes (broken in 20010602).
4961         + modify test/tracemunch to replace addresses for windows other than
4962           curscr, newscr and stdscr with window0, window1, etc.
4963
4964 20020921 pre-release
4965         + redid fix for edit_man.sed path.
4966         + workaround for Cygwin bug which makes subprocess writes to stdout
4967           result in core dump.
4968         + documented getbegx(), etc.
4969         + minor fixes to configure script to use '%' consistently as a sed
4970           delimiter rather than '@'.
4971         > patch by Philippe Blain:
4972         + add check in lib_overlay.c to ensure that the windows to be merged
4973           actually overlap, and in copywin(), limit the area to be touched
4974           to the lines given for the destination window.
4975
4976 20020914 pre-release
4977         + modified curses.h so that if the wide-character version is installed
4978           overwriting /usr/include/curses.h, and if it relied on libutf8.h,
4979           then applications that use that header for wide-character support
4980           must define HAVE_LIBUTF8_H.
4981         + modify putwin(), getwin() and dupwin() to allow them to operate on
4982           pads (request by Philippe Blain).
4983         + correct attribute-merging in wborder(), broken in 20020216 (report
4984           by Tomasz Wasiak <tjwasiak@grubasek.komputom.com.pl>).
4985         > patch by Philippe Blain:
4986         + corrected pop-counts in tparam_internal() to '!' and '~' cases.
4987         + use sizeof(NCURSES_CH_T) in one place that used sizeof(chtype).
4988         + remove some unused variables from mvcur test-driver.
4989
4990 20020907 pre-release
4991         + change configure script to allow install of widec-character
4992           (ncursesw) headers to overwrite normal (ncurses) headers, since the
4993           latter is a compatible subset of the former.
4994         + fix path of edit_man.sed in configure script, needed to regenerate
4995           html manpages on Debian.
4996         + fix mismatched enums in vsscanf.c, which caused warning on Solaris.
4997         + update README.emx to reflect current patch used for autoconf.
4998         + change web- and ftp-site to invisible-island.net
4999         > patch by Philippe Blain:
5000         + change case for 'P' in tparam_internal() to indicate that it pops
5001           a variable from the stack.
5002         + correct sense of precision and width in parse_format(), to avoid
5003           confusion.
5004         + modify lib_tparm.c, absorb really_get_space() into get_space().
5005         + modify getwin() and dupwin() to copy the _notimeout, _idlok and
5006           _idcok window fields.
5007         + better fix for _nc_set_type(), using typeMalloc().
5008
5009 20020901 pre-release
5010         + change minor version to 3, i.e., ncurses 5.3
5011         + update config.guess, config.sub
5012         + retest build with each configure option; minor ifdef fixes.
5013         + make keyname() return a null pointer rather than "UNKNOWN STRING" to
5014           match XSI.
5015         + modify handling of wide line-drawing character functions to use the
5016           normal line-drawing characters when not in UTF-8 locale.
5017         + add check/fix to comp_parse.c to suppress warning about missing acsc
5018           string.  This happens in configurations where raw termcap information
5019           is processed; tic already does this and other checks.
5020         + modify tic's check for ich/ich1 versus rmir/smir to only warn about
5021           ich1, to match xterm patch #70 notes.
5022         + moved information for ripped-off lines into SCREEN struct to allow
5023           use in resizeterm().
5024         + add experimental wgetch_events(), ifdef'd with NCURSES_WGETCH_EVENTS
5025           (adapted from patch by Ilya Zakharevich - see ncurses/README.IZ).
5026         + amend check in kgetch() from 20020824 to look only for function-keys,
5027           otherwise escape sequences are not resolved properly.
5028         > patch by Philippe Blain:
5029         + removed redundant assignment to SP->_checkfd from newterm().
5030         + check return-value of setupterm() in restartterm().
5031         + use sizeof(NCURSES_CH_T) in a few places that used sizeof(chtype).
5032         + prevent dupwin() from duplicating a pad.
5033         + prevent putwin() from writing a pad.
5034         + use typeRealloc() or typeMalloc() in preference to direct calls on
5035           _nc_doalloc().
5036
5037 20020824
5038         + add a check in kgetch() for cooked characters in the fifo to avoid
5039           calling fifo_push() when a KEY_RESIZE is available (report/analysis
5040           by Sam Varshavchik <mrsam@courier-mta.com>).
5041         + fix an overlooked case for bugzilla #68199 (Philippe Blain).
5042         + ensure clearerr() is called before using ferror() e.g., in
5043           lib_screen.c (report by Philippe Blain).
5044
5045 20020817
5046         + modify lib_screen.c and lib_newwin.c to maintain the SCREEN-specific
5047           pointers for curscr/stdscr/newscr when scr_save() and scr_restore()
5048           modify the global curscr/stdscr/newscr variables.  Fixes Redhat
5049           bugzilla #68199 dated 2002-07-07.
5050         + add checks for null pointer in calls to tparm() and tgoto() based on
5051           FreeBSD bug report.  If ncurses were built with termcap support, and
5052           the first call to tgoto() were a zero-length string, the result would
5053           be a null pointer, which was not handled properly.
5054         + correct a typo in terminfo.head, which gave the octal code for colon
5055           rather than comma.
5056         + remove the "tic -u" option from 20020810, since it did not account
5057           for nested "tc=" clauses, and when that was addressed, was still
5058           unsatisfactory.
5059
5060 20020810
5061         + add tic -A option to suppress capabilities which are commented out
5062           when translating to termcap.
5063         + add tic -u option to provide older behavior of "tc=" clauses.
5064         + modified tic to expand all but the final "tc=" clause in a termcap
5065           entry, to accommodate termcap libraries which do not handle multiple
5066           tc clauses.
5067         + correct typo in curs_inopts.3x regarding CS8/CS7 usage (report by
5068           Philippe Blain).
5069         + remove a couple of redundant uses of A_ATTRIBUTES in expressions
5070           using AttrOf(), which already incorporates that mask (report by
5071           Philippe Blain).
5072         + document TABSIZE variable.
5073         + add NCURSES_ASSUMED_COLORS environment variable, to allow users to
5074           override compiled-in default black-on-white assumption used in
5075           assume_default_colors().
5076         + correct an off-by-one comparison against max_colors in COLORFGBG
5077           logic.
5078         + correct a use of uninitialized memory found by valgrind (reported by
5079           Olaf Buddenhagen <olafBuddenhagen@web.de>).
5080         + modified wresize() to ensure that a failed realloc will not corrupt
5081           the window structure, and to make subwindows fit within the resized
5082           window (completes Debian #87678, #101699)
5083
5084 20020803
5085         + fix an off-by-one in lib_pad.c check for limits of pad (patch by
5086           Philippe Blain).
5087         + revise logic for BeOS in lib_twait.c altered in 20011013 to restore
5088           logic used by lib_getch.c's support for GPM or EMX mouse (report by
5089           Philippe Blain)
5090         + remove NCURSES_CONST from several prototypes in curses.wide, to make
5091           the --enable-const --enable-widec configure options to work together
5092           (report by George Goffe <grgoffe@yahoo.com>).
5093
5094 20020727
5095         + finish no-leak checking in cardfile.c, using this for testing changes
5096           to resizeterm().
5097         + simplify _nc_freeall() using delscreen().
5098
5099 20020720
5100         + check error-return from _nc_set_tty_mode() in _nc_initscr() and
5101           reset_prog_mode() (report/patch by Philippe Blain).
5102         + regenerate configure using patch for autoconf 2.52, to address
5103           problem with identifying C++ bool type.
5104         + correct/improve logic to produce an exit status for errors in tput,
5105           which did not exit with an error when told to put a string not in the
5106           current terminfo entry (report by David Gomez <david@pleyades.net>).
5107         + modify configure script AC_OUTPUT() call to work around defect in
5108           autoconf 2.52 which adds an ifdef'd include to the generated
5109           configure definitions.
5110         + remove fstat() check from scr_init(), which also fixes a missing
5111           include for <sys/stat.h> from 20020713 (reported by David Ellement,
5112           fix suggested by Philippe Blain).
5113         + update curs_scanw.3x manpage to note that XSI curses differs from
5114           SVr4 curses: return-values are incompatible.
5115         + correct several prototypes in manpages which used const
5116           inconsistently with the curses.h file, and removed spurious const's
5117           in a few places from curses.h, e.g., for wbkgd() (report by Glenn
5118           Maynard <glenn@zewt.org>).
5119         + change internal type used by tparm() to long, to work with LP64 model.
5120         + modify nc_alloc.h to allow building with g++, for testing.
5121
5122 20020713
5123         + add resize-handling to cardfile.c test program.
5124         + altered resizeterm() to avoid having it fail when a child window
5125           cannot be resized because it would be larger than its parent.  (More
5126           work must be done on this, but it works well enough to integrate).
5127         + improve a limit-check in lib_refresh.c
5128         + remove check in lib_screen.c relating dumptime to file's modification
5129           times, since that would not necessarily work for remotely mounted
5130           filesystems.
5131         + modify lrtest to simplify debugging changes to resizeterm, e.g.,
5132           t/T commands to enable/disable tracing.
5133         + updated status of multibyte support in TO-DO.
5134         + update contact info in source-files (patch by Juergen Pfeifer).
5135
5136 20020706
5137         + add Caps.hpux11, as an example.
5138         + modify version_filter(), used to implement -R option for tic and
5139           infocmp, to use computed array offsets based on the Caps.* file which
5140           is actually configured, rather than constants which correspond to
5141           the Caps file.
5142         + reorganized lib_raw.c to avoid updating SP and cur_term state if the
5143           functions fail (reported by Philippe Blain).
5144         + add -Wundef to gcc warnings, adjust a few ifdef's to accommodate gcc.
5145
5146 20020629
5147         + correct parameters to setcchar() in ncurses.c (cf: 20020406).
5148         + set locale in most test programs (view.c and ncurses.c were the
5149           only ones).
5150         + add configure option --with-build-cppflags (report by Maksim A
5151           Nikulin <M.A.Nikulin@inp.nsk.su>).
5152         + correct a typo in wide-character logic for lib_bkgnd.c (Philippe
5153           Blain).
5154         + modify lib_wacs.c to not cancel the acsc, smacs, rmacs strings when
5155           in UTF-8 locale.  Wide-character functions use Unicode values, while
5156           narrow-character functions use the terminfo data.
5157         + fix a couple of places in Ada95/samples which did not compile with
5158           gnat 3.14
5159         + modify mkinstalldirs so the DOS-pathname case is locale-independent.
5160         + fix locale problem in MKlib_gen.sh by forcing related variables to
5161           POSIX (C), using same approach as autoconf (set variables only if
5162           they were set before).  Update MKterminfo.sh and MKtermsort.sh to
5163           match.
5164
5165 20020622
5166         + add charset to generated html.
5167         + add mvterm entry, adapted from a FreeBSD bug-report by Daniel Rudy
5168           <dcrudy@pacbell.net> -TD
5169         + add rxvt-16color, ibm+16color entries -TD
5170         + modify check in --disable-overwrite option so that it is used by
5171           default unless the --prefix/$prefix value is not /usr, in attempt to
5172           work around packagers, e.g., for Sun's freeware, who do not read the
5173           INSTALL notes.
5174
5175 20020615
5176         + modify wgetch() to allow returning ungetch'd KEY_RESIZE as a function
5177           key code in get_wch().
5178         + extended resize-handling in test/ncurses 'a' menu to the entire
5179           stack of windows created with 'w' commands.
5180         + improve $COLORFGBG feature by interpreting an out-of-range color
5181           value as an SGR 39 or 49, for foreground/background respectively.
5182         + correct a typo in configure --enable-colorfgbg option, and move it
5183           to the experimental section (cf: 20011208).
5184
5185 20020601
5186         + add logic to dump_entry.c to remove function-key definitions that do
5187           not fit into the 1023-byte limit for generated termcaps.  This makes
5188           hds200 fit.
5189         + more improvements to tic's warnings, including logic to ignore
5190           differences between delay values in sgr strings.
5191         + move definition of KEY_RESIZE into MKkeydefs.sh script, to
5192           accommodate Caps.osf1r5 which introduced a conflicting definition.
5193
5194 20020525
5195         + add simple resize-handling in test/ncurses.c 'a' menu.
5196         + fixes in keyname() and _tracechar() to handle negative values.
5197         + make tic's warnings about mismatches in sgr strings easier to follow.
5198         + correct tic checks for number of parameters in smgbp and smglp.
5199         + improve scoansi terminfo entry, and add scoansi-new entry -TD
5200         + add pcvt25-color terminfo entry -TD
5201         + add kf13-kf48 strings to cons25w terminfo entry (reported by Stephen
5202           Hurd <deuce@lordlegacy.org> in newsgroup lucky.freebsd.bugs) -TD
5203         + add entrypoint _nc_trace_ttymode(), use this to distinguish the
5204           Ottyb and Nttyb members of terminal (aka cur_term), for tracing.
5205
5206 20020523
5207         + correct and simplify logic for lib_pad.c change in 20020518 (reported
5208           by Mike Castle).
5209
5210 20020518
5211         + fix lib_pad.c for case of drawing a double-width character which
5212           falls off the left margin of the pad (patch by Kriang Lerdsuwanakij
5213           <lerdsuwa@users.sourceforge.net>)
5214         + modify configure script to work around broken gcc 3.1 "--version"
5215           option, which adds unnecessary trash to the requested information.
5216         + adjust ifdef's in case SIGWINCH is not defined, e.g., with DJGPP
5217           (reported by Ben Decker <deckerben@freenet.de>).
5218
5219 20020511
5220         + implement vid_puts(), vid_attr(), term_attrs() based on the narrow-
5221           character versions as well.
5222         + implement erasewchar(), killwchar() based on erasechar() and
5223           killchar().
5224         + modify erasechar() and killchar() to return ERR if the value was
5225           VDISABLE.
5226         + correct a bug in wresize() in handling subwindows (based on patch by
5227           Roger Gammans <rgammans@computer-surgery.co.uk>, report by Scott Beck
5228           <scott@gossamer-threads.com>).
5229         + improve test/tclock.c by making the second-hand update more often
5230           if gettimeofday() is available.
5231
5232 20020429
5233         + workaround for Solaris sed with MKlib_gen.sh (reported by Andy
5234           Tsouladze <andyt@mypoints.com>).
5235
5236 20020427
5237         + correct return-value from getcchar(), making it consistent with
5238           Solaris and Tru64.
5239         + reorder loops that generate makefile rules for different models vs
5240           subsets so configure --with-termlib works again.  This was broken by
5241           logic added to avoid duplicate rules in changes to accommodate cygwin
5242           dll's (reported by George.R.Goffe@seagate.com).
5243         + update config.guess, config.sub
5244
5245 20020421
5246         + modify ifdef's in write_entry.c to allow use of symbolic links on
5247           platforms with no hard links, e.g., BeOS.
5248         + modify a few includes to allow compile with BeOS, which has stdbool.h
5249           with a conflicting definition for 'bool' versus its OS.h definition.
5250         + amend MKlib_gen.sh to work with gawk, which defines 'func' as an
5251           alias for 'function'.
5252
5253 20020420
5254         + correct form of prototype for ripoffline().
5255         + modify MKlib_gen.sh to test that all functions marked as implemented
5256           can be linked.
5257
5258 20020413
5259         + add manpages: curs_get_wstr.3x, curs_in_wchstr.3x
5260         + implement wgetn_wstr().
5261         + implement win_wchnstr().
5262         + remove redefinition of unget_wch() in lib_gen.c (reported by
5263           Jungshik Shin <jshin@jtan.com>).
5264
5265 20020406
5266         + modified several of the test programs to allow them to compile with
5267           vendor curses implementations, e.g., Solaris, AIX -TD
5268
5269 20020323
5270         + modified test/configure to allow configuring against ncursesw.
5271         + change WACS_xxx definition to use address, to work like Tru64 curses.
5272
5273 20020317
5274         + add 'e' and 'm' toggles to 'a', 'A' tests in ncurses.c to demonstrate
5275           effect of echo/noecho and meta modes.
5276         + add 'A' test to ncurses.c to demonstrate wget_wch() and related
5277           functions.
5278         + add manpage: curs_get_wch.3x
5279         + implement unget_wch().
5280         + implement wget_wch().
5281
5282 20020310
5283         + regenerated html manpages.
5284         + add manpages: curs_in_wch.3x, curs_ins_wch.3x, curs_ins_wstr.3x
5285         + implement wins_wch().
5286         + implement win_wch().
5287         + implement wins_nwstr(), wins_wstr().
5288
5289 20020309
5290         + add manpages: curs_addwstr.3x, curs_winwstr.3x
5291         + implement winnwstr(), winwstr().
5292
5293 20020223
5294         + add manpages: curs_add_wchstr.3x, curs_bkgrnd.3x
5295         + document wunctrl, key_name.
5296         + implement key_name().
5297         + remove const's in lib_box.c incorrectly leftover after splitting off
5298           lib_box_set.c
5299         + update llib-lncurses, llib-ncursesw, fix configure script related to
5300           these.
5301
5302 20020218
5303         + remove quotes on "SYNOPSIS" in man/curs_box_set.3x, which resulted
5304           in spurious symlinks on install.
5305
5306 20020216
5307         + implement whline_set(), wvline_set(), add manpage curs_border_set.
5308         + add subtest 'b' to 'F' and 'f' in ncurses.c to demonstrate use of
5309           box() and box_set() functions.
5310         + add subtest 'u' to 'F' in ncurses.c, to demonstrate use of addstr()
5311           given UTF-8 string equivalents of WACS_xxx symbols.
5312         + minor fixes to several manpages based on groff -ww output.
5313         + add descriptions of external variables of termcap interface to
5314           the manpage (report by Bruce Evans <bde@zeta.org.au>).
5315         > patches by Bernhard Rosenkraenzer:
5316         + correct configure option --with-bool, which was executed as
5317           --with-ospeed.
5318         + add quotes for parameters of --with-bool and --with-ospeed configure
5319           options.
5320         > patch by Sven Verdoolaege (report by Gerhard Haering
5321           <haering_linux@gmx.de>):
5322         + correct typos in definitions of several wide-character macros:
5323           waddwstr, wgetbkgrnd, mvaddwstr, mvwadd_wchnstr, mvwadd_wchnstr,
5324           mvwaddwstr.
5325         + pass $(CPPFLAGS) to MKlib_gen.sh, thereby fixing a missing definition
5326           of _XOPEN_SOURCE_EXTENDED, e.g., on Solaris
5327
5328 20020209
5329         + implement wide-acs characters for UTF-8 locales.  When in UTF-8
5330           locale, ignore narrow version of acs.  Add 'F' test to test/ncurses.c
5331           to demonstrate.
5332         + correct prototype in keybound manpage (noted from a Debian mailing
5333           list item).
5334
5335 20020202
5336         + add several cases to the wscanw() example in testcurs.c, showing the
5337           format.
5338         + implement a simple vsscanf() fallback function which uses the %n
5339           conversion to help parse the input data (prompted by discussion with
5340           Albert Chin-A-Young).
5341         + modify mk-1st.awk and test/Makefile.in to add $(LDFLAGS) when making
5342           shared libraries, and to use $(CFLAGS) when linking test programs
5343           (patch by Albert Chin-A-Young).
5344         + add a call to _nc_keypad() in keypad() to accommodate applications
5345           such as nvi, which use curses for output but not for input (fixes
5346           Debian #131263, cf: 20011215).
5347         + add entrypoints to resizeterm.c which provide better control over the
5348           process:  is_term_resized() and resize_term().  The latter restores
5349           the original design of resizeterm() before KEY_RESIZE was added in
5350           970906.  Do this to accommodate 20010922 changes to view.c, but allow
5351           for programs with their own sigwinch handler, such as lynx (reported
5352           by Russell Ruby <russ@math.orst.edu>).
5353
5354 20020127
5355         + fix a typo in change to mk-1st.awk, which broke the shared-library
5356           makefile rules (reported by Martin Mokrejs).
5357
5358 20020126
5359         + update config.guess, config.sub
5360         + finish changes needed to build dll's on cygwin.
5361         + fix a typo in mvwchat() macro (reported by Cy <yam@homerow.net).
5362
5363 20020119
5364         + add case in lib_baudrate.c for B921600 (patch by Andrey A Chernov).
5365         + correct missing sed-editing stage in manpage installs which is used
5366           to rename manpages, broken in 20010324 fix for Debian #89939 (Debian
5367           #78866).
5368         + remove -L$(libdir) from linker flags, probably not needed any more
5369           since HPUX is handled properly (reported by Niibe Yutaka
5370           <gniibe@m17n.org>).
5371         + add configure check for mbstate_t, needed for wide-character
5372           configuration.  On some platforms we must include <wchar.h> to
5373           define this (reported by Daniel Jacobowitz).
5374         + incorporate some of the changes needed to build dll's on cygwin.
5375
5376 20020112a
5377         + workaround for awk did not work with mawk, adjusted shell script.
5378
5379 20020112
5380         + add Caps.osf1r5, as an example.
5381         + modify behavior of can_clear_with() so that if an application is
5382           running in a non-bce terminals with default colors enabled, it
5383           returns true, allowing the user to select/paste text without picking
5384           up extraneous trailing blanks (adapted from patch by Daniel
5385           Jacobowitz <dmj+@andrew.cmu.edu>).
5386         + modify generated curses.h to ifdef-out prototypes for extensions if
5387           they are disabled, and to define curses_version() as a string in that
5388           case.  This is needed to make the programs such as tic build in that
5389           configuration.
5390         + modified generated headers.sh to remove a gzip'd version of the
5391           target file if it exists, in case non-gzip'd manpages are installed
5392           into a directory where gzip'd ones exist.  In that case, the latter
5393           would be found.
5394         + corrected a redundant initialization of signal handlers from 20010922
5395           changes.
5396         + clarified bug-reporting address in terminfo.src (report by John H
5397           DuBois III <spcecdt@armory.com>).
5398         > several fixes from Robert Joop:
5399         + do not use "-v" option of awk in MKkey_defs.sh because it does not
5400           work with SunOS nawk.
5401         + modify definitions for libutf8 in curses.h to avoid redefinition
5402           warnings for mblen
5403         + quoted references to compiler in shell command in misc/Makefile, in
5404           case it uses multiple tokens.
5405
5406 20011229
5407         + restore special case from 20010922 changes to omit SA_RESTART when
5408           setting up SIGWINCH handler, which is needed to allow wgetch() to be
5409           interrupted by that signal.
5410         + updated configure macro CF_WITH_PATHLIST, to omit some double quotes
5411           not needed with autoconf 2.52
5412         + revert configure script to autoconf 2.13 patched with
5413                 autoconf-2.13-19990117.patch.gz (or later)
5414           from
5415                 ftp://invisible-island.net/autoconf/
5416           because autoconf 2.52 macro AC_PROG_AWK does not work on HPUX 11.0
5417           (report by David Ellement <ellement@sdd.hp.com>).  This also fixes a
5418           different problem configuring with Mac OS X (reported by Marc Smith
5419           <marc.a.smith@home.com>).
5420
5421 20011222
5422         + modify include/edit_cfg.h to eliminate BROKEN_LINKER symbol from
5423           term.h
5424         + move prototype for _nc_vsscanf() into curses.h.in to omit
5425           HAVE_VSSCANF symbol from curses.h, which was dependent upon the
5426           ncurses_cfg.h file which is not installed.
5427         + use ACS_LEN rather than SIZEOF(acs_map) in trace code of lib_acs.c,
5428           to work with broken linker configuration, e.g., cygwin (report by
5429           Robert Joop <rj@rainbow.in-berlin.de>).
5430         + make napms() call _nc_timed_wait() rather than poll() or select(),
5431           to work around broken implementations of these on cygwin.
5432
5433 20011218
5434         + drop configure macro CF_WIDEC_SHIFT, since that was rendered obsolete
5435           by Sven Verdoolaege's rewrite of wide-character support.  This makes
5436           libncursesw incompatible again, but makes the header files almost the
5437           same as in the narrow-character configuration.
5438         + simplify definitions that combine wide/narrow versions of bkgd, etc.,
5439           to eliminate differences between the wide/narrow versions of curses.h
5440         + correct typo in configure macro CF_FUNC_VSSCANF
5441         + correct location of call to _nc_keypad() from 20011215 changes which
5442           prevented keypad() from being disabled (reported by Lars Hecking).
5443
5444 20011215
5445         + rewrote ncurses 'a' test to exercise wgetch() and keypad() functions
5446           better, e.g., by adding a 'w' command to create new windows which
5447           may have different keypad() settings.
5448         + corrected logic of keypad() by adding internal screen state to track
5449           whether the terminal's keypad-mode has been set.  Use this in
5450           wgetch() to update the keypad-mode according to whether the
5451           associated window's keypad-mode has been set with keypad().  This
5452           corrects a related problem restoring terminal state after handling
5453           SIGTSTP (reported by Mike Castle).
5454         + regenerate configure using patch for autoconf 2.52
5455                 autoconf-2.52-patch.gz
5456           at
5457                 ftp://invisible-island.net/autoconf/
5458         + update config.guess, config.sub from
5459                 http://subversions.gnu.org/cgi-bin/viewcvs/config/config/
5460         + minor changes to quoting in configure script to allow it to work
5461           with autoconf 2.52
5462
5463 20011208
5464         + modify final checks in lib_setup.c for line and col values, making
5465           them independent.
5466         + modify acs_map[] if configure --broken-linker is specified, to make
5467           it use a function rather than an array (prompted by an incorrect
5468           implementation in cygwin package).
5469         + correct spelling of configure option --enable-colorfgbg, which
5470           happened to work if --with-develop was set (noted in cygwin package
5471           for ncurses).
5472         + modify ifdef for genericerror() to compile with SUNWspro Sun WorkShop
5473           6 update 1 C++ 5.2 (patch by Sullivan N Beck <sbeck@cise.ufl.edu>).
5474         + add configure checks to see if ncurses' fallback vsscanf() will
5475           compile either of the special cases for FILE structs, and if not,
5476           force it to the case which simply returns an error (report by
5477           Sullivan N Beck <sbeck@cise.ufl.edu> indicates that Solaris 8 with
5478           64-bits does not allow access to FILE's fields).
5479         + modify ifdef's for c++/cursesw.cc to use the fallback vsscanf() in
5480           the ncurses library if no better substitute for this can be found
5481           in the C++ runtime.
5482         + modify the build to name dynamic libraries according to the
5483           convention used on OS X and Darwin.  Rather than something like
5484           libncurses.dylib.5.2, Darwin would name it libncurses.  5.dylib.
5485           There are a few additional minor fixes, such as setting the library
5486           version and compatibility version numbers (patch by Jason Evans
5487           <jevans@apple.com>).
5488         + use 'sh' to run mkinstalldirs, to work around problems with buggy
5489           versions of 'make' on OS/2 (report by John Polterak <jp@eyup.org>).
5490         + correct typo in manpage description of curs_set() (Debian #121548).
5491         + replace the configure script existence-check for mkstemp() by one
5492           that checks if the function works, needed for older glibc and
5493           AmigaOS.
5494
5495 20011201
5496         + modify script that generates fallbacks.c to compile a temporary
5497           copy of the terminfo source in case the host does not contain all of
5498           the entries requested for fallbacks (request by Greg Roelofs).
5499         + modify configure script to accommodate systems such as Mac OS X whose
5500           <stdbool.h> header defines a 'bool' type inconsistent with ncurses,
5501           which normally makes 'bool' consistent with C++.  Include <stdbool.h>
5502           from curses.h to force consistent usage, define a new type
5503           NCURSES_BOOL and related that to the exported 'bool' as either a
5504           typedef or definition, according to whether <stdbool.h> is present
5505           (based on a bug report for tin 1.5.9 by Aaron Adams <adamsa@mac.com>).
5506
5507 20011124
5508         + added/updated terminfo entries for M$ telnet and KDE konsole -TD
5509
5510 20011117
5511         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
5512           (Benjamin C W Sittler).
5513         + add putty terminfo entry -TD
5514         + if configuring for wide-curses, define _XOPEN_SOURCE_EXTENDED, since
5515           this may not otherwise be defined to make test/view.c compile.
5516
5517 20011110
5518         + review/correct several missing/generated items in curses.wide, sorted
5519           the lists to make subsequent diff's easier to track.
5520
5521 20011103
5522         + add manual pages for add_wch(), echo_wchar(), getcchar(),
5523           mvadd_wch(), mvwadd_wch(), setcchar(), wadd_wch() and wecho_wchar().
5524         + implement wecho_wchar()
5525         + modify _tracedump() to handle wide-characters by mapping them to '?'
5526           and control-characters to '.', to make the trace file readable.  Also
5527           dynamically allocate the buffer used by _tracedump() for formatting
5528           the results.
5529         + modify T_CALLED/T_RETURN macros to ease balancing call/return lines
5530           in a trace by using curly braces.
5531         + implement _nc_viscbuf(), for tracing cchar_t arrays.
5532         + correct trace-calls in setcchar() and getcchar() functions, which
5533           traced the return values but not the entry to each function.
5534         + correct usage message in test/view.c, which still mentioned -u flag.
5535
5536 20011027
5537         + modify configure script to allow building with termcap only, or with
5538           fallbacks only.  In this case, we do not build tic and toe.
5539         + add configure --with-termpath option, to override default TERMPATH
5540           value of /etc/termcap:/usr/share/misc/termcap.
5541         + cosmetic change to tack: make menu descriptions agree with menu
5542           titles.
5543
5544 20011020
5545         + rewrote limit-checks in wscrl() and associated _nc_scroll_window(),
5546           to ensure that if the parameter of wscrl() is larger than the size of
5547           the scrolling region, then the scrolling region will be cleared
5548           (report by Ben Kohlen <bckohlen@yahoo.com>).
5549         + add trace/varargs.c, using this to trace parameters in lib_printw.c
5550         + implement _tracecchar_t2() and _tracecchar_t().
5551         + split-out trace/visbuf.c
5552         + correct typo in lib_printw.c changes from 20010922 (report by Mike
5553           Castle).
5554
5555 20011013
5556         + modify run_tic.sh to check if the build is a cross-compile.  In that
5557           case, do not use the build's tic to install the terminfo database
5558           (report by Rafael Rodriguez Velilla <rrv@tid.es>).
5559         + modify mouse click resolution so that mouseinterval(-1) will disable
5560           it, e.g., to handle touchscreens via a slow connection (request by
5561           Byron Stanoszek <gandalf@winds.org>).
5562         + correct mouseinterval() default value shown in curs_mouse.3x
5563         + remove conflicting definition of mouse_trafo() (reported by Lars
5564           Hecking, using gcc 2.95.3).
5565
5566 20011001
5567         + simpler fix for signal_name(), to replace the one overlooked in
5568           20010929 (reported by Larry Virden).
5569
5570 20010929
5571         + add -i option to view.c, to test ncurses' check for non-default
5572           signal handler for SIGINT, etc.
5573         + add cases for shared-libraries on Darwin/OS X (patch by Rob Braun
5574           <bbraun@synack.net>).
5575         + modify tset to restore original I/O modes if an error is encountered.
5576           Also modify to use buffered stderr consistently rather than mixing
5577           with write().
5578         + change signal_name() function to use if-then-else rather than case
5579           statement, since signal-values aren't really integers (reported by
5580           Larry Virden).
5581         + add limit checks in wredrawln(), fixing a problem where lynx was
5582           repainting a pad which was much larger than the screen.
5583
5584 20010922
5585         + fix:  PutRange() was counting the second part of a wide character as
5586           part of a run, resulting in a cursor position that was one too far
5587           (patch by Sven Verdoolaege).
5588         + modify resizeterm() to not queue a KEY_RESIZE if there was no
5589           SIGWINCH, thereby separating the two styles of SIGWINCH handling
5590           in test/view.c
5591         + simplified lib_tstp.c, modify it to use SA_RESTART flag for SIGWINCH.
5592         + eliminate several static buffers in the terminfo compiler, using
5593           allocated buffers.
5594         + modify MKkeyname.awk so that keyname() does not store its result into
5595           a static buffer that is overwritten by the next call.
5596         + reorganize the output of infocmp -E and -e options to compile cleanly
5597           with gcc -Wwrite-strings warnings.
5598         + remove redefinition of chgat/wchgat/mvwchgat from curses.wide
5599
5600 20010915
5601         + add label to test/view.c, showing the name of the last key or signal
5602           that made the screen repaint, to make it clearer when a sigwinch
5603           does this.
5604         + use ExitProgram() consistently in the test-programs to make it
5605           simpler to test leaks with dmalloc, etc.
5606         + move hashtab static data out of hashmap.c into SCREEN struct.
5607         + make NO_LEAK code compile with revised WINDOWLIST structs.
5608
5609 20010908
5610         + modify tgetent() to check if exit_attribute_mode resets the alternate
5611           character set, and if so, attempt to adjust the copy of the termcap
5612           "me" string which it will return to eliminate that part.  In
5613           particular, 'screen' would lose track of line-drawing characters
5614           (report by Frederic L W Meunier <0@pervalidus.net>, analysis by
5615           Michael Schroeder).
5616
5617 20010901
5618         + specify DOCTYPE in html manpages.
5619         + add missing macros for several "generated" functions:  attr_get(),
5620           attr_off(), attr_on(), attr_set(), chgat(), mvchgat(), mvwchgat() and
5621           mouse_trafo().
5622         + modify view.c to agree with non-experimental status of ncurses'
5623           sigwinch handler:
5624           + change the sense of the -r option, making it default to ncurses'
5625             sigwinch handler.
5626           + add a note explaining what functions are unsafe in a signal
5627             handler.
5628           + add a -c option, to set color display, for testing.
5629         + unset $data variable in MKterminfo.sh script, to address potential
5630           infinite loop if shell malfunction (report by Samuel Mikes
5631           <smikes@cubane.com>, for bash 2.05.0 on a Linux 2.0.36 system).
5632         + change kbs in mach terminfo entries to ^?  (Marcus Brinkmann
5633           <Marcus.Brinkmann@ruhr-uni-bochum.de>).
5634         + correct logic for COLORFGBG environment variable: if rxvt is compiled
5635           with xpm support, the variable has three fields, making it slightly
5636           incompatible with itself.  In either case, the background color is
5637           the last field.
5638
5639 20010825
5640         + move calls to def_shell_mode() and def_prog_mode() before loop with
5641           callbacks in lib_set_term.c, since the c++ demo otherwise initialized
5642           the tty modes before saving them (patch by John David Anglin
5643           <dave@hiauly1.hia.nrc.ca>).
5644         + duplicate logic used to initialize trace in newterm(), in initscr()
5645           to avoid confusing trace of initscr().
5646         + simplify allocation of WINDOW and WINDOWLIST structs by making the
5647           first a part of the second rather than storing a pointer.  This saves
5648           a call to malloc for each window (discussion with Philippe Blain).
5649         + remove unused variable 'used_ncv' from lib_vidattr.c (Philippe
5650           Blain).
5651         + modify c++/Makefile.in to accommodate archive programs that are
5652           different for C++ than for C, and add cases for vendor's C++
5653           compilers on Solaris and IRIX (report by Albert Chin-A-Young).
5654         + correct manpage description of criteria for deciding if the terminal
5655           supports xterm mouse controls.
5656         + add several configure script options to aid with cross-compiling:
5657           --with-build-cc, --with-build-cflags, --with-build-ldflags, and
5658           --with-build-libs (request by Greg Roelofs).
5659         + change criteria for deciding if configure is cross-compiling from
5660           host/build mismatch to host/target mismatch (request by Greg Roelofs
5661           <greg.roelofs@philips.com>).
5662         + correct logic for infocmp -e and -E options which writes the data for
5663           the ext_Names[] array.  This is needed if one constructs a fallback
5664           table for a terminfo entry which uses extended termcap names, e.g.,
5665           AX in a color xterm.
5666         + fix undefined NCURSES_PATHSEP when configure --disable-database
5667           option is given.
5668
5669 20010811
5670         + fix for VALID_BOOLEAN() macro when char is not signed.
5671         + modify 'clean' rule for C++ binding to work with Sun compiler, which
5672           caches additional information in a subdirectory of the objects.
5673         + added llib-ncursesw.
5674
5675 20010804
5676         + add Caps.keys example for experimental extended function keys
5677           (adapted from a patch by Ilya Zakharevich).
5678         + correct parameter types of vidputs() and vidattr() to agree with
5679           header files (report by William P Setzer).
5680         + fix typos in several man-pages (patch by William P Setzer).
5681         + remove unneeded ifdef for __GNUG__ in CF_CPP_VSCAN_FUNC configure
5682           macro, which made ncurses C++ binding fail to build with other
5683           C++ compilers such as HPUX 11.x (report by Albert Chin-A-Young).
5684         + workaround for bug in HPUX 11.x C compiler: add a blank after
5685           NCURSES_EXPORT macro in form.h (report by Albert Chin-A-Young)
5686         + ignore blank lines in Caps* files in MKkey_defs.sh script (report by
5687           Albert Chin-A-Young).
5688         + correct definition of key_end in Caps.aix4, which left KEY_END
5689           undefined (report by Albert Chin-A-Young).
5690         + remove a QNX-specific fallback prototype for vsscanf(), which is
5691           obsolete with QNX RTP.
5692         + review/fix some of the T() and TR() macro calls, having noticed that
5693           there was no data for delwin() in a trace of dialog because there was
5694           no returnVoid call for wtimeout().  Also, traces in lib_twait.c are
5695           now selected under TRACE_IEVENT rather than TRACE_CALLS.
5696
5697 20010728
5698         + add a _nc_access() check before opening files listed via $TERMPATH.
5699         + using modified man2html, regenerate some of the html manpages to fix
5700           broken HREF's where the link was hyphenated.
5701
5702 20010721
5703         + add some limit/pointer checks to -S option of tputs.
5704         + updated/expanded Apple_Terminal and Darwin PowerPC terminfo entries
5705           (Benjamin C W Sittler).
5706         + add a note in curs_termcap.3x regarding a defect in the XSI
5707           description of tgetent (based on a discussion with Urs Jansen
5708           regarding the HPUX 11.x implementation, whose termcap interface is
5709           not compatible with existing termcap programs).
5710         + modify manhtml rule in dist.mk to preserve copyright notice on the
5711           generated files, as well as to address HTML style issues reported by
5712           tidy and weblint.  Regenerated/updated corresponding html files.
5713         + comment out use of Protected_Character and related rarely used
5714           attributes in ncurses Ada95 test/demo to compile with wide-character
5715           configuration.
5716
5717 20010714
5718         + implement a simple example in C++ demo to test scanw().
5719         + corrected stdio function used to implement scanw() in cursesw.cc
5720         + correct definition of RemAttr() macro from 20010602 changes, which
5721           caused C++ SillyDemo to not show line-drawing characters.
5722         + modify C++ binding, adding getKey() which can be overridden by user
5723           to substitute functions other than getch() for keyboard processing
5724           of forms and menus (patch by Juergen Pfeifer).
5725
5726 20010707
5727         + fix some of the trace calls which needed modification to work with
5728           new wide-character structures.
5729         + modify magic-cookie code in tty_update.c to compile with new
5730           wide-character structures (report by <George.R.Goffe@seagate.com>).
5731         + ensure that _XOPEN_SOURCE_EXTENDED is defined in curses.priv.h if
5732           compiling for wide-character configuration.
5733         + make addwnstr() handle non-spacing characters (patch by Sven
5734           Verdoolaege).
5735
5736 20010630
5737         + add configure check to define _GNU_SOURCE, needed to prop up glibc
5738           header files.
5739         + split-out include/curses.wide to solve spurious redefinitions caused
5740           by defining _GNU_SOURCE, and move includes for <signal.h> before
5741           <curses.h> to work around misdefinition of ERR in glibc 2.1.3 header
5742           file.
5743         + extended ospeed change to NetBSD and OpenBSD -TD
5744         + modify logic in lib_baudrate.c for ospeed, for FreeBSD to make it
5745           work properly for termcap applications (patch by Andrey A Chernov).
5746
5747 20010623
5748         + correct an overlooked CharOf/UChar instance (reports by Eugene Lee
5749           <eugene@anime.net>, Sven Verdoolaege).
5750         + correct unneeded ifdef for wunctrl() (reported by Sven Verdoolaege)
5751
5752 20010618
5753         + change overlooked several CharOf/UChar instances.
5754         > several patches from Sven Verdoolaege:
5755         + correct a typo in wunctrl(), which made it appear that botwc() was
5756           needed (no such function: use btowc()).
5757         + reimplement wide-character demo in test/view.c, using new functions.
5758         + implement getcchar(), setcchar(), wadd_wchnstr() and related macros.
5759         + fix a syntax problem with do/if/while in PUTC macro (curses.priv.h).
5760
5761 20010616
5762         + add parentheses in macros for malloc in test.priv.h, fixes an
5763           expression in view.c (report by Wolfgang Gutjahr <gutw@knapp.co.at>).
5764         + add Caps.uwin, as an example.
5765         + change the way curses.h is generated, making the list of function
5766           key definitions extracted from the Caps file.
5767         + add #undef's before possible redefinition of ERR and OK in curses.h
5768         + modify logic in tic, toe, tput and tset which checks for basename of
5769           argv[0] to work properly on systems such as OS/2 which have
5770           case-independent filenames and/or program suffixes, e.g., ".ext".
5771
5772 20010609
5773         + add a configure check, if --enable-widec is specified, for putwc(),
5774           which may be in libutf8.
5775         + remove some unnecessary text from curs_extend.3x and
5776           default_colors.3x which caused man-db to make incorrect symbolic
5777           links (Debian bug report #99550).
5778         + add configure check if cast for _IO_va_list is needed to compile
5779           C++ vscan code (Debian bug report #97945).
5780         > several patches from Sven Verdoolaege:
5781         + correct code that used non-standard auto-initialization of a struct,
5782           which gcc allows (report by Larry Virden).
5783         + use putwc() in PUTC() macro.
5784         + make addstr() work for the special case where the codeset is
5785           non-stateful (eg. UTF-8), as well as stateful codesets.
5786
5787 20010603
5788         + correct loop expression in NEXT_CHAR macro for lib_addstr.c changes
5789           from 20010602 (report by Mike Castle).
5790
5791 20010602
5792         + modify mvcur() to avoid emitting newline characters when nonl() mode
5793           is set.  Normally this is not a problem since the actual terminal
5794           mode is set to suppress nl/crlf translations, however it is useful to
5795           allow the caller to manipulate the terminal mode to avoid staircasing
5796           effects after spawning a process which writes messages (for lynx
5797           2.8.4) -TD
5798         > several patches from Sven Verdoolaege <skimo@kotnet.org>:
5799         + remove redundant type-conversion in fifo_push()
5800         + correct definition of addwstr() macro in curses.h.in
5801         + remove _nc_utf8_outch()
5802         + rename most existing uses of CharOf() to UChar(), e.g., where it is
5803           used to prevent sign-extension in ctype macros.
5804         + change some chtype's to attr_t's where the corresponding variables
5805           are used to manipulate attributes.
5806         + UpdateAttr() was applied to both attributes (attr_t) and characters
5807           (chtype).  Modify macro and calls to it to make these distinct.
5808         + add CharEq() macro, use in places where wide-character configuration
5809           implementation uses a struct for cchar_t.
5810         + moved struct ldat into curses.priv.h, to hide implementation details.
5811         + change CharOf() macro to use it for masking A_CHARTEXT data from
5812           chtype's.
5813         + add L() macro to curses.priv.h, for long-character literals.
5814         + replace several assignments from struct ldat entries to chtype or
5815           char values with combinations of CharOf() and AttrOf() macros.
5816         + add/use intermediate ChAttrOf() and ChCharOf() macros where we know
5817           we are using chtype data.
5818         + add/use lowlevel attribute manipulation macros AddAttr(), RemAttr()
5819           and SetAttr().
5820         + add/use SetChar() macro, to change a cchar_t based on a character and
5821           attributes.
5822         + convert most internal use of chtype to NCURSES_CH_T, to simplify use
5823           of cchar_t for wide-character configuration.  Similarly, use ARG_CH_T
5824           where a pointer would be more useful.
5825         + add stubs for tracing cchar_t values.
5826         + add/use macro ISBLANK()
5827         + add/use constructors for cchar_t's: NewChar(), NewChar2().
5828         + add/use macros CHREF(), CHDEREF(), AttrOfD(), CharOfD() to facilitate
5829           passing cchar_t's by address.
5830         + add/use PUTC_DATA, PUTC() macros.
5831         + for wide-character configuration, move the window background data to
5832           the end of the WINDOW struct so that whether _XOPEN_SOURCE_EXTENDED
5833           is defined or not, the offsets in the struct will not change.
5834         + modify addch() to work with wide-characters.
5835         + mark several wide-character functions as generated in curses.h.in
5836         + implement wunctrl(), wadd_wch(), wbkgrndset(), wbkgrnd(),
5837           wborder_set() and waddnwstr().
5838
5839 20010526
5840         + add experimental --with-caps=XXX option to customize to similar
5841           terminfo database formats such as AIX 4.x
5842         + add Caps.aix4 as an example.
5843         + modify Caps to add columns for the the KEY_xxx symbols.
5844         + modify configure --with-widec to suppress overwrite of libcurses.so
5845           and curses.h
5846         + add checks to toe.c to avoid being confused by files and directories
5847           where we would expect the reverse, e.g., source-files in the
5848           top-level terminfo levels as is the case for AIX.
5849
5850 20010519
5851         + add top-level 'depend' rule for the C sources, assuming that the
5852           makedepend program is available.  As a side-effect, this makes
5853           the generated sources, as in "make sources" (prompted by a report
5854           by Mike Castle that "make -j" fails because the resulting parallel
5855           processes race to generate ncurses/names.c).
5856         + modify configure script so that --disable-overwrite option's action
5857           to add a symbolic link for libcurses applies to the static library as
5858           well as the shared library when both are configured (report by Felix
5859           Natter <f.natter@ndh.net>).
5860         + add ELKS terminfo entries (Federico Bianchi
5861           <bianchi@www.arte.unipi.it>)
5862         + add u6 (CSR) to Eterm (Michael Jennings).
5863
5864 20010512
5865         + modify test/ncurses.c to work with xterm-256color, which has fewer
5866           color pairs than colors*colors (report by David Ellement
5867           <ellement@sdd.hp.com>).
5868
5869 20010505
5870         + corrected screen.xterm-xfree86 entry.
5871         + update comment in Caps regarding IBM (AIX) function-key definitions.
5872
5873 20010421
5874         + modify c++/Makefile.in to link with libncurses++w.a when configured
5875           for wide-characters (patch by Sven Verdoolaege).
5876         + add check in _nc_trace_buf() to refrain from freeing a null pointer.
5877         + improve CF_PROG_INSTALL macro using CF_DIRNAME.
5878         + update config.guess, config.sub from autoconf 2.49e (alpha).
5879
5880 20010414
5881         + add secondary check in tic.c, similar_sgr() to see if the reason
5882           for mismatch was that the individual capabilities used a time-delay
5883           while sgr did not.  Used this to cleanup mismatches, e.g., in vt100,
5884           and remove time-delay from Apple_Terminal entries.
5885         + add Apple_Terminal terminfo entries (Benjamin C W Sittler
5886           <bsittler@iname.com>).
5887         + correct definitions of shifted editing keys for xterm-xfree86 -TD
5888         + fix a bug in test/bs.c from 20010407 (patch by Erik Sigra).
5889         + prevent relative_move() from doing an overwrite if it detects 8-bit
5890           characters when configured for UTF-8 (reported by Sven Verdoolaege
5891           <skimo@kotnet.org>).
5892
5893 20010407
5894         + add configure checks for strstream.h vscan function, and similar
5895           stdio-based function which may be used in C++ binding for gcc 3.0
5896           (reports by George Goffe, Lars Hecking, Mike Castle).
5897         + rewrite parts of configure.in which used changequote().  That feature
5898           is broken in the latest autoconf alphas (e.g., 2.49d).
5899         + add a missing pathname for ncurses_dll.h, needed when building in
5900           a directory outside the source tree (patch by Sven Verdoolaege
5901           <skimo@kotnet.org>).
5902         > fix 2 bugs in test/bs.c Erik Sigra <sigra@home.se>:
5903         + no ships were ever placed in the last row or in the last column.
5904           This made the game very easy to win, because you never had to waste
5905           any shots there, but the computer did.
5906         + the squares around a sunken ship that belonged to the player were not
5907           displayed as already hit by the computer, like it does for the
5908           player.
5909
5910 20010331
5911         + add some examples of customizing screen's terminfo:
5912           screen.xterm-xfree86, screen.xterm-r6, screen.teraterm -TD
5913         + modify screen's terminfo entry to match the khome/kend in screen
5914           3.09.08 (Debian bug report #92215).
5915         + correct a memory leak in forms library (report by Stefan Vogtner
5916           <stefan@vogtner.de>) (patch by Juergen Pfeifer).
5917
5918 20010324
5919         + change symbols used to guard against repeated includes to begin
5920           consistently with "NCURSES_" rather than a leading underscore.  There
5921           are other symbols defined in the header files which begin with a
5922           leading underscore, but they are part of the legacy interface.
5923         + reorder includes in c++ binding so that rcs identifiers can be
5924           compiled-in.
5925         + add .cc.ii rule to c++ makefile, to get preprocessor output for
5926           debugging.
5927         + correct configure script handling of @keyword@ substitutions when the
5928           --with-manpage-renames option is given (cf:  20000715, fixes Debian
5929           bug #89939).
5930         + report stack underflow/overflow in tparm() when tic -cv option is
5931           given.
5932         + remove spurious "%|" operator from xterm-xfree86 terminfo entry,
5933           (reported by Adam Costello <amc@cs.berkeley.edu>, Debian bug #89222).
5934
5935 20010310
5936         + cleanup of newdemo.c, fixing some ambiguous expressions noted by gcc
5937           2.95.2, and correcting some conflicting color pair initializations.
5938         + add missing copyright notice for cursesw.h
5939         + review, make minor fixes for use of '::' for referring to C-language
5940           interface from C++ binding.
5941         + modify configure check for g++ library slightly to accommodate
5942           nonstandard version number, e.g., <vendor>-2.7 (report by Ronald Ho
5943           <rho@mipos2.intel.com>).
5944         + add configure check for c++ <sstream> header, replace hardcoded
5945           ifdef.
5946         + workaround for pre-release of gcc 3.0 libstdc++, which has dropped
5947           vscan from strstreambuf to follow standard, use wrapper for C vscanf
5948           instead (report by George Goffe <grgoffe@excite.com> and Matt Taggart
5949           <taggart@carmen.fc.hp.com>, fixes Debian .
5950
5951 20010303
5952         + modify interface of _nc_get_token() to pass 'silent' parameter to it,
5953           to make quieter loading of /etc/termcap (patch by Todd C Miller).
5954         + correct a few typos in curs_slk.3x and curs_outopts.3x manpages
5955           (patch by Todd C Miller).
5956
5957 20010224
5958         + compiler-warning fixes (reported by Nelson Beebe).
5959
5960 20010210
5961         + modify screen terminfo entry to use new 3.9.8 feature allowing xterm
5962           mouse controls -TD
5963
5964 20010203
5965         + broaden patterns used to match OS/2 EMX in configure script to cover
5966           variant used in newer config.guess/config.sub
5967         + remove changequote() calls from configure script, since this feature
5968           is broken in the autoconf 2.49c alpha, maintainers decline to fix.
5969         + remove macro callPutChar() from tty_update.c, since this is no longer
5970           needed (reported by Philippe Blain).
5971         + add a null-pointer check in tic.c to handle the case when the input
5972           file is really empty.  Modify the next_char() function in comp_scan.c
5973           to allow arbitrarily long lines, and incidentally supply a newline to
5974           files that do not end in a newline.  These changes improve tic's
5975           recovery from attempts to read binary files, e.g., its output from
5976           the terminfo database (reported by Bernhard Rosenkraenzer).
5977
5978 20010127
5979         + revert change to c++/demo.cc from 20001209, which changed definition
5980           of main() apparently to accommodate cygwin linker, but broke the demo
5981           program.
5982         + workaround for broken egcs 2.91.66 which calls member functions
5983           (i.e., lines() and colors() of NCursesWindow before calling its
5984           constructor.  Add calls to initialize() in a few constructors which
5985           did not do this already.
5986         + use the GNAT preprocessor to make the necessary switch between TRACE
5987           and NO_TRACE configurations (patch by Juergen Pfeifer).
5988         > patches by Bernhard Rosenkraenzer:
5989         + modify kterm terminfo entry to use SCS sequence to support alternate
5990           character set (it does not work with SI/SO).
5991         + --with-ospeed=something didn't work.  configure.in checked for a
5992           $enableval where it should check for $withval.  Also,
5993           ncurses/llib-lncurses still had a hardcoded short.
5994
5995 20010114
5996         + correction to my merge of Tom Riddle's patch that broke tic in some
5997           conditions (reported by Enoch Wexler <enoch@wexler.co.il>) -TD
5998
5999 20010113
6000         + modify view.c to test halfdelay().  Like other tests, this recognizes
6001           the 's' and space commands for stopping/starting polled input, shows
6002           a freerunning clock in the header.  If given a parameter to 's', that
6003           makes view.c use halfdelay() with that parameter rather than
6004           nodelay().
6005         + fix to allow compile with the experimental configure option
6006           --disable-hashmap.
6007         + modify postprocess_termcap() to avoid overwriting key_backspace,
6008           key_left, key_down when processing a non-base entry (report/patch by
6009           Tom Riddle).
6010         + modify _nc_wrap_entry(), adding option to reallocate the string
6011           table, needed in _nc_merge_entry() when merging termcap entries.
6012           (adapted from report/patch by Tom Riddle <ftr@oracom.com>).
6013         + modify a few configure script macros to keep $CFLAGS used only for
6014           compiler options, preprocessor options in $CPPFLAGS.
6015
6016 20001230
6017         + correct marker positions in lrtest.c after receiving a sigwinch.
6018         + fix ifdef's in ncurses.c to build against pre-5.2 for testing.
6019         + fixes to tclock for resizing behavior, redundant computation (report
6020           and patch by A M Kuchling <akuchlin@mems-exchange.org>).
6021
6022 20001216
6023         + improved scoansi terminfo entry -TD
6024         + modify configure script and makefile in Ada95/src to compile a stub
6025           for the trace functions when ncurses does not provide those.
6026
6027 20001209
6028         + add ncurses_dll.h and related definitions to support generating DLL's
6029           with cygwin (adapted from a patch by Charles Wilson
6030           <cwilson@ece.gatech.edu>, changed NCURSES_EXPORT macro to make it
6031           work with 'indent') -TD
6032
6033 20001202
6034         + correct prototypes for some functions in curs_termcap.3x, matching
6035           termcap.h, which matches X/Open.
6036         > patch by Juergen Pfeifer:
6037         + a revised version of the Ada enhancements sent in by "H.
6038           Nanosecond", aka Eugene V Melaragno <aldomel@ix.netcom.com>.  This
6039           patch includes
6040           - small fixes to the existing ncurses binding
6041           - addition of some more low-level functions to the binding, including
6042             termcap and terminfo functions
6043           - An Ada implementation of the "ncurses" test application originally
6044             written in C.
6045
6046 20001125
6047         + modify logic in lib_setup.c to allow either lines or columns value
6048           from terminfo to be used if the screen size cannot be determined
6049           dynamically rather than requiring both (patch by Ehud Karni
6050           <ehud@unix.simonwiesel.co.il>).
6051         + add check in lib_tgoto.c's is_termcap() function to reject null or
6052           empty strings (reported by Valentin Nechayev <netch@netch.kiev.ua> to
6053           freebsd-bugs).
6054         + add definition from configure script that denotes the path-separator,
6055           which is normally a colon.  The path-separator is a semicolon on
6056           OS/2 EMX and similar systems which may use a colon within pathnames.
6057         + alter logic to set default for --disable-overwrite option to set it
6058           to 'yes' if the --prefix/$prefix value is not /usr/local, thereby
6059           accommodating the most common cause of problems: gcc's nonstandard
6060           search rules.  Other locations such as /usr/local/ncurses will
6061           default to overwriting (report by Lars Hecking <lhecking@nmrc.ie>).
6062
6063 20001118
6064         + modify default for --disable-overwrite configure option to disable
6065           if the --prefix or $prefix value is not /usr.
6066         + add cygwin to systems for which ncurses is installed by default into
6067           /usr rather than /usr/local.
6068
6069 20001111
6070         + minor optimization in comp_error.c and lib_termname.c, using
6071           strncat() to replace strncpy() (patch by Solar Designer).
6072         + add a use_terminfo_vars() check for $HOME/.termcap, and check for
6073           geteuid() to use_terminfo_vars() (patch by Solar Designer
6074           <solar@false.com>).
6075         + improved cygwin terminfo entry, based on patch by
6076           <ernie_boyd@yahoo.com>.
6077         + modify _nc_write_entry() to allow for the possibility that linking
6078           aliases on a filesystem that ignores case would not succeed because
6079           the source and destination differ only by case, e.g., NCR260VT300WPP0
6080           on cygwin (report by Neil Zanella).
6081         + fix a typo in the curs_deleteln.3x man page (patch by Bernhard
6082           Rosenkraenzer <bero@redhat.de>).
6083
6084 20001104
6085         + add configure option --with-ospeed to assist packagers in transition
6086           to 5.3 change to ospeed type.
6087         + add/use CharOf() macro to suppress sign-extension of char type on
6088           platforms where this is a problem in ctype macros, e.g., Solaris.
6089         + change trace output to binary format.
6090         + correct a missing quote adjustment in CF_PATH_SYNTAX autoconf
6091           macro, for OS/2 EMX configuration.
6092         + rearrange a few configure macros, moving preprocessor options to
6093           $CPPFLAGS (a now-obsolete version of autoconf did not consistently
6094           use $CPPFLAGS in both the compile and preprocessor checks).
6095         + add a check in relative_move() to guard against buffer overflow in
6096           the overwrite logic.
6097
6098 20001028
6099         + add message to configure script showing g++ version.
6100         + resync config.guess, config.sub
6101         + modify lib_delwin.c, making it return ERR if the window did not exist
6102           (suggested by Neil Zanella).
6103         + add cases for FreeBSD 3.1 to tdlint and makellib scripts, used this
6104           to test/review ncurses library.  (Would use lclint, but it doesn't
6105           work).
6106         + reorganized knight.c to avoid forward references.  Correct screen
6107           updates when backtracking, especially to the first cell.  Add F/B/a
6108           commands.
6109
6110 20001021 5.2 release for upload to ftp.gnu.org
6111         + update generated html files from manpages.
6112         + modify dist.mk to use edit_man.sh to substitute autoconf'd variables
6113           in html manpages.
6114         + fix an uninitialized pointer in read_termcap.c (report by Todd C
6115           Miller, from report/patch by Philip Guenther <guenther@gac.edu>).
6116         + correct help-message and array limit in knight.c (patch by Brian
6117           Raiter <breadbox@muppetlabs.com>).
6118         > patch by Juergen Pfeifer:
6119         + fix to avoid warning by GNAT-3.13p about use of inconsistent casing
6120           for some identifiers defined in the standard package.
6121         + cosmetic change to forms/fty_enum.c
6122
6123 20001014
6124         + correct an off-by-one position in test/railroad.c which could cause
6125           wrapping at the right margin.
6126         + test/repair some issues with libtool configuration.  Make
6127           --disable-echo force libtool --silent.  (Libtool does not work for
6128           OS/2 EMX, works partly for SCO - libtool is still very specific to
6129           gcc).
6130         + change default of --with-manpage-tbl to "no", since for most of the
6131           platforms which do have tbl installed, the system "man" program
6132           understands how to run tbl automatically.
6133         + minor improvement to force_bar() in comp_parse.c (Bernhard
6134           Rosenkraenzer <bero@redhat.de>).
6135         + modify lib_tparm.c to use get_space() before writing terminating
6136           null character, both for consistency as well as to ensure that if
6137           save_char() was called immediately before, that the allocated memory
6138           is enough (patch by Sergei Ivanov).
6139         + add note about termcap ML capability which is duplicated between two
6140           different capabilities:  smgl and smglr (reported by Sergei Ivanov
6141           <svivanov@pdmi.ras.ru>).
6142         + correct parameter counts in include/Caps for dclk as well as some
6143           printer-specific capabilities: csnm, defc, scs, scsd, smgtp, smglp.
6144         > patch by Johnny C Lam <lamj@stat.cmu.edu>:
6145         + add support for building with libtool (apparently version 1.3.5,
6146           since old versions do not handle -L../lib), using new configure
6147           option --with-libtool.
6148         + add configure option --with-manpage-tbl, which causes the manpages to
6149           be preprocessed by tbl(1) prior to installation,
6150         + add configure option --without-curses-h, which causes the
6151           installation process to install curses.h as ncurses.h and make
6152           appropriate changes to headers and manpages.
6153
6154 20001009
6155         + correct order of options/parameters in run_tic.in invocation of tic,
6156           which did not work with standard getopt() (reported by Ethan
6157           Butterfield <primus@veris.org>).
6158         + correct logic for 'reverse' variable in lib_vidattr.c, which was
6159           setting it true without checking if newmode had A_REVERSE set, e.g.,
6160           using $TERM=ansi on OS/2 EMX (see 20000917).
6161         > patch by Todd C Miller:
6162         + add a few missing use_terminfo_vars() and fixes up _nc_tgetent().
6163           Previously, _nc_cgetset() would still get called on cp so the
6164           simplest thing is to set cp to NULL if !use_terminfo_vars().
6165         + added checks for an empty $HOME environment variable.
6166         > patches for OS/2 EMX (Ilya Zakharevich):
6167         + modify convert_configure.pl to support INSTALL.  Change compiler
6168           options in that script to use multithreading, needed for the mouse.
6169         + modify OS/2 mouse support, retrying as a 2-button mouse if code fails
6170           to set up a 3-button mouse.
6171         + improve code for OS/2 mouse support, using _nc_timed_wait() to
6172           replace select() call.
6173
6174 20001007
6175         + change type of ospeed variable back to short to match its use in
6176           legacy applications (reported by Andrey A Chernov).
6177         + add case to configure script for --enable-rpath on IRIX (patch by
6178           Albert Chin-A-Young).
6179         + minor fix to position_check() function, to ensure it gets the whole
6180           cursor report before decoding.
6181         + add configure option --disable-assumed-color, to allow pre-5.1
6182           convention of default colors used for color-pair 0 to be configured
6183           (see assume_default_colors()).
6184         + rename configure option --enable-hashmap --disable-hashmap, and
6185           reorder the configure options, splitting the experimental and
6186           development
6187         + add configure option --disable-root-environ, which tells ncurses to
6188           disregard $TERMINFO and similar environment variables if the current
6189           user is root, or running setuid/setgid (based on discussion with
6190           several people).
6191         + modified misc/run_tic.in to use tic -o, to eliminate dependency on
6192           $TERMINFO variable for installs.
6193         + add table entry for plab_norm to tput, so it passes in strings
6194           for that capability.
6195         + modify parse_format() in lib_tparm.c to ignore precision if it is
6196           longer than 10000 (report by Jouko Pynnonen).
6197         + rewrote limit checks in lib_mvcur.c using new functions
6198           _nc_safe_strcat(), etc.  Made other related changes to check lengths
6199           used for strcat/strcpy (report by Jouko Pynnonen
6200           <jouko@solutions.fi>).
6201
6202 20000930
6203         + modify several descriptions, including those for setaf, setab, in
6204           include/Caps to indicate that the entries are parameterized.  This
6205           information is used to tell which strings are translated when
6206           converting to termcap.  Fixes a problem where the generated termcap
6207           would contain a spurious "%p1" for the terminfo "%p1%d".
6208         + modify ld -rpath options (e.g., Linux, and Solaris) to use an
6209           absolute pathname for the build tree's lib directory (prompted by
6210           discussion with Albert Chin-A-Young).
6211         + modify "make install.man" and "make uninstall.man" to include tack's
6212           man-page.
6213         + various fixes for install scripts used to support configure --srcdir
6214           and --with-install-prefix (reported by Matthew Clarke
6215           <Matthew_Clarke@mindlink.bc.ca>).
6216         + make configure script checks on variables $GCC and $GXX consistently
6217           compare against 'yes' rather than test if they are nonnull, since
6218           either may be set to the corresponding name of the C or C++ compiler
6219           (report/patch by Albert Chin-A-Young).
6220
6221 20000923
6222         + modify rs2 capability in xterm-r6 and similar where cursor
6223           save/restore bracketed the sequence for resetting video attributes.
6224           The cursor restore would undo that (report by John Hawkinson
6225           <jhawk@MIT.EDU> (see NetBSD misc/11052)).
6226         + using parameter check added to tic, corrected 27 typos in
6227           terminfo.src -TD
6228         + modify tic to verify that its inputs are really files, in case
6229           someone tries to read a directory (or /dev/zero).
6230         + add a check for empty buffers returned by fgets() in comp_scan.c
6231           next_char() function, in case tic is run on a non-text file (fixes
6232           a core dump reported by Aaron Campbell <aaron@cs.dal.ca>).
6233         + add to railroad.c some code exercising tgoto(), providing an
6234           alternate form of display if the terminal supports cursor addressing.
6235         + split-out tgoto() again, this time into new file lib_tgoto.c, and
6236           implement a conventional BSD-style tgoto() which is used if the
6237           capability string does not contain terminfo-style padding or
6238           parameters (requested by Andrey A Chernov).
6239         + add check to tic which reports capabilities that do not reference
6240           the expected number of parameters.
6241         + add error checking to infocmp's -v and -m options to ensure that
6242           the option value is indeed a number.
6243         + some cleanup of logic in _nc_signal_handler() to verify if SIGWINCH
6244           handler is setup.  Separated the old/new sigaction data for SIGTSTP
6245           from the other signals.
6246
6247 20000917
6248         + add S0, E0 extensions to screen's terminfo entry, which is another
6249           way to solve the misconfiguration issue -TD
6250         + completed special case for tgoto from 20000916
6251
6252 20000916
6253         + update xterm terminfo entries to match XFree86 xterm patch #146 -TD
6254         + add Matrix Orbital terminfo entries (from Eric Z Ayers
6255           <eric@ale.org>).
6256         + add special case to lib_tparm.c to allow 'screen' program to use a
6257           termcap-style parameter "%." to tgoto() for switching character sets.
6258         + use LN_S substitution in run_tic.in, to work on OS/2 EMX which has
6259           no symbolic links.
6260         + updated notes in README.emx regarding autoconf patches.
6261         + replace a lookup table in lib_vidattr.c used to decode no_color_video
6262           with a logic expression (suggested by Philippe Blain).
6263         + add a/A toggle to ncurses.c 'b' test, which clears/sets alternate
6264           character set attribute from the displayed text.
6265         + correct inequality in parameter analysis of rewritten lib_tparm.c
6266           which had the effect of ignoring p9 in set_attributes (sgr), breaking
6267           alternate character set (reported by Piotr Majka <charvel@link.pl>).
6268         + correct ifdef'ing for GCC_PRINTF, GCC_SCANF which would not compile
6269           with Sun WorkShop compilers since these tokens were empty (cf:
6270           20000902, reported by Albert Chin-A-Young).
6271
6272 20000909
6273         + correct an uninitialized parameter to open_tempfile() in tic.c which
6274           made "tic -I" give an ambiguous error message about tmpnam.
6275         + add special case in lib_vidattr.c to reset underline and standout for
6276           devices that have no sgr0 defined (patch by Don Lewis
6277           <Don.Lewis@tsc.tdk.com>).  Note that this will not work for bold
6278           mode, since there is no exit-bold-mode capability.
6279         + improved patch for Make_Enum_Type (patch by Juergen Pfeifer).
6280         + modify tparm to disallow arithmetic on strings, analyze the varargs
6281           list to read strings as strings and numbers as numbers.
6282         + modify tparm's internal function spop() to treat a null pointer as
6283           an empty string.
6284         + modify tput program so it can be renamed or invoked via a link as
6285           'reset' or 'init', producing the same effect as 'tput reset' or 'tput
6286           init'.
6287         + add private entrypoint _nc_basename(), use to consolidate related
6288           code in progs, as well as accommodating OS/2 EMX pathnames.
6289         + remove NCURSES_CONST line from edit_cfg.sh to compensate for its
6290           removal (except via AC_SUBST) from configure.in, making
6291           --enable-const work again (reported by Juergen Pfeifer).
6292         + regen'd configure to pick up "hpux*" change from 20000902.
6293
6294 20000902
6295         + modify tset.c to check for transformed "reset" program name, if any.
6296         + add a check for null pointer in Make_Enum_Type() (reported by Steven
6297           W Orr <steveo@world.std.com>).
6298         + change functions _nc_parse_entry() and postprocess_termcap() to avoid
6299           using strtok(), because it is non-reentrant (reported by Andrey A
6300           Chernov <ache@nagual.pp.ru>).
6301         + remove "hpux10.*" case from CF_SHARED_OPTS configure script macro.
6302           This differed from the "hpux*" case by using reversed symbolic
6303           links, which made the 5.1 version not match the configuration of
6304           5.0 shared libraries (reported by Albert Chin-A-Young).
6305         + correct a dependency in Ada95/src/Makefile.in which prevented
6306           building with configure --srcdir (patch by H Nanosecond
6307           <aldomel@ix.netcom.com>).
6308         + modify ifdef's in curses.h.in to avoid warning if GCC_PRINTF or
6309           GCC_SCANF was not previously defined (reported by Pavel Roskin
6310           <proski@gnu.org>).
6311         + add MKncurses_def.sh to generate fallback definitions for
6312           ncurses_cfg.h, to quiet gcc -Wundef warnings, modified ifdef's in
6313           code to consistently use "#if" rather than "#ifdef".
6314
6315 20000826
6316         + add QNX qansi entries to terminfo -TD
6317         + add os2 entry to misc/emx.src (<jmcoopr@webmail.bmi.net>).
6318         + add configure option --with-database to allow specifying a different
6319           terminfo source-file to install.  On OS/2 EMX, this defaults to
6320           misc/emx.src
6321         + change misc/run_tic.sh to derive it from misc/run_tic.in, to simplify
6322           setting .exe extension on OS/2 EMX.
6323         + add .exe extension in Ada95/gen/Makefile.in,
6324           Ada95/samples/Makefile.in, for OS/2 EMX (reported by
6325           <jmcoopr@webmail.bmi.net>).
6326         + add configure check for filesystems (such as OS/2 EMX) which do not
6327           distinguish between upper/lowercase filenames, use this to fix tags
6328           rules in makefiles.
6329         + initialize fds[] array to 0's in _nc_timed_wait(); apparently poll()
6330           only sets the revents members of that array when there is activity
6331           corresponding to the related file (report by Glenn Cooper
6332           <gcooper@qantas.com.au>, using Purify on Solaris 5.6).
6333         + change configure script to use AC_CANONICAL_SYSTEM rather than
6334           AC_CANONICAL_HOST, which means that configure --target will set
6335           a default program-prefix.
6336         + add note on cross-compiling to INSTALL (which does not rely on the
6337           AC_CANONICAL_* macros).
6338
6339 20000819
6340         + add cases for EMX OS/2 to config.guess, config.sub
6341         + new version of config.guess, config.sub from lynx 2.8.4dev.7
6342         + add definitions via transform.h to allow tic and tput to check for
6343           the transformed aliases rather than the original infotocap, etc.
6344         + simplify transform-expressions in progs/Makefile.in, make the
6345           uninstall rule work for transformed program names.
6346         + change symbol used by --install-prefix configure option from
6347           INSTALL_PREFIX to DESTDIR (the latter has become common usage
6348           although the name is misleading).
6349         + modify programs to use curses_version() string to report the version
6350           of ncurses with which they are compiled rather than the
6351           NCURSES_VERSION string.  The function returns the patch level in
6352           addition to the major and minor version numbers.
6353
6354 20000812
6355         + modify CF_MAN_PAGES configure macro to make transformed program names
6356           a parameter to that macro rather than embedding them in the macro.
6357         + newer config.guess, config.sub (reference version used in lynx
6358           2.8.4dev.7).
6359         + add configure option --with-default-terminfo-dir=DIR to allow
6360           specifying the default terminfo database directory (request by Albert
6361           Chin-A-Young).
6362         + minor updates for terminfo.src from FreeBSD termcap change-history.
6363         + correct notes in README and INSTALL regarding documentation files
6364           that were moved from misc directory to doc (report by Rich Kulawiec
6365           <rsk@gsp.org>).
6366         + change most remaining unquoted parameters of 'test' in configure
6367           script to use quotes, for instance fixing a problem in the
6368           --disable-database option (reported by Christian Mondrup
6369           <scancm@biobase.dk>).
6370         + minor adjustments to work around some of the incompatibilities/bugs
6371           in autoconf 2.29a alpha.
6372         + add -I/usr/local/include when --with-ncurses option is used in
6373           test/configure script.
6374         + correct logic in adjust_cancels(), which did not check both
6375           alternatives when reclassifying an extended name between boolean,
6376           number and string, causing an infinite loop in tic.
6377
6378 20000730
6379         + correct a missing backslash in curses.priv.h
6380
6381 20000729
6382         + change handling of non_dest_scroll_region in tty_update.c to clear
6383           text after it is shifted in rather than before shifting out.  Also
6384           correct row computation (reported by Ruediger Kuhlmann
6385           <uck4@rz.uni-karlsruhe.de>).
6386         + add/use new trace function to display chtype values from winch() and
6387           getbkgd().
6388         + add trace mask TRACE_ATTRS, alter several existing _tracef calls that
6389           trace attribute changes under TRACE_CALLS to use this.
6390         + modify MKlib_gen.sh so that functions returning chtype will call
6391           returnChar().
6392         + add returnChar() trace, for functions returning chtype.
6393         + change indent.pro to line up parenthesis.
6394
6395 20000722
6396         + fix a heap problem with the c++ binding (report by
6397           <alexander_liberson@ninewest.com>, patch by Juergen Pfeifer).
6398         + minor adjustment to ClrToEOL() to handle an out-of-bounds parameter.
6399         + modify the check for big-core to force a couple of memory accesses,
6400           which may work as needed for older/less-capable machines (if not,
6401           there's still the explicit configure option).
6402         > fixes based on diff's for Amiga and BeOS found at
6403           http://www.mathematik.uni-karlsruhe.de/~kuhlmann/cross/ncurses/
6404         + alter definition of NCURSES_CONST to make it non-empty.
6405         + add amiga-vnc terminfo entry.
6406         + redefine 'TEXT' in menu.h for AMIGA, since it is reported to have
6407           an (unspecified) symbol conflict.
6408         + replaced case-statement in _nc_tracebits() for CSIZE with a table to
6409           simplify working around implementations that define random
6410           combinations of the related macros to zero.
6411         + modify configure test for tcgetattr() to allow for old
6412           implementations, e.g., on BeOS, which only defined it as a macro.
6413         > patches by Bruno Haible:
6414         + when checking LC_ALL/LC_CTYPE/LANG environment variables for UTF-8
6415           locale, ignore those which are set to an empty value, as per SUSV2.
6416         + encode 0xFFFD in UTF-8 with 3 bytes, not 2.
6417         + modify _nc_utf8_outch() to avoid sign-extension when checking for
6418           out-of-range value.
6419
6420 20000715
6421         + correct manlinks.sed script to avoid using ERE "\+", which is not
6422           understood by older versions of sed (patch by Albert Chin-A-Young).
6423         + implement configure script options that transform installed program
6424           names, e.g., --program-prefix, including the manpage names and cross
6425           references (patch by Albert Chin-A-Young <china@thewrittenword.com>).
6426         + correct several mismatches between manpage filename and ".TH"
6427           directives, renaming dft_fgbg.3x to default_colors.3x and
6428           menu_attribs.3x to menu_attributes.3x (report by Todd C Miller).
6429         + correct missing includes for <string.h> in several places, including
6430           the C++ binding.  This is not noted by gcc unless we use the
6431           -fno-builtin option (reported by Igor Schein <igor@txc.com>).
6432         + modified progs/tset.c and tack/sysdep.c to build with sgttyb
6433           interface if neither termio or termios is available.  Tested this
6434           with FreeBSD 2.1.5 (which does have termios - but the sgttyb does
6435           work).
6436
6437 20000708 5.1 release for upload to ftp.gnu.org
6438         + document configure options in INSTALL.
6439         + add man-page for ncurses trace functions.
6440         + correct return value shown in curs_touch.3x for is_linetouched() and
6441           is_wintouched(), in curs_initscr.3x for isendwin(), and in
6442           curs_termattr.3x for has_ic() and has_il().
6443         + add prototypes for touchline() and touchwin(), adding them to the
6444           list of generated functions.
6445         + modify fifo_push() to put ERR into the fifo just like other values to
6446           return from wgetch().  It was returning without doing that, making
6447           end-of-file condition incorrectly return a 0 (reported by Todd C
6448           Miller).
6449         + uncomment CC_SHARED_OPTS for progs and tack (see 971115), since they
6450           are needed for SCO OpenServer.
6451         + move _nc_disable_period from free_ttype.c to comp_scan.c to appease
6452           dynamic loaders on SCO and IRIX64.
6453         + add "-a" option to test/ncurses.c to invoke assume_default_colors()
6454           for testing.
6455         + correct assignment in assume_default_colors() which tells ncurses
6456           whether to use default colors, or the assumed ones (reported by Gary
6457           Funck <gary@Intrepid.Com>).
6458         + review/correct logic in mk-1st.awk for making symbolic links for
6459           shared libraries, in particular for FreeBSD, etc.
6460         + regenerate misc/*.def files for OS/2 EMX dll's.
6461         + correct quoting of values for CC_SHARED_OPTS in aclocal.m4 for
6462           cases openbsd2*, openbsd*, freebsd* and netbsd* (patch by Peter
6463           Wemm) (err in 20000610).
6464         + minor updates to release notes, as well as adding/updating URLs for
6465           examples cited in announce.html
6466         > several fixes from Philippe Blain <philippe.blain2@freesbee.fr>:
6467         + correct placement of ifdef for NCURSES_XNAMES in function
6468           _nc_free_termtype(), fixes a memory leak.
6469         + add a call to _nc_synchook() to the end of function whline() like
6470           that in wvline() (difference was in 1.9.4).
6471         + make ClearScreen() a little faster by moving two instances of
6472           UpdateAttr() out of for-loops.
6473         + simplify ClrBottom() by eliminating the tstLine data, using for-loops
6474           (cf: 960428).
6475
6476 20000701 pre-release
6477         + change minor version to 1, i.e., ncurses 5.1
6478         + add experimental configure option --enable-colorfgbg to check for
6479           $COLORTERM variable as set by rxvt/aterm/Eterm.
6480         + add Eterm terminfo entry (Michael Jennings <mej@valinux.com>).
6481         + modify manlinks.sed to pick aliases from the SYNOPSIS section, and
6482           several manpages so manlinks.sed can find aliases for creating
6483           symbolic links.
6484         + add explanation to run_tic.sh regarding extended terminal
6485           capabilities.
6486         + change message format for edit_cfg.sh, since some people interpret
6487           it as a warning.
6488         + correct unescaped '$' in sysv5uw7*|unix_sv* rule for CF_SHARED_OPTS
6489           configure macro (report by Thanh Ma <Thanh.Ma@casi-rusco.com>).
6490         + correct logic in lib_twait.c as used by lib_mouse.c for GPM mouse
6491           support when poll() is used rather than select() (prompted by
6492           discussion with David Allen <DAllen24@aol.com>).
6493
6494 20000624 pre-release
6495         + modify TransformLine() to check for cells with different color pairs
6496           that happen to render the same display colors.
6497         + apply $NCURSES_NO_PADDING to cost-computation in mvcur().
6498         + improve cost computation in PutRange() by accounting for the use
6499           of parm_right_cursor in mvcur().
6500         + correct cost computation in EmitRange(), which was not using the
6501           normalized value for cursor_address.
6502         + newer config.guess, config.sub (reference version used in TIN 1.5.6).
6503
6504 20000617
6505         + update config.guess, config.sub (reference version used in PCRE 3.2).
6506         + resync changes to gnathtml against version 1.22, regenerated html
6507           files under doc/html/ada using this (1.22.1.1).
6508         + regenerated html files under doc/html/man after correcting top and
6509           bottom margin options for man2html in dist.mk
6510         + minor fixes to test programs ncurses 'i' and testcurs program to make
6511           the subwindow's background color cover the subwindow.
6512         + modify configure script so AC_MSG_ERROR is temporarily defined to a
6513           warning in AC_PROG_CXX to make it recover from a missing C++ compiler
6514           without requiring user to add --without-cxx option (adapted from
6515           comment by Akim Demaille <akim@epita.fr> to autoconf mailing list).
6516         + modify headers.sh to avoid creating temporary files in the build
6517           directory when installing headers (reported by Sergei Pokrovsky
6518           <pok@nbsp.nsk.su>)
6519
6520 20000610
6521         + regenerated the html files under doc/html/ada/files and
6522           doc/html/ada/funcs with a slightly-improved gnathtml.
6523         + add kmous capability to linux terminfo entry to allow it to use
6524           xterm-style events provided by gpm patch by Joerg Schoen.
6525         + make the configure macro CF_SHARED_OPTS a little smarter by testing
6526           if -fPIC is supported by gcc rather than -fpic.  The former option
6527           allows larger symbol tables.
6528         + update config.guess and config.sub (patches by
6529           Kevin Buettner <kev@primenet.com> (for elf64_ia64),
6530           Bernd Kuemmerlen <bkuemmer@mevis.de> (for MacOS X)).
6531         + add warning for 'tic -cv' about use of '^?' in terminfo source, which
6532           is an extension.
6533
6534 20000527
6535         + modify echo() behavior of getch() to match Solaris curses for
6536           carriage return and backspace (reported by Neil Zanella).
6537         + change _nc_flush() to a function.
6538         + modify delscreen() to check if the output stream has been closed, and
6539           if so, free the buffer allocated for setbuf (this provides an
6540           ncurses-specific way to avoid a memory leak when repeatedly calling
6541           newterm reported by Chipp C <at_1@zdnetonebox.com>).
6542         + correct typo in curs_getch.3x manpage regarding noecho (reported by
6543           David Malone <dwmalone@maths.tcd.ie>).
6544         + add a "make libs" rule.
6545         + make the Ada95 interface build with configure --enable-widec.
6546         + if the configure --enable-widec option is given, append 'w' to names
6547           of the generated libraries (e.g., libncursesw.so) to avoid conflict
6548           with existing ncurses libraries.
6549
6550 20000520
6551         + modify view.c to make a rudimentary viewer of UTF-8 text if ncurses
6552           is configured with the experimental wide-character support.
6553         + add a simple UTF-8 output driver to the experimental wide-character
6554           support.  If any of the environment variables LC_ALL, LC_CTYPE or
6555           LANG contain the string "UTF-8", this driver will be used to
6556           translate the output to UTF-8.  This works with XFree86 xterm.
6557         + modify configure script to allow building shared libraries on BeOS
6558           (from a patch by Valeriy E Ushakov).
6559         + modify lib_addch.c to allow repeated update to the lower-right
6560           corner, rather than displaying only the first character written until
6561           the cursor is moved.  Recent versions of SVr4 curses can update the
6562           lower-right corner, and behave this way (reported by Neil Zanella).
6563         + add a limit-check in _nc_do_color(), to avoid using invalid color
6564           pair value (report by Brendan O'Dea <bod@compusol.com.au>).
6565
6566 20000513
6567         + the tack program knows how to use smcup and rmcup but the "show caps
6568           that can be tested" feature did not reflect this knowledge.  Correct
6569           the display in the menu tack/test/edit/c (patch by Daniel Weaver).
6570         + xterm-16color does allow bold+colors, removed ncv#32 from that
6571           terminfo entry.
6572
6573 20000506
6574         + correct assignment to SP->_has_sgr_39_49 in lib_dft_fgbg.c, which
6575           broke check for screen's AX capability (reported by Valeriy E Ushakov
6576           <uwe@ptc.spbu.ru>).
6577         + change man2html rule in dist.mk to workaround bug in some
6578           man-programs that ignores locale when rendering hyphenation.
6579         + change web- and ftp-site to dickey.his.com
6580
6581 20000429
6582         + move _nc_curr_token from parse_entry.c to comp_scan.c, to work around
6583           problem linking tack on MacOS X DP3.
6584         + include <sys/time.h> in lib_napms.c to compile on MacOS X DP3
6585           (reported by Gerben Wierda <wierda@holmes.nl>).
6586         + modify lib_vidattr.c to check for ncv fixes when pair-0 is not
6587           default colors.
6588         + add -d option to ncurses.c, to turn on default-colors for testing.
6589         + add a check to _nc_makenew() to ensure that newwin() and newpad()
6590           calls do not silently fail by passing too-large limits.
6591         + add symbol NCURSES_SIZE_T to use rather than explicit 'short' for
6592           internal window and pad sizes.  Note that since this is visible in
6593           the WINDOW struct, it would be an ABI change to make this an 'int'
6594           (prompted by a question by Bastian Trompetter
6595           <btrompetter@firemail.de>, who attempted to create a 96000-line pad).
6596
6597 20000422
6598         + add mgterm terminfo entry from NetBSD, minor adjustments to sun-ss5,
6599           aixterm entries -TD
6600         + modify tack/ansi.c to make it more tolerant of bad ANSI replies.  An
6601           example of an illegal ANSI resonse can be found using Microsoft's
6602           Telnet client.  A correct display can be found using a VT-4xx
6603           terminal or XFree86 xterm with:
6604                 XTerm*VT100*decTerminalID:  450
6605           (patch by Daniel Weaver).
6606         + modify gdc.c to recognize 'q' for quit, 's' for single-step and ' '
6607           for resume.  Add '-n' option to force gdc's standard input to
6608           /dev/null, to both illustrate the use of newterm() for specifying
6609           alternate inputs as well as for testing signal handling.
6610         + minor fix for configure option --with-manpage-symlinks, for target
6611           directories that contain a period ('.') (reported by Larry Virden).
6612
6613 20000415
6614         + minor additions to beterm entry (feedback from Rico Tudor) -TD
6615         + corrections/updates for some IBM terminfo entries -TD
6616         + modify _nc_screen_wrap() so that when exiting curses mode with
6617           non-default colors, the last line on the screen will be cleared to
6618           the screen's default colors (request by Alexander V Lukyanov).
6619         + modify ncurses.c 'r' example to set nonl(), allowing control/M to be
6620           read for demonstrating the REQ_NEW_LINE operation (prompted by a
6621           question by Tony L Keith <tlkeith@keithconsulting.com>).
6622         + modify ncurses.c 'r' example of field_info() to work on Solaris 2.7,
6623           documented extension of ncurses which allows a zero pointer.
6624         + modify fmt_complex() to avoid buffer overflow in case of excess
6625           recursion, and to recognize "%e%?" as a synonym for else-if, which
6626           means that it will not recur for that special case.
6627         + add logic to support $TERMCAP variable in case the USE_GETCAP symbol
6628           is defined (patch by Todd C Miller).
6629         + modify one of the m4 files used to generate the Ada95 sources,
6630           to avoid using the token "symbols" (patch by Juergen Pfeifer).
6631
6632 20000408
6633         + add terminfo entries bsdos-pc-m, bsdos-pc-mono (Jeffrey C Honig)
6634         + correct spelling error in terminfo entry name:  bq300-rv was given as
6635           bg300-rv in esr's version.
6636         + modify redrawwin() macro so its parameter is fully parenthesized
6637           (fixes Debian bug report #61088).
6638         + correct formatting error in dump_entry() which set incorrect column
6639           value when no newline trimming was needed at the end of an entry,
6640           before appending "use=" clauses (cf: 960406).
6641
6642 20000401
6643         + add configure option --with-manpage-symlinks
6644         + change unctrl() to render C1 characters (128-159) as ~@, ~A, etc.
6645         + change makefiles so trace() function is provided only if TRACE is
6646           defined, e.g., in the debug library.  Modify related calls to
6647           _tracechar() to use unctrl() instead.
6648
6649 20000325
6650         + add screen's AX capability (for ECMA SGR 39 and 49) to applicable
6651           terminfo entries, use presence of this as a check for a small
6652           improvement in setting default colors.
6653         + improve logic in _nc_do_color() implementing assume_default_colors()
6654           by passing in previous color pair info to eliminate redundant call to
6655           set_original_colors().  (Part of this is from a patch by Alexander
6656           V Lukyanov).
6657         + modify warning in _nc_trans_string() about a possibly too-long string
6658           to do this once only rather than for each character past the
6659           threshold (600).  Change interface of _nc_trans_string() to allow
6660           check for buffer overflow.
6661         + correct use of memset in _nc_read_entry_source() to initialize ENTRY
6662           struct each time before reading new data into it, rather than once
6663           per loop (cf:  990301).  This affects multi-entry in-core operations
6664           such as "infocmp -Fa".
6665
6666 20000319
6667         + remove a spurious pointer increment in _nc_infotocap() changes from
6668           20000311.  Add check for '.' in format of number, since that also
6669           is not permitted in termcap.
6670         + correct typo in rxvt-basic terminfo from temporary change made while
6671           integrating 20000318.
6672
6673 20000318
6674         + revert part of the vt220 change (request by Todd C Miller).
6675         + add ansi-* terminfo entries from ESR's version.
6676         + add -a option to tic and infocmp, which retains commented-out
6677           capabilities during source translation/comparison, e.g., captoinfo
6678           and infotocap.
6679         + modify cardfile.c to display an empty card if no input data file is
6680           found, fixes a core dump in that case (reported by Bruno Haible).
6681         + correct bracketing in CF_MATH_LIB configure macro, which gave wrong
6682           result for OS/2 EMX.
6683         + supply required parameter for _nc_resolve_uses() call in
6684           read_termcap.c, overlooked in 20000311 (reported by Todd C Miller).
6685         > patches by Bruno Haible <haible@ilog.fr>:
6686         + fix a compiler warning in fty_enum.c
6687         + correct LIB_PREFIX expression for DEPS_CURSES in progs, tack
6688           makefiles, which resulted in redundant linking (cf: 20000122).
6689
6690 20000311
6691         + make ifdef's for BROKEN_LINKER consistent (patch by Todd C Miller).
6692         + improved tack/README (patch by Daniel Weaver).
6693         + modify tput.c to ensure that unspecified parameters are passed to
6694           tparm() as 0's.
6695         + add a few checks in infocmp to guard against buffer overflow when
6696           displaying string capabilities.
6697         + add check for zero-uses in infocmp's file_comparison() function
6698           before calling _nc_align_termtype().  Otherwise one parameter is
6699           indexed past the end of the uses-array.
6700         + add an option -q to infocmp to specify the less verbose output,
6701           keeping the existing format as the default, though not retaining the
6702           previous behavior that made the -F option compare each entry to
6703           itself.
6704         + adapted patch by ESR to make infocmp -F less verbose -TD
6705           (the submitted patch was unusable because it did not compile
6706           properly)
6707           + modify write_entry.c to ensure that absent or cancelled booleans
6708             are written as FALSE, for consistency with infocmp which now
6709             assumes this.  Note that for the small-core configuration, tic
6710             may not produce the same result as before.
6711           + change some private library interfaces used by infocmp, e.g.,
6712             _nc_resolve_uses().
6713           + add a check in _nc_infotocap() to ensure that cm-style capabilities
6714             accept only %d codes when converting the format from terminfo to
6715             termcap.
6716           + modify ENTRY struct to separate the data in 'parent' into the name
6717             and link values (the original idea to merge both into 'parent' was
6718             not good).
6719           + discard repair_acsc(tterm);
6720         > patch by Juergen Pfeifer:
6721         + drop support for gnat 3.10
6722         + move generated documentation and html files under ./doc directory,
6723           adding makefile rules for this to dist.mk
6724
6725 20000304
6726         + correct conflicting use of tparm() in 20000226 change to tic, which
6727           made it check only one entry at a time.
6728         + fix errors in ncurses-intro.html and hackguide.html shown by Dave
6729           Raggett's tidy.
6730         + make the example in ncurses-intro.html do something plausible, and
6731           corrected misleading comment (reported by Neil Zanella).
6732         + modify pnoutrefresh() to set newscr->_leaveok as wnoutrefresh() does,
6733           to fix a case where the cursor position was not updated as in
6734           Solaris  (patch by David Mosberger <davidm@hpl.hp.com>).
6735         + add a limit-check for wresize() to ensure that a subwindow does not
6736           address out of bounds.
6737         + correct offsets used for subwindows in wresize() (patch by Michael
6738           Andres <ma@suse.de>).
6739         + regenerate html'ized manual pages with man2html 3.0.1 (patch by
6740           Juergen Pfeifer).  This generated a file with a space in its name,
6741           which I removed.
6742         + fix a few spelling errors in tack.
6743         + modify tack/Makefile.in to match linker options of progs/Makefile.in;
6744           otherwise it does not build properly for older HPUX shared library
6745           configurations.
6746         + add several terminfo entries from esr's "11.0".
6747
6748 20000226
6749         + make 'tput flash' work properly for xterm by flushing output in
6750           delay_output() when using napms(), and modifying xterm's terminfo to
6751           specify no padding character.  Otherwise, xterm's reported baud rate
6752           can mislead ncurses into producing too few padding characters
6753           (Debian #58530).
6754         + add a check to tic for consistency between sgr and the separate
6755           capabilities such as smso, use this to check/correct several
6756           terminfo entries (Debian #58530).
6757         + add a check to tic if cvvis is the same as cnorm, adjusted several
6758           terminfo entries to remove the conflict (Debian #58530).
6759         + correct prototype shown in attr_set()/wattr_set() manpages (fixes
6760           Debian #53962).
6761         + minor clarification for curs_set() and leaveok() manpages.
6762         + use mkstemp() for creating temporary file for tic's processing of
6763           $TERMCAP contents (fixes Debian #56465).
6764         + correct two errors from integrating Alexander's changes:  did not
6765           handle the non-bce case properly in can_erase_with() (noted by
6766           Alexander), and left fg/bg uninitialized in the pair-zero case of
6767           _nc_do_color() (reported by Dr Werner Fink <werner@suse.de> and
6768           Ismael Cordeiro <ismael@cordeiro.com>).
6769
6770 20000219
6771         + store default-color code consistently as C_MASK, even if given as
6772           -1 for convenience (adapted from patches by Alexander V Lukyanov).
6773         > patches by Alexander V Lukyanov:
6774         + change can_clear_with() macro to accommodate logic for
6775           assume_default_colors(), making most of the FILL_BCE logic
6776           unnecessary.  Made can_clear_with() an inline function to make it
6777           simpler to read.
6778
6779 20000212
6780         + corrected form of recent copyright dates.
6781         + minor corrections to xterm-xf86-v333 terminfo entry -TD
6782         > patches by Alexander V Lukyanov:
6783         + reworded dft_fgbg.3x to avoid assuming that the terminal's default
6784           colors are white on black.
6785         + fix initialization of tstLine so that it is filled with current blank
6786           character in any case.  Previously it was possible to have it filled
6787           with old blank.  The wrong over-optimization was introduced in 991002
6788           patch.  (it is not very critical as the only bad effect is not using
6789           clr_eos for clearing if blank has changed).
6790
6791 20000205
6792         + minor corrections/updates to several terminfo entries: rxvt-basic,
6793           vt520, vt525, ibm5151, xterm-xf86-v40 -TD
6794         + modify ifdef's for poll() to allow it to use <sys/poll.h>, thereby
6795           allowing poll() to be used on Linux.
6796         + add CF_FUNC_POLL macro to check if poll() is able to select from
6797           standard input.  If not we will not use it, preferring select()
6798           (adapted from patch by Michael Pakovic <mpakovic@fdn.com>).
6799         + update CF_SHARED_OPTS macro for SCO Unixware 7.1 to allow building
6800           shared libraries (reported/tested by Thanh <thanhma@mediaone.net>).
6801         + override $LANGUAGE in build to avoid incorrect ordering of keynames.
6802         + correct CF_MATH_LIB parameter, must be sin(x), not sqrt(x).
6803
6804 20000122
6805         + resync CF_CHECK_ERRNO and CF_LIB_PREFIX macros from tin and xterm -TD
6806         + modify CF_MATH_LIB configure macro to parameterize the test function
6807           used, for reuse in dialog and similar packages.
6808         + correct tests for file-descriptors in OS/2 EMX mouse support.  A
6809           negative value could be used by FD_SET, causing the select() call
6810           to wait indefinitely.
6811
6812 20000115
6813         + additional fixes for non-bce terminals (handling of delete_character)
6814           to work when assume_default_colors() is not specified.
6815         + modify warning message from _nc_parse_entry() regarding extended
6816           capability names to print only if tic/infocmp/toe have the -v flag
6817           set, and not at all in ordinary user applications.  Otherwise, this
6818           warning would be shown for screen's extended capabilities in programs
6819           that use the termcap interface (reported by Todd C Miller).
6820         + modify use of _nc_tracing from programs such as tic so their debug
6821           level is not in the same range as values set by trace() function.
6822         + small panel header cleanup (patch by Juergen Pfeifer).
6823         + add 'railroad' demo for termcap interface.
6824         + modify 'tic' to write its usage message to stderr (patch by Todd C
6825           Miller).
6826
6827 20000108
6828         + add prototype for erase() to curses.h.in, needed to make test
6829           programs build with c++/g++.
6830         + add .c.i and .c.h suffix rules to generated makefiles, for debugging.
6831         + correct install rule for tack.1; it assumed that file was in the
6832           current directory (reported by Mike Castle <dalgoda@ix.netcom.com>).
6833         + modify terminfo/termcap translation to suppress acsc before trying
6834           sgr if the entry would be too large (patch by Todd C Miller).
6835         + document a special case of incompatiblity between ncurses 4.2 and
6836           5.0, add a section for this in INSTALL.
6837         + add TRACE_DATABASE flag for trace().
6838
6839 20000101
6840         + update mach, add mach-color terminfo entries based on Debian diffs
6841           for ncurses 5.0 -TD
6842         + add entries for xterm-hp, xterm-vt220, xterm-vt52 and xterm-noapp
6843           terminfo entries -TD
6844         + change OTrs capabilities to rs2 in terminfo.src -TD
6845         + add obsolete and extended capabilities to 'screen' terminfo -TD
6846         + corrected conversion from terminfo rs2 to termcap rs (cf: 980704)
6847         + make conversion to termcap ug (underline glitch) more consistently
6848           applied.
6849         + fix out-of-scope use of 'personal[]' buffer in 'toe' (this error
6850           was in the original pre-1.9.7 version, when $HOME/.terminfo was
6851           introduced).
6852         + modify 'toe' to ignore terminfo directories to which it has no
6853           permissions.
6854         + modify read_termtype(), fixing 'toe', which could dump core when it
6855           found an incomplete entry such as "dumb" because it did not
6856           initialize its buffer for _nc_read_file_entry().
6857         + use -fPIC rather than -fpic for shared libraries on Linux, not
6858           needed for i386 but some ports (from Debian diffs for 5.0) -TD
6859         + use explicit VALID_NUMERIC() checks in a few places that had been
6860           overlooked, and add a check to ensure that init_tabs is nonzero,
6861           to avoid divide-by-zero (reported by Todd C Miller).
6862         + minor fix for CF_ANSI_CC_CHECK configure macro, for HPUX 10.x (from
6863           tin) -TD
6864
6865 19991218
6866         + reorder tests during mouse initialization to allow for gpm to run in
6867           xterm, or for xterm to be used under OS/2 EMX.  Also drop test for
6868           $DISPLAY in favor of kmous=\E[M or $TERM containing "xterm" (report
6869           by Christian Weisgerber <naddy@mips.rhein-neckar.de>).
6870         + modify raw() and noraw() to clear/restore IEXTEN flag which affects
6871           stty lnext on systems such as FreeBSD (report by Bruce Evans
6872           <bde@zeta.org.au>, via Jason Evans <jasone@canonware.com>).
6873         + fix a potential (but unlikely) buffer overflow in failed() function
6874           of tset.c (reported by Todd C Miller).
6875         + add manual-page for ncurses extensions, documented curses_version(),
6876           use_extended_names().
6877
6878 19991211
6879         + treat as untranslatable to termcap those terminfo strings which
6880           contain non-decimal formatting, e.g., hexadecimal or octal.
6881         + correct commented-out capabilities that cannot be translated to
6882           termcap, which did not check if a colon must be escaped.
6883         + correct termcap translation for "%>" and "%+", which did not check
6884           if a colon must be escaped, for instance.
6885         + use save_string/save_char for _nc_captoinfo() to eliminate fixed
6886           buffer (originally for _nc_infotocap() in 960301 -TD).
6887         + correct expression used for terminfo equivalent of termcap %B,
6888           adjust regent100 entry which uses this.
6889         + some cleanup and commenting of ad hoc cases in _nc_infotocap().
6890         + eliminate a fixed-buffer in tic, used for translating comments.
6891         + add manpage for infotocap
6892
6893 19991204
6894         + add kvt and gnome terminfo entries -TD
6895         + correct translation of "%%" by infotocap, which was emitted as "%".
6896         + add "obsolete" termcap strings to terminfo.src
6897         + modify infocmp to default to showing obsolete capabilities rather
6898           than terminfo only.
6899         + modify write_entry.c so that if extended names (i.e., configure
6900           --enable-tcap-names) are active, then tic will also write "obsolete"
6901           capabilities that are present in the terminfo source.
6902         + modify tic so that when running as captoinfo or infotocap, it
6903           initializes the output format as in -C and -I options, respectively.
6904         + improve infocmp and tic -f option by splitting long strings that do
6905           not have if-then-else construct, but do have parameters, e.g., the
6906           initc for xterm-88color.
6907         + refine MKtermsort.sh slightly by using bool for the *_from_termcap
6908           arrays.
6909
6910 19991127
6911         + additional fixes for non-bce terminals (handling of clear_screen,
6912           clr_eol, clr_eos, scrolling) to work when assume_default_colors() is
6913           not specified.
6914         + several small changes to xterm terminfo entries -TD.
6915         + move logic for _nc_windows in lib_freeall.c inside check for nonnull
6916           SP, since it is part of that struct.
6917         + remove obsolete shlib-versions, which was unintentionally re-added
6918           in 970927.
6919         + modify infocmp -e, -E options to ensure that generated fallback.c
6920           type for Booleans agrees with term.h (reported by Eric Norum
6921           <eric@cls.usask.ca>).
6922         + correct configure script's use of $LIB_PREFIX, which did not work
6923           for installing the c++ directory if $libdir did not end with "/lib"
6924           (reported by Huy Le <huyle@ugcs.caltech.edu>).
6925         + modify infocmp so -L and -f options work together.
6926         + modify the initialization of SP->_color_table[] in start_color() so
6927           that color_content() will return usable values for COLORS greater
6928           than 8.
6929         + modify ncurses 'd' test in case COLORS is greater than 16, e.g., for
6930           xterm-88color, to limit the displayed/computed colors to 16.
6931         > patch by Juergen Pfeifer:
6932         + simplify coding of the panel library according to suggestions by
6933           Philippe Blain.
6934         + improve macro coding for a few macros in curses.priv.h
6935
6936 19991113
6937         + modify treatment of color pair 0 so that if ncurses is configured
6938           to support default colors, and they are not active, then ncurses
6939           will set that explicitly, not relying on orig_colors or orig_pair.
6940         + add new extension, assume_default_colors() to provide better control
6941           over the use of default colors.
6942         + modify test programs to use more-specific ifdef's for existence of
6943           wresize(), resizeterm() and use_default_colors().
6944         + modify configure script to add specific ifdef's for some functions
6945           that are included when --enable-ext-funcs is in effect, so their
6946           existence can be ifdef'd in the test programs.
6947         + reorder some configure options, moving those extensions that have
6948           evolved from experimental status into a new section.
6949         + change configure --enable-tcap-names to enable this by default.
6950
6951 19991106
6952         + install tack's manpage (reported by Robert Weiner
6953           <robert@progplus.com>)
6954         + correct worm.c's handling of KEY_RESIZE (patch by Frank Heckenbach).
6955         + modify curses.h.in, undef'ing some symbols to avoid conflict with C++
6956           STL (reported by Matt Gerassimoff <mgeras@ticon.net>)
6957
6958 19991030
6959         + modify linux terminfo entry to indicate that dim does not mix with
6960           color (reported by Klaus Weide <kweide@enteract.com>).
6961         + correct several typos in terminfo entries related to missing '['
6962           in CSI's -TD
6963         + fix several compiler warnings in c++ binding (reported by Tim
6964           Mooney for alphaev56-dec-osf4.0f
6965         + rename parameter of _nc_free_entries() to accommodate lint.
6966         + correct lint rule for tack, used incorrect list of source files.
6967         + add case to config.guess, config.sub for Rhapsody.
6968         + improve configure tests for libg++ and libstdc++ by omitting the
6969           math library (which is missing on Rhapsody), and improved test for
6970           the math library itself (adapted from path by Nelson H. F. Beebe).
6971         + explicitly initialize to zero several data items which were
6972           implicitly initialized, e.g., cur_term.  If not explicitly
6973           initialized, their storage type is C (common), and causes problems
6974           linking on Rhapsody 5.5 using gcc 2.7.2.1 (reported by Nelson H. F.
6975           Beebe).
6976         + modify Ada95 binding to not include the linker option for Ada
6977           bindings in the Ada headers, but in the Makefiles instead (patch by
6978           Juergen Pfeifer).
6979
6980 19991023 5.0 release for upload to ftp.gnu.org
6981         + effective with release of 5.0, change NCURSES_VERSION_PATCH to
6982           4-digit year.
6983         + add function curses_version(), to return ncurses library version
6984           (request by Bob van der Poel).
6985         + remove rmam, smam from cygwin terminfo entry.
6986         + modify FreeBSD cons25 terminfo entry to add cnorm and cvvis, as well
6987           as update ncv to indicate that 'dim' conflicts with colors.
6988         + modify configure script to use symbolic links for FreeBSD shared
6989           libraries by default.
6990         + correct ranf() function in rain and worm programs to ensure it does
6991           not return 1.0
6992         + hide the cursor in hanoi.c if it is running automatically.
6993         + amend lrtest.c to account for optimizations that exploit margin
6994           wrapping.
6995         + add a simple terminfo demo, dots.c
6996         + modify SIGINT/SIGQUIT handler to set a flag used in _nc_outch() to
6997           tell it to use write() rather than putc(), since the latter is not
6998           safe in a signal handler according to POSIX.
6999         + add/use internal macros _nc_flush() and NC_OUTPUT to hide details
7000           of output-file pointer in ncurses library.
7001         + uncomment CC_SHARED_OPTS (see 971115), since they are needed for SCO
7002           OpenServer.
7003         + correct CC_SHARED_OPTS for building shared libraries for SCO
7004           OpenServer.
7005         + remove usleep() from alternatives in napms(), since it may interact
7006           with alarm(), causing a process to be interrupted by SIGALRM (with
7007           advice from Bela Lubkin).
7008         + modify terminal_interface-curses-forms.ads.m4 to build/work with
7009           GNAT 3.10 (patch by Juergen Pfeifer).
7010         + remove part of CF_GPP_LIBRARY configure-script macro, which did not
7011           work with gcc 2.7.2.3
7012         + minor fix to test/tclock.c to avoid beeping more than once per second
7013         + add 's' and ' ' decoding to test/rain.c
7014
7015 991016  pre-release
7016         + corrected BeOS code for lib_twait.c, making nodelay() function work.
7017
7018 991009  pre-release
7019         + correct ncurses' value for cursor-column in PutCharLR(), which was
7020           off-by-one in one case (patch by Ilya Zakharevich).
7021         + fix some minor errors in position_check() debugging code, found while
7022           using this to validate the PutCharLR() patch.
7023         + modify firework, lrtest, worm examples to be resizable, and to
7024           recognize 'q' for quit, 's' for single-step and ' ' for resume.
7025         + restore reverted change to  terminal_interface-curses-forms.ads.m4,
7026           add a note on building with gnat 3.10p to Ada95/TODO.
7027         + add a copy of the standalone configure script for the test-directory
7028           to simplify testing on SCO and Solaris.
7029
7030 991002  pre-release
7031         + minor fixes for _nc_msec_cost(), color_content(), pair_content(),
7032           _nc_freewin(), ClrBottom() and onscreen_mvcur() (analysis by Philippe
7033           Blain, comments by Alexander V Lukyanov).
7034         + simplify definition of PANEL and eliminate internal functions
7035           _nc_calculate_obscure(), _nc_free_obscure() and _nc_override(),
7036           (patch by Juergen Pfeifer, analysis by Philippe Blain
7037           <bledp@voila.fr>)).
7038         + change renaming of dft_fgbg.3x to use_default_colors.3ncurses in
7039           man_db.renames, since Debian is not concerned with 14-character
7040           filename limitation (Debian bug report by Josip Rodin
7041           <joy@cibalia.gkvk.hr>).
7042         + corrected scoansi terminfo entry by testing with scoterm and console.
7043         + revert change from 990614 to terminal_interface-curses-forms.ads.m4,
7044           since this does not work for gnat 3.10p
7045         + modify tclock example to be resizable (if ncurses' sigwinch handler
7046           is used), and in color.
7047         + use $(CC) rather than 'gcc' in MK_SHARED_LIB symbols, used for Linux
7048           shared library rules.
7049
7050 990925  pre-release
7051         + add newer NetBSD console terminfo entries
7052         + add amiga-8bit terminfo entry (from Henning 'Faroul' Peters
7053           <Faroul@beyond.kn-bremen.de>)
7054         + remove -lcurses -ltermcap from configure script's check for the gpm
7055           library, since they are not really necessary (a properly configured
7056           gpm library has no dependency on any curses library), and if the
7057           curses library is not installed, this would cause the test to fail.
7058         + modify tic's -C option so that terminfo "use=" clauses are translated
7059           to "tc=" clauses even when running it as captoinfo.
7060         + modify CF_STDCPP_LIBRARY configure macro to perform its check only
7061           for GNU C++, since that library conflicts with SGI's libC on IRIX-6.2
7062         + modify CF_SHARED_OPTS configure macro to support build on NetBSD with
7063           ELF libraries (patch by Bernd Ernesti <bernd@arresum.inka.de>).
7064         + correct a problem in libpanel, where the _nc_top_panel variable was
7065           not set properly when bottom_panel() is called to hide a panel which
7066           is the only one on the stack (report/analysis by Michael Andres
7067           <ma@suse.de>, patch by Juergen Pfeifer).
7068
7069 990918  pre-release
7070         + add acsc string to HP 70092 terminfo entry (patch by Joerg Wunsch
7071           <j@interface-business.de>).
7072         + add top-level uninstall.data and uninstall.man makefile rules.
7073         + correct logic of CF_LINK_FUNCS configure script, from BeOS changes so
7074           that hard-links work on Unix again.
7075         + change default value of cf_cv_builtin_bool to 1 (suggested by
7076           Jeremy Buhler), making it less likely that a conflicting declaration
7077           of bool will be seen when compiling with C++.
7078
7079 990911  pre-release
7080         + improved configure checks for builtin.h
7081         + minor changes to C++ binding (remove static initializations, and make
7082           configure-test for parameter initializations) for features not
7083           allowed by vendor's C++ compilers (reported by Martin Mokrejs, this
7084           applies to SGI, though I found SCO has the same characteristics).
7085         + corrected quoting of ETIP_xxx definitions which support old versions
7086           of g++, e.g., those using -lg++
7087         + remove 'L' code from safe_sprintf.c, since 'long double' is not
7088           widely portable.  safe_sprintf.c is experimental, however, and
7089           exists mainly as a fallback for systems without snprintf (reported
7090           by Martin Mokrejs <mmokrejs@natur.cuni.cz>, for IRIX 6.2)
7091         + modify definition of _nc_tinfo_fkeys in broken-linker configuration
7092           so that it is not unnecessarily made extern (Jeffrey C Honig).
7093
7094 990904  pre-release
7095         + move definition for builtin.h in configure tests to specific check
7096           for libg++, since qt uses the same filename incompatibly.
7097         + correct logic of lib_termcap.c tgetstr function, which did not copy
7098           the result to the buffer parameter.  Testing shows Solaris does
7099           update this, though of course tgetent's buffer is untouched (reported
7100           in Peter Edwards <peter.edwards@ireland.com> in
7101           mpc.lists.freebsd.current newsgroup.
7102         + corrected beterm terminfo entry, which lists some capabilities which
7103           are not actually provided by the BeOS Terminal.
7104         + add special logic to replace select() calls on BeOS, whose select()
7105           function works only for sockets.
7106         + correct missing escape in mkterm.h.awk.in, which caused part
7107           of the copyright noticed to be omitted (reported by Peter
7108           Wemm <peter@netplex.com.au>).
7109         > several small changes to make the c++ binding and demo work on OS/2
7110           EMX (related to a clean reinstall of EMX):
7111         + correct library-prefix for c++ binding; none is needed.
7112         + add $x suffix to make_hash and make_keys so 'make distclean' works.
7113         + correct missing $x suffix for tack, c++ demo executables.
7114         + split CF_CXX_LIBRARY into CF_GPP_LIBRARY (for -lg++) and
7115           CF_STDCPP_LIBRARY (for -lstdc++)
7116
7117 990828  pre-release
7118         + add cygwin terminfo entry -TD
7119         + modify CF_PROG_EXT configure macro to set .exe extension for cygwin.
7120         + add configure option --without-cxx-binding, modifying the existing
7121           --without-cxx option to check only for the C++ compiler
7122           characteristics.  Whether or not the C++ binding is needed, the
7123           configure script checks for the size/type of bool, to make ncurses
7124           match.  Otherwise C++ applications cannot use ncurses.
7125
7126 990821  pre-release
7127         + updated configure macros CF_MAKEFLAGS, CF_CHECK_ERRNO
7128         + minor corrections to beterm terminfo entry.
7129         + modify lib_setup.c to reject values of $TERM which have a '/' in
7130           them.
7131         + add ifdef's to guard against CS5, CS6, CS7, CS8 being zero, as more
7132           than one is on BeOS.  That would break a switch statement.
7133         + add configure macro CF_LINK_FUNCS to detect and work around BeOS's
7134           nonfunctional link().
7135         + improved configure macros CF_BOOL_DECL and CF_BOOL_SIZE to detect
7136           BeOS's bool, which is declared as an unsigned char.
7137
7138 990814  pre-release
7139         + add ms-vt100 terminfo entry -TD
7140         + minor fixes for misc/emx.src, based on testing with tack.
7141         + minor fix for test/ncurses.c, test 'a', in case ncv is not set.
7142
7143 990731  pre-release
7144         + minor correction for 'screen' terminfo entry.
7145         + clarify description of errret values for setupterm in manpage.
7146         + modify tput to allow it to emit capabilities for hardcopy terminals
7147           (patch by Goran Uddeborg <goeran@uddeborg.pp.se>).
7148         + modify the 'o' (panel) test in ncurses.c to show the panels in color
7149           or at least in bold, to test Juergen's change to wrefresh().
7150         > patches by Juergen Pfeifer:
7151         + Fixes a problem using wbkgdset() with panels.  It has actually
7152           nothing to with panels but is a problem in the implementation of
7153           wrefresh().  Whenever a window changes its background attribute to
7154           something different than newscr's background attribute, the whole
7155           window is touched to force a copy to newscr.  This is an unwanted
7156           side-effect of wrefresh() and it is actually not necessary.  A
7157           changed background attribute affects only further outputs of
7158           background it doesn't mean anything to the current content of the
7159           window.  So there is no need to force a copy.  (reported by Frank
7160           Heckenbach <frank@g-n-u.de>).
7161         + an upward compatible enhancement of the NCursesPad class in the C++
7162           binding.  It allows one to add a "viewport" window to a pad and then
7163           to use panning to view the pad through the viewport window.
7164
7165 990724  pre-release
7166         + suppress a call to def_prog_mode() in the SIGTSTP handler if the
7167           signal was received while not in curses mode, e.g., endwin() was
7168           called in preparation for spawning a shell command (reported by Frank
7169           Heckenbach <frank@g-n-u.de>)
7170         + corrected/enhanced xterm-r5, xterm+sl, xterm+sl-twm terminfo entries.
7171         + change test for xterm mouse capability:  it now checks only if the
7172           user's $DISPLAY variable is set in conjunction with the kmous
7173           capability being present in the terminfo.  Before, it checked if any
7174           of "xterm", "rxvt" or "kterm" were substrings of the terminal name.
7175           However, some emulators which are incompatible with xterm in other
7176           ways do support the xterm mouse capability.
7177         + reviewed and made minor changes in ncurses to quiet g++ warnings
7178           about shadowed or uninitialized variables.  g++ incorrectly warns
7179           about uninitialized variables because it does not take into account
7180           short-circuit expression evaluation.
7181         + change ncurses 'b' test to start in color pair 0 and to show in the
7182           right margin those attributes which are suppressed by no_color_video,
7183           i.e., "(NCV)".
7184         + modify ifdef's in curses.h so that __attribute__ is not redefined
7185           when compiling with g++, but instead disabled the macros derived for
7186           __attribute__ since g++ does not consistently recognize the same
7187           keywords as gcc (reported by Stephan K Zitz <zitz@erf.net>).
7188         + update dependencies for term.h in ncurses/modules (reported by
7189           Ilya Zakharevich).
7190
7191 990710  pre-release
7192         + modify the form demo in ncurses.c to illustrate how to manipulate the
7193           field appearance, e.g, for highlighting or translating the field
7194           contents.
7195         + correct logic in write_entry from split-out of home_terminfo in
7196           980919, which prevented update of $HOME/.terminfo (reported by Philip
7197           Spencer <pspencer@fields.utoronto.ca>).
7198
7199 990703  pre-release
7200         + modify linux terminfo description to make use of kernel 2.2.x mods
7201           that support cursor style, e.g., to implement cvvis (patch by Frank
7202           Heckenbach <frank@g-n-u.de>)
7203         + add special-case in setupterm to retain previously-saved terminal
7204           settings in cur_term, which happens when curses and termcap calls are
7205           mixed (from report by Bjorn Helgaas <helgaas@dhc.net>).
7206         + suppress initialization of key-tries in _nc_keypad() if we are only
7207           disabling keypad mode, e.g., in endwin() called when keypad() was
7208           not.
7209         + modify the Ada95 makefile to ensure that always the Ada files from
7210           the development tree are used for building and not the eventually
7211           installed ones (patch by Juergen Pfeifer).
7212
7213 990626  pre-release
7214         + use TTY definition in tack/sysdep.c rather than struct termios
7215           (reported by Philippe De Muyter).
7216         + add a fallback for strstr, used in lib_mvcur.c and tack/edit.c,
7217           not present on sysV68 (reported by Philippe De Muyter).
7218         + correct definition in comp_hash.c to build with configure
7219           --with-rcs-ids option.
7220
7221 990619  pre-release
7222         + modified ifdef's for sigaction and sigvec to ensure we do not try to
7223           handle SIGTSTP if neither is available (from report by Philippe De
7224           Muyter).
7225         > patch by Philippe De Muyter:
7226         + in tic.c, use `unlink' if `remove' is not available.
7227         + use only `unsigned' as fallback value for `speed_t'.  Some files used
7228           `short' instead.
7229
7230 990616  pre-release
7231         + fix some compiler warnings in tack.
7232         + add a check for predefined bool type in CC, based on report that
7233           BeOS predefines a bool type.
7234         + correct logic for infocmp -e option, i.e., the configure
7235           --with-fallbacks option, which I'd not updated when implementing
7236           extended names (cf:  990301).  The new implementation adds a "-E"
7237           option to infocmp -TD
7238         > patch by Juergen Pfeifer:
7239         + introduce the private type Curses_Bool in the Ada95 binding
7240           implementation.  This is to clearly represent the use of "bool" also
7241           in the binding.  It should have no effect on the generated code.
7242         + improve the man page for field_buffer() to tell the people, that the
7243           whole buffer including leading/trailing spaces is returned.  This is
7244           a common source of confusion, so it's better to document it clearly.
7245
7246 990614  pre-release
7247         > patch by Juergen Pfeifer:
7248         + use pragma PreElaborate in several places.
7249         + change a few System.Address uses to more specific types.
7250         + change interface version-number to 1.0
7251         + regenerate Ada95 HTML files.
7252
7253 990612  pre-release
7254         + modify lib_endwin.c to avoid calling reset_shell_mode(), return ERR
7255           if it appears that curses was never initialized, e.g., by initscr().
7256           For instance, this guards against setting the terminal modes to
7257           strange values if endwin() is called after setupterm().  In the same
7258           context, Solaris curses will dump core.
7259         + modify logic that avoids a conflict in lib_vidattr.c between sgr0 and
7260           equivalent values in rmso or rmul by ensuring we do not modify the
7261           data which would be returned by the terminfo or termcap interfaces
7262           (reported by Brad Pepers <brad@linuxcanada.com>, cf:  960706).
7263         + add a null-pointer check for SP in lib_vidattr.c to logic that checks
7264           for magic cookies.
7265         + improve fallback declaration of 'bool' when the --without-cxx option
7266           is given, by using a 'char' on i386 and related hosts (prompted by
7267           discussion with Alexander V Lukyanov).
7268
7269 990605  pre-release
7270         + include time.h in lib_napms.c if nanosleep is used (patch by
7271           R Lindsay Todd <toddr@rpi.edu>).
7272         + add an "#undef bool" to curses.h, in case someone tries to define it,
7273           e.g., perl.
7274         + add check to tparm to guard against divide by zero (reported by Aaron
7275           Campbell <aaron@ug.cs.dal.ca>).
7276
7277 990516  pre-release
7278         + minor fix to build tack on CLIX (mismatched const).
7279         > patch by Juergen Pfeifer:
7280         + change Juergen's old email address with new one in the files where it
7281           is referenced.  The Ada95 HTML pages are regenerated.
7282         + update MANIFEST to list the tack files.
7283
7284 990509  pre-release
7285         + minor fixes to make 'tack' build/link on NeXT (reported by Francisco
7286           A. Tomei Torres).
7287
7288 990417  pre-release
7289         + add 'tack' program (which is GPL'd), updating it to work with the
7290           modified TERMTYPE struct and making a fix to support setaf/setab
7291           capabilities.  Note that the tack program is not part of the
7292           ncurses libraries, but an application which can be distributed with
7293           ncurses.  The configure script will ignore the directory if it is
7294           omitted, however.
7295         + modify gpm mouse support so that buttons 2 and 3 are used for
7296           select/paste only when shift key is pressed, making them available
7297           for use by an application (patch by Klaus Weide).
7298         + add complete list of function keys to scoansi terminfo entry - TD
7299
7300 990410  pre-release
7301         + add a simple test program cardfile.c to illustrate how to read form
7302           fields, and showing forms within panels.
7303         + change shared-library versioning for the Hurd to be like Linux rather
7304           than *BSD (patch by Mark Kettenis <kettenis@wins.uva.nl>).
7305         + add linux-lat terminfo entry.
7306         + back-out _nc_access check in read_termcap.c (both incorrect and
7307           unnecessary, except to guard against a small window where the file's
7308           ownership may change).
7309
7310 990403  pre-release
7311         + remove conflicting _nc_free_termtype() function from test module
7312           lib_freeall.c
7313         + use _nc_access check in read_termcap.c for termpaths[] array (noted
7314           by Jeremy Buhler, indicating that Alan Cox made a similar patch).
7315         > patch by Juergen Pfeifer:
7316         + modify menu creation to not inherit status flag from the default menu
7317           which says that the associated marker string has been allocated and
7318           should be freed (bug reported by Marek Paliwoda"
7319           <paliwoda@kki.net.pl>)
7320
7321 990327  pre-release (alpha.gnu.org:/gnu/ncurses-5.0-beta1.tar.gz)
7322         + minor fixes to xterm-xfree86 terminfo entry - TD.
7323         + split up an expression in configure script check for ldconfig to
7324           workaround limitation of BSD/OS sh (reported by Jeff Haas
7325           <jmh@mail.msen.com>).
7326         + correct a typo in man/form_hook.3x (Todd C Miller).
7327
7328 990318  pre-release
7329         + parenthesize and undef 'index' symbol in c++ binding and demo, to
7330           accommodate its definition on NeXT (reported by Francisco A. Tomei
7331           Torres).
7332         + add sigismember() to base/sigaction.c compatibility to link on NeXT
7333           (reported by Francisco A. Tomei Torres).
7334         + further refinements to inequality in hashmap.c to cover a case with
7335           ^U in nvi (patch by Alexander V Lukyanov).
7336
7337 990316  pre-release
7338         + add fallback definition for getcwd, to link on NeXT.
7339         + add a copy of cur_term to tic.c to make it link properly on NeXT
7340           (reported by Francisco A. Tomei Torres).
7341         + change inequality in hashmap.c which checks the distance traveled by
7342           a chunk so that ^D command in nvi (scrolls 1/2 screen) will use
7343           scrolling logic (patch by Alexander V Lukyanov, reported by Jeffrey
7344           C Honig).
7345
7346 990314  pre-release
7347         + modify lib_color.c to handle a special case where the curscr
7348           attributes have been made obsolete (patch by Alexander V Lukyanov).
7349         + update BSD/OS console terminfo entries to use klone+sgr and
7350           klone+color (patch by Jeffrey C Honig).
7351         + update glibc addon configure script for extended capabilities.
7352         + correct a couple of warnings in the --enable-const configuration.
7353         + make comp_hash build properly with _nc_strdup(), on NeXT (reported by
7354           Francisco A. Tomei Torres <francisco.tomei@cwix.com>).
7355
7356 990313  pre-release
7357         + correct typos in linux-c initc string - TD
7358         + add 'crt' terminfo entry, update xterm-xfree86 entry - TD
7359         + remove a spurious argument to tparm() in lib_sklrefr.c (patch by
7360           Alexander V Lukyanov).
7361
7362 990307  pre-release
7363         + back-out change to wgetch because it causes a problem with ^Z
7364           handling in lynx (reported by Kim DeVaughn).
7365
7366 990306  pre-release
7367         + add -G option to tic and infocmp, to reverse the "-g" option.
7368         + recode functions in name_match.c to avoid use of strncpy, which
7369           caused a 4-fold slowdown in tic (cf: 980530).
7370         + correct a few warnings about sign-extension in recent changes.
7371         > patch by Juergen Pfeifer:
7372         + fixes suggested by Jeff Bradbury <jibradbury@lucent.com>:
7373           + improved parameter checking in new_fieldtype().
7374           + fixed a typo in wgetch() timeout handling.
7375           + allow slk_init() to be called per newterm call.  The internal SLK
7376             state is stored in the SCREEN struct after every newterm() and then
7377             reset for the next newterm.
7378           + fix the problem that a slk_refresh() refreshes stdscr if the
7379             terminal has true SLKs.
7380         + update HTML documentation for Ada binding.
7381
7382 990301  pre-release
7383         + remove 'bool' casts from definitions of TRUE/FALSE so that statements
7384           such as "#if TRUE" work.  This was originally done to allow for a C++
7385           compiler which would warn of implicit conversions between enum and
7386           int, but is not needed for g++ (reported by Kim DeVaughn).
7387         + add use_extended_names() function to allow applications to suppress
7388           read of the extended capabilities.
7389         + add configure option --enable-tcap-names to support logic which
7390           allows ncurses' tic to define new (i.e., extended) terminal
7391           capabilities.  This is activated by the tic -x switch.  The infocmp
7392           program automatically shows or compares extended capabilities.
7393           Note:  This changes the Strings and similar arrays in the TERMTYPE
7394           struct so that applications which manipulate it must be recompiled.
7395         + use macros typeMalloc, typeCalloc and typeRealloc consistently
7396           throughout ncurses library.
7397         + add _nc_strdup() to doalloc.c.
7398         + modify define_key() to allow multiple strings to be bound to the
7399           same keycode.
7400         + correct logic error in _nc_remove_string, from 990220.
7401         > patch for Ada95 binding (Juergen Pfeifer):
7402         + regenerate some of the html documentation
7403         + minor cleanup in terminal_interface-curses.adb
7404
7405 990220  pre-release
7406         + resolve ambiguity of kend/kll/kslt and khome/kfnd/kich1 strings in
7407           xterm and ncsa terminfo entries by removing the unneeded ones.  Note
7408           that some entries will return kend & khome versus kslt and kfnd, for
7409           PC-style keyboards versus strict vt220 compatiblity - TD
7410         + add function keybound(), which returns the definition associated with
7411           a given keycode.
7412         + modify define_key() to undefine the given string when no keycode is
7413           given.
7414         + modify keyok() so it works properly if there is more than one string
7415           defined for a keycode.
7416         + add check to tic to warn about terminfo descriptions that contain
7417           more than one key assigned to the same string.  This is shown only if
7418           the verbose (-v) option is given.  Moved related logic (tic -v) from
7419           comp_parse.c into the tic program.
7420         + add/use _nc_trace_tries() to show the function keys that will be
7421           recognized.
7422         + rename init_acs to _nc_init_acs (request by Alexander V Lukyanov).
7423         > patch for Ada95 binding (Juergen Pfeifer):
7424         + remove all the *_adabind.c from ncurses, menu and form projects.
7425           Those little helper routines have all been implemented in Ada and are
7426           no longer required.
7427         + The option handling routines in menu and form have been made more
7428           save.  They now make sure that the unused bits in options are always
7429           zero.
7430         + modify configuration scripts to
7431           + use gnatmake as default compiler name.  This is a safer choice than
7432             gcc, because some GNAT implementations use other names for the
7433             compilerdriver to avoid conflicts.
7434           + use new default installation locations for the Ada files according
7435             to the proposed GNU Ada filesystem standard (for Linux).
7436         + simplify the Makefiles for the Ada binding
7437         + rename ada_include directory to src.
7438
7439 990213
7440         + enable sigwinch handler by default.
7441         + disable logic that allows setbuf to be turned off/on, because some
7442           implementations will overrun the buffer after it has been disabled
7443           once.
7444
7445 990206
7446         + suppress sc/rc capabilities from terminal description if they appear
7447           in smcup/rmcup.  This affects only scrolling optimization, to fix a
7448           problem reported by several people with xterm's alternate screen,
7449           though the problem is more general.
7450         > patch for Ada95 binding (Juergen Pfeifer):
7451         + removed all pragma Preelaborate() stuff, because the just released
7452           gnat-3.11p complains on some constructs.
7453         + fixed some upper/lower case notations because gnat-3.11p found
7454           inconsistent use.
7455         + used a new method to generate the HTML documentation of the Ada95
7456           binding.  This invalidates nearly the whole ./Ada95/html subtree.
7457           Nearly all current files in this subtree are removed
7458
7459 990130
7460         + cache last result from _nc_baudrate, for performance (suggested by
7461           Alexander V Lukyanov).
7462         + modify ClrUpdate() function to workaround a problem in nvi, which
7463           uses redrawwin in SIGTSTP handling.  Jeffrey C Honig reported that
7464           ncurses repainted the screen with nulls before resuming normal
7465           operation (patch by Alexander V Lukyanov).
7466         + generalize is_xterm() function a little by letting xterm/rxvt/kterm
7467           be any substring rather than the prefix.
7468         + modify lib_data.c to initialize SP.  Some linkers, e.g., IBM's, will
7469           not link a module if the only symbols exported from the module are
7470           uninitialized ones (patch by Ilya Zakharevich).  Ilya says that he
7471           has seen messages claiming this behavior conforms to the standard.)
7472         + move call on _nc_signal_handler past _nc_initscr, to avoid a small
7473           window where Nttyb hasn't yet been filled (reported by Klaus Weide).
7474         + modify lib_tstp.c to block SIGTTOU when handling SIGTSTP, fixes a
7475           problem where ncurses applications which were run via a shell script
7476           would hang when given a ^Z.  Also, check if the terminal's process
7477           group is consistent, i.e., a shell has not taken ownership of it,
7478           before deciding to save the current terminal settings in the SIGTSTP
7479           handler (patch by Klaus Weide).
7480         + correct spelling of ACS_ names in curs_border.3x (reported by Bob van
7481           der Poel <bvdpoel@kootenay.com>).
7482         + correct a couple of typos in the macros supporting the configure
7483           --with-shlib-version option.
7484
7485 990123
7486         + modify fty_regex.c to compile on HAVE_REGEXPR_H_FUNCS machine (patch
7487           by Kimio Ishii <ishii@csl.sony.co.jp>).
7488         + rename BSDI console terminfo entries:  bsdos to bsdos-pc-nobold, and
7489           bsdos-bold to bsdos-pc (patch by Jeffrey C Honig).
7490         + modify tput to accept termcap names as an alternative to terminfo
7491           names (patch by Jeffrey C Honig).
7492         + correct a typo in term.7 (Todd C Miller).
7493         + add configure --with-shlib-version option to allow installing shared
7494           libraries named according to release or ABI versions.  This
7495           parameterizes some existing logic in the configure script, and is
7496           intended for compatiblity upgrades on Digital Unix, which used
7497           versioned libraries in ncurses 4.2, but no longer does (cf:  980425).
7498         + resync configure script against autoconf 2.13 + patches
7499         + minor improvements for teraterm terminfo entry based on the program's
7500           source distribution.
7501
7502 990116
7503         + change default for configure --enable-big-core to assume machines do
7504           have enough memory to resolve terminfo.src in-memory.
7505         + correct name of ncurses library in TEST_ARGS when configuring with
7506           debug library.
7507         + minor fixes to compile ncurses library with broken-linker with g++.
7508         + add --enable-broken-linker configure option, default to environment
7509           variable $BROKEN_LINKER (request by Jeffrey C Honig).
7510         + change key_names[] array to static since it is not part of the curses
7511           interface (reported by Jeffrey C Honig <jch@bsdi.com>).
7512
7513 990110
7514         + add Tera Term terminfo entry - TD
7515
7516 990109
7517         + reviewed/corrected macros in curses.h as per XSI document.
7518         + provide support for termcap PC variable by copying it from terminfo
7519           data and using it as the padding character in tputs (reported by
7520           Alexander V Lukyanov).
7521         + corrected iris-ansi and iris-ansi-ap terminfo entries for kent and
7522           kf9-kf12 capabilities, as well as adding kcbt.
7523         + document the mouse handling mechanism in menu_driver and make a small
7524           change in menu_driver's return codes to provide more consistency
7525           (patch by Juergen Pfeifer).
7526         + add fallback definition for NCURSES_CONST to termcap.h.in (reported
7527           by Uchiyama Yasushi <uch@nop.or.jp>).
7528         + move lib_restart.c to ncurses/base, since it uses curses functions
7529           directly, and therefore cannot be used in libtinfo.so
7530         + rename micro_char_size to micro_col_size, adding #define to retain
7531           old name.
7532         + add set_a_attributes and set_pglen_inch to terminfo structure, as per
7533           XSI and Solaris 2.5.
7534         + minor makefile files to build ncurses test_progs
7535         + update html files in misc directory to reflect changes since 4.2
7536
7537 990102
7538         + disable scroll hints when hashmap is enabled (patch by Alexander
7539           V Lukyanov).
7540         + move logic for tic's verify of -e option versus -I and -C so that the
7541           terminfo data is not processed if we cannot handle -e (reported by
7542           Steven Schwartz <steves@unitrends.com>.
7543         + add test-driver traces to terminfo and termcap functions.
7544         + provide support for termcap ospeed variable by copying it from the
7545           internal cur_term member, and using ospeed as the baudrate reference
7546           for the delay_output and tputs functions.  If an application does not
7547           set ospeed, the library behaves as before, except that _nc_timed_wait
7548           is no longer used, or needed, since ospeed always has a value.  But
7549           the application can modify ospeed to adjust the output of padding
7550           characters (prompted by a bug report for screen 3.7.6 and email from
7551           Michael Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>).
7552         + removed some unused ifdef's as part of Alexander's restructuring.
7553         + reviewed/updated curses.h, term.h against X/Open Curses Issue 4
7554           Version 2.  This includes making some parameters NCURSES_CONST
7555           rather than const, e.g., in termcap.h.
7556         + change linux terminfo entry to use ncv#2, since underline does not
7557           work with color
7558
7559 981226
7560         + miscellaneous corrections for curses.h to match XSI.
7561         + change --enable-no-padding configure option to be normally enabled.
7562         + add section to ncurses manpage for environment variables.
7563         + investigated Debian bug report that pertains to screen 3.7.4/3.7.6
7564           changes, found no sign of problems on Linux (or on SunOS, Solaris)
7565           running screen built with ncurses.
7566         + check if tmp_fp is opened in tic.c before closing it (patch by Pavel
7567           Roskin <pavel_roskin@geocities.com>).
7568         + correct several font specification typos in man-pages.
7569
7570 981220
7571         + correct default value for BUILD_CC (reported by Larry Virden).
7572
7573 981219
7574         + modify _nc_set_writedir() to set a flag in _nc_tic_dir() to prevent
7575           it from changing the terminfo directory after chdir'ing to it.
7576           Otherwise, a relative path in $TERMINFO would confuse tic (prompted
7577           by a Debian bug report).
7578         + correct/update ncsa terminfo entry (report by Larry Virden).
7579         + update xterm-xfree86 terminfo to current (patch 90), smcur/rmcur
7580           changes
7581         + add Mathew Vernon's mach console entries to terminfo.src
7582         + more changes, moving functions, as part of Alexander's restructuring.
7583         + modify configure script for GNU/Hurd share-library support, introduce
7584           BUILD_CC variable for cross compiling (patch by Uchiyama Yasushi
7585           <uch@nop.or.jp>)
7586
7587 981212
7588         + add environment variable NCURSES_NO_SETBUF to allow disabling the
7589           setbuf feature, for testing purposes.
7590         + correct ifdef's for termcap.h versus term.h that suppress redundant
7591           declarations of prototypes (reported by H.J.Lu).
7592         + modify Makefile.os2 to add linker flags which allow multiple copies
7593           of an application to coexist (reported by Ilya Zakharevich).
7594         + update Makefile.glibc and associated configure script so that ncurses
7595           builds as a glibc add-on with the new directory configuration
7596           (reported by H.J.Lu).
7597
7598 981205
7599         + modify gen_reps() function in gen.c to work properly on SunOS
7600           (sparc), which is a left-to-right architecture.
7601         + modify relative_move and tputs to avoid an interaction with the
7602           BSD-style padding.  The relative_move function could produce a string
7603           to replace on the screen which began with a numeric character, which
7604           was then interpreted by tputs as padding.  Now relative_move will not
7605           generate a string with a leading digit in that case (overwrite).
7606           Also, tputs will only interpret padding if the string begins with a
7607           digit; as coded it permitted a string to begin with a decimal point
7608           or asterisk (reported by Larry Virden).
7609         > patches by Juergen Pfeifer:
7610         + fix a typo in m_driver.c mouse handling and improves the error
7611           handling.
7612         + fix broken mouse handling in the Ada95 binding
7613         + make the Ada95 sample application menus work with the new menu mouse
7614           support
7615         + improve the mouse handling introduced by Ilya; it now handles menus
7616           with spacing.
7617         + repair a minor bug in the menu_driver code discovered during this
7618           rework.
7619         + add new function wmouse_trafo() to hide implementation details of
7620           _yoffset member of WINDOW struct needed for mouse coordinate
7621           transformation.
7622
7623 981128
7624         + modify Ada95/gen/gen.c to avoid using return-value of sprintf, since
7625           some older implementations (e.g., SunOS 4.x) return the buffer
7626           address rather than its length.
7627         > patch by Rick Ohnemus:
7628         + modify demo.cc to get it to compile with newer versions of egcs.
7629         + trim a space that appears at the end of the table preprocessor lines
7630           ('\" t).  This space prevents some versions of man from displaying
7631           the pages - changed to remove all trailing whitespace (TD)
7632         + finally, 'make clean' does not remove panel objects.
7633         > patches by Ilya Zakharevich:
7634         + allow remapping of OS/2 mouse buttons using environment variable
7635           MOUSE_BUTTONS_123 with the default value 132.
7636         + add mouse support to ncurses menus.
7637
7638 981121
7639         + modify misc/makedef.cmd to report old-style .def file symbols, and to
7640           generate the .def files sorted by increasing names rather than the
7641           reverse.
7642         + add misc/*.ref which are J.J.G.Ripoll's dll definition files (renamed
7643           from misc/*.old), and updated based on the entrypoint coding he used
7644           for an older version of ncurses.
7645         + add README.emx, to document how to build on OS/2 EMX.
7646         + updates for config.guess, config.sub from Lynx
7647         > patches by Ilya Zakharevich:
7648         + minor fixes for mouse handling mode:
7649           a) Do not initialize mouse if the request is to have no mouse;
7650           b) Allow switching of OS/2 VIO mouse on and off.
7651         + modify Makefile.os2 to support alternative means of generating
7652           configure script, by translating Unix script with Perl.
7653         > patches by Juergen Pfeifer:
7654         + Updates MANIFEST to reflect changes in source structure
7655         + Eliminates a problem introduced with my last patch for the C++
7656           binding in the panels code.  It removes the update() call done in the
7657           panel destructor.
7658         + Changes in the Ada95 binding to better support systems where
7659           sizeof(chtype)!=sizeof(int) (e.g.  DEC Alpha).
7660
7661 981114
7662         + modify install-script for manpages to skip over .orig and .rej files
7663           (request by Larry Virden).
7664         > patches/discussion by Alexander V Lukyanov:
7665         + move base-library sources into ncurses/base and tty (serial terminal)
7666           sources into ncurses/tty, as part of Alexander V Lukyanov's proposed
7667           changes to ncurses library.
7668         + copy _tracemouse() into ncurses.c so that lib_tracemse.c need not
7669           be linked into the normal ncurses library.
7670         + move macro winch to a function, to hide details of struct ldat
7671         > patches by Juergen Pfeifer:
7672         + fix a potential compile problem in cursesw.cc
7673         + some Ada95 cosmetics
7674         + fix a gen.c problem when compiling on 64-Bit machines
7675         + fix Ada95/gen/Makefile.in "-L" linker switch
7676         + modify Ada95 makefiles to use the INSTALL_PREFIX setting.
7677
7678 981107
7679         + ifdef'd out lib_freeall.c when not configured.
7680         + rename _tracebits() to _nc_tracebits().
7681         + move terminfo-library sources into ncurses/tinfo, and trace-support
7682           functions into ncurses/trace as part of Alexander V Lukyanov's
7683           proposed changes to ncurses library.
7684         + modify generated term.h to always specify its own definitions for
7685           HAVE_TERMIOS_H, etc., to guard against inclusion by programs with
7686           broken configure scripts.
7687
7688 981031
7689         + modify terminfo parsing to accept octal and hexadecimal constants,
7690           like Solaris.
7691         + remove an autoconf 2.10 artifact from the configure script's check
7692           for "-g" compiler options.  (Though harmless, this confused someone
7693           at Debian, who recently issued a patch that results in the opposite
7694           effect).
7695         + add configure option --with-ada-compiler to accommodate installations
7696           that do not use gcc as the driver for GNAT (patch by Juergen
7697           Pfeifer).
7698
7699 981017
7700         + ensure ./man exists in configure script, needed when configuring
7701           with --srcdir option.
7702         + modify infocmp "-r" option to remove limit on formatted termcap
7703           output, which makes it more like Solaris' version.
7704         + modify captoinfo to treat no-argument case more like Solaris'
7705           version, which uses the contents of $TERMCAP as the entry to format.
7706         + modify mk-2nd.awk to handle subdirectories, e.g., ncurses/tty
7707           (patch by Alexander V Lukyanov).
7708
7709 981010
7710         + modify --with-terminfo-dirs option so that the default value is the
7711           ${datadir} value, unless $TERMINFO_DIRS is already set.  This gets
7712           rid of a hardcoded list of candidate directories in the configure
7713           script.
7714         + add some error-checking to _nc_read_file_entry() to ensure that
7715           strings are properly terminated (Todd C Miller).
7716         + rename manpage file curs_scr_dmp.3x to curs_scr_dump.3x, to
7717           correspond with contents (reported by Neil Zanella
7718           <nzanella@cs.mun.ca>).
7719         + remove redundant configure check for C++ which did not work when $CXX
7720           was specified with a full pathname (reported by Andreas Jaeger).
7721         + corrected bcopy/memmove check; the macro was not standalone.
7722
7723 981003
7724         + remove unnecessary portion of OS/2 EMX mouse change from
7725           check_pending() (reported by Alexander V Lukyanov).
7726
7727 980926
7728         + implement mouse support for OS/2 EMX (adapted from patch against
7729           4.2(?) by Ilya Zakharevich).
7730         + add configure-check for bcopy/memmove, for 980919 changes to hashmap.
7731         + merge Data General terminfo from Hasufin <hasufin@vidnet.net> - TD
7732         + merge AIX 3.2.5 terminfo descriptions for IBM terminals, replaces
7733           some older entries - TD
7734         + modify tic to compile into %'char' form in preference to %{number},
7735           since that is a little more efficient.
7736         + minor correction to infocmp to avoid displaying "difference" between
7737           two capabilities that are rendered in equivalent forms.
7738         + add "-g" option to tic/infocmp to force character constants to be
7739           displayed in quoted form.  Otherwise their decimal values are shown.
7740         + modify setupterm so that cancelled strings are treated the same as
7741           absent strings, cancelled and absent booleans false (does not affect
7742           tic, infocmp).
7743         + modify tic, infocmp to discard redundant i3, r3 strings when output
7744           to termcap format.
7745         > patch by Alexander V Lukyanov:
7746         + improve performance of tparm, now it takes 19% instead of 25% when
7747           profiling worm.
7748         + rename maxlen/minlen to prec/width for better readability.
7749         + use format string for printing strings.
7750         + use len argument correctly in save_text, and pass it to save_number.
7751
7752 980919
7753         + make test_progs compile (but hashmap does not function).
7754         + correct NC_BUFFERED macro, used in lib_mvcur test-driver, modify
7755           associated logic to avoid freeing the SP->_setbuf data.
7756         + add modules home_terminfo and getenv_num to libtinfo.
7757         + move write_entry to libtinfo, to work with termcap caching.
7758         + minor fixes to blue.c to build with atac.
7759         + remove softscroll.c module; no longer needed for testing.
7760         > patches by Todd C Miller:
7761         + use strtol(3) instead of atoi(3) when parsing env variables so we can
7762           detect a bogus (non-numeric) value.
7763         + check for terminal names > MAX_NAME_SIZE in a few more places when
7764           dealing with env variables again.
7765         + fix a MAX_NAME_SIZE that should be MAX_NAME_SIZE+1
7766         + use sizeof instead of strlen(3) on PRIVATE_INFO since it is a fixed
7767           string #define (compile time vs runtime).
7768         + when setting errno to ENOMEM, set it right before the return, not
7769           before code that could, possibly, set errno to a different value.
7770         > patches by Alexander V Lukyanov:
7771         + use default background in update_cost_from_blank()
7772         + disable scroll-hints when hashmap is configured.
7773         + improve integration of hashmap scrolling code, by adding oldhash and
7774           newhash data to SP struct.
7775         + invoke del_curterm from delscreen.
7776         + modify del_curterm to set cur_term to null if it matches the
7777           function's parameter which is deleted.
7778         + modify lib_doupdate to prefer parm_ich to the enter_insert_mode and
7779           exit_insert_mode combination, adjusting InsCharCost to check
7780           enter_insert_mode, exit_insert_mode and insert_padding.  Add
7781           insert_padding in insert mode after each char.  This adds new costs
7782           to the SP struct.
7783
7784 980912
7785         + modify test-driver in lib_mvcur.s to use _nc_setbuffer, for
7786           consistent treatment.
7787         + modify ncurses to restore output to unbuffered on endwin, and resume
7788           buffering in refresh (see lib_set_term.c and NC_BUFFERED macro).
7789         + corrected HTML version numbers (according to the W3C validator, they
7790           never were HTML 2.0-compliant, but are acceptable 3.0).
7791
7792 980905
7793         + modify MKterminfo.sh to generate terminfo.5 with tables sorted by
7794           capability name, as in SVr4.
7795         + modified term.h, termcap.h headers to avoid redundant declarations.
7796         + change 'u_int' type in tset.c to unsigned, making this compile on
7797           Sequent PRX 4.1 (reported by Michael Sterrett <msterret@coat.com>).
7798
7799 980829
7800         + corrections to mailing addresses, and moving the magic line that
7801           causes the man program to invoke tbl to the first line of each
7802           manpage (patch by Rick Ohnemus <rick@ecompcon.com>).
7803         + add Makefile.os2 and supporting scripts to generate dll's on OS/2 EMX
7804           (from J.J.G.Ripoll, with further integration by TD).
7805         + correct a typo in icl6404 terminfo entry.
7806         + add xtermm and xtermc terminfo entries.
7807         > from esr's terminfo version:
7808         + Added Francesco Potorti's tuned Wyse 99 entries.
7809         + dtterm enacs (from Alexander V Lukyanov).
7810         + Add ncsa-ns, ncsa-m-ns and ncsa-m entries from esr version.
7811
7812 980822
7813         + document AT&T acs characters in terminfo.5 manpage.
7814         + use EMX _scrsize() function if terminfo and environment do not
7815           declare the screen size (reported by Ilya Zakharevich
7816           <ilya@math.ohio-state.edu>).
7817         + remove spurious '\' characters from eterm and osborne terminfo
7818           entries (prompted by an old Debian bug report).
7819         + correct reversed malloc/realloc calls in _nc_doalloc (reported by
7820           Hans-Joachim Widmaier <hjwidmai@foxboro.com>).
7821         + correct misplaced parenthesis which caused file-descriptor from
7822           opening termcap to be lost, from 980725 changes (reported by Andreas
7823           Jaeger).
7824
7825 980815
7826         + modify lib_setup.c to eliminate unneeded include of <sys/ioctl.h>
7827           when termios is not used (patch by Todd C Miller).
7828         + add function _nc_doalloc, to ensure that failed realloc calls do not
7829           leak memory (reported by Todd C Miller).
7830         + improved ncsa-telnet terminfo entry.
7831
7832 980809
7833         + correct missing braces around a trace statement in read_entry.c,
7834           from 980808 (reported by Kim DeVaughn <kimdv@best.com> and Liviu
7835           Daia).
7836
7837 980808
7838         + fix missing include <errno.h> in ditto.c (reported by Bernhard
7839           Rosenkraenzer <bero@k5.sucks.eu.org>)
7840         + add NCSA telnet terminfo entries from Francesco Potorti
7841           <F.Potorti@cnuce.cnr.it>, from Debian bug reports.
7842         + make handling of $LINES and $COLUMNS variables more compatible with
7843           Solaris by allowing them to individually override the window size
7844           as obtained via ioctl.
7845
7846 980801
7847         + modify lib_vidattr.c to allow for terminal types (e.g., xterm-color)
7848           which may reset all attributes in the 'op' capability, so that colors
7849           are set before turning on bold and other attributes, but still after
7850           turning attributes off.
7851         + add 'ditto.c' to test directory to illustrate use of newterm for
7852           initializing multiple screens.
7853         + modify _nc_write_entry() to recover from failed attempt to link alias
7854           for a terminfo on a filesystem which does not preserve character case
7855           (reported by Peter L Jordan <PJordan@chla.usc.edu>).
7856
7857 980725
7858         + updated versions of config.guess and config.sub based on automake 1.3
7859         + change name-comparisons in lib_termcap to compare no more than 2
7860           characters (gleaned from Debian distribution of 1.9.9g-8.8, verified
7861           with Solaris curses).
7862         + fix typo in curs_insstr.3x (patch by Todd C Miller)
7863         + use 'access()' to check if ncurses library should be permitted to
7864           open or modify files with fopen/open/link/unlink/remove calls, in
7865           case the calling application is running in setuid mode (request by
7866           Cristian Gafton <gafton@redhat.com>, responding to Duncan Simpson
7867           <dps@io.stargate.co.uk>).
7868         + arm100 terminfo entries from Dave Millen <dmill@globalnet.co.uk>).
7869         + qnxt2 and minitel terminfo entries from esr's version.
7870
7871 980718
7872         + use -R option with ldconfig on FreeBSD because otherwise it resets
7873           the search path to /usr/lib (reported by Dan Nelson).
7874         + add -soname option when building shared libraries on OpenBSD 2.x
7875           (request by QingLong).
7876         + add configure options --with-manpage-format and
7877           --with-manpage-renames (request by QingLong).
7878         + correct conversion of CANCELLED_NUMERIC in write_object(), which was
7879           omitting the high-order byte, producing a 254 in the compiled
7880           terminfo.
7881         + modify return-values of tgetflag, tgetnum, tgetstr, tigetflag,
7882           tigetnum and tigetstr to be compatible with Solaris (gleaned from
7883           Debian distribution of 1.9.9g-8.8).
7884         + modify _nc_syserr_abort to abort only when compiled for debugging,
7885           otherwise simply exit with an error.
7886
7887 980711
7888         + modify Ada95 'gen' program to use appropriate library suffix (e.g.,
7889           "_g" for a debug build).
7890         + update Ada95 'make clean' rule to include generics .ali files
7891         + add a configure test to ensure that if GNAT is found, that it can
7892           compile/link working Ada95 program.
7893         + flush output in beep and flash functions, fixing a problem with
7894           getstr (patch by Alexander V Lukyanov)
7895         + fix egcs 1.0.2 warning for etip.h (patch by Chris Johns).
7896         + correct ifdef/brace nesting in lib_sprintf.c (patch by Bernhard
7897           Rosenkraenzer <bero@Pool.Informatik.RWTH-Aachen.DE>).
7898         + correct typo in wattr_get macro from 980509 fixes (patch by Dan
7899           Nelson).
7900
7901 980704
7902         + merge changes from current XFree86 xterm terminfo descriptions.
7903         + add configure option '--without-ada'.
7904         + add a smart-default for termcap 'ac' to terminfo 'acs_chars' which
7905           corresponds to vt100.
7906         + change translation for termcap 'rs' to terminfo 'rs2', which is
7907           the documented equivalent, rather than 'rs1'.
7908
7909 980627
7910         + slow 'worm' down a little, for very fast machines.
7911         + corrected firstchar/lastchar computation in lib_hline.c
7912         + simplify some expressions with CHANGED_CELL, CHANGED_RANGE and
7913           CHANGED_TO_EOL macros.
7914         + modify init_pair so that if a color-pair is reinitialized, we will
7915           repaint the areas of the screen whose color changes, like SVr4 curses
7916           (reported by Christian Maurer <maurer@inf.fu-berlin.de>).
7917         + modify getsyx/setsyx macros to comply with SVr4 man-page which
7918           says that leaveok() affects their behavior (report by Darryl Miles,
7919           patch by Alexander V Lukyanov).
7920
7921 980620
7922         + review terminfo.5 against Solaris 2.6 curses version, corrected
7923           several minor errors/omissions.
7924         + implement tparm %l format.
7925         + implement tparm printf-style width and precision for %s, %d, %x, %o
7926           as per XSI.
7927         + implement tparm dynamic variables (reported by Xiaodan Tang).
7928
7929 980613
7930         + update man-page for for wattr_set, wattr_get (cf:  980509)
7931         + correct limits in hashtest, which would cause nonprinting characters
7932           to be written to large screens.
7933         + correct configure script, when --without-cxx was specified:  the
7934           wrong variable was used for cf_cv_type_of_bool.  Compilers up to gcc
7935           2.8 tolerated the missing 'int'.
7936         + remove the hardcoded name "gcc" for the GNU Ada compiler.  The
7937           compiler's name might be something like "egcs" (patch by Juergen
7938           Pfeifer).
7939         + correct curs_addch.3x, which implied that echochar could directly
7940           display control characters (patch by Alexander V Lukyanov).
7941         + fix typos in ncurses-intro.html (patch by Sidik Isani
7942           <isani@cfht.hawaii.edu>)
7943
7944 980606
7945         + add configure test for conflicting use of exception in math.h and
7946           other headers.
7947         + minor optimization to 'hash()' function in hashmap.c, reduces its
7948           time by 10%.
7949         + correct form of LD_SHARED_OPTS for HP-UX 10.x (patch by Tim Mooney).
7950         + fix missing quotes for 'print' in MKunctrl.awk script (reported by
7951           Mihai Budiu <mihaib@gs41.sp.cs.cmu.edu>).
7952         > patch by Alexander V Lukyanov:
7953         + correct problem on Solaris (with poll() function) where getch could
7954           hang indefinitely even if timeout(x) was called.  This turned out to
7955           be because milliseconds was not updated before 'goto retry' in
7956           _nc_timed_wait.
7957         + simplified the function _nc_timed_wait and fixed another bug, which
7958           was the assumption of !GOOD_SELECT && HAVE_GETTIMEOFDAY in *timeleft
7959           assignment.
7960         + removed the cycle on EINTR, as it seems to be useless.
7961
7962 980530
7963         + add makefile-rule for test/keynames
7964         + modify run_tic.sh and shlib to ensure that user's .profile does not
7965           override the $PATH used to run tic (patch by Tim Mooney).
7966         + restore LD_SHARED_OPTS to $(LD_SHARED_FLAGS) when linking programs,
7967           needed for HP-UX shared-library path (recommended by Tim Mooney).
7968         + remove special case of HP-UX -L options, use +b options to embed
7969           $(libdir) in the shared libraries (recommended by Tim Mooney).
7970         + add checks for some possible buffer overflows and unchecked
7971           malloc/realloc/calloc/strdup return values (patch by Todd C Miller
7972           <Todd.Miller@courtesan.com>)
7973
7974 980523
7975         + correct maxx/maxy expression for num_columns/num_lines in derwin
7976           (patch by Alexander V Lukyanov).
7977         + add /usr/share/lib/terminfo and /usr/lib/terminfo as compatibilty
7978           fallbacks to _nc_read_entry(), along with --with-terminfo-dirs
7979           configure option (suggested by Mike Hopkirk).
7980         + modify config.guess to recognize Unixware 2.1 and 7 (patch by Mike
7981           Hopkirk <hops@sco.com>).
7982         + suppress definition of CC_SHARED_OPTS in LDFLAGS_SHARED in c++
7983           Makefile.in, since this conflicts when g++ is used with HP-UX
7984           compiler (reported by Tim Mooney).
7985         + parenthesize 'strcpy' calls in c++ binding to workaround redefinition
7986           in some C++ implementations (reported by several people running
7987           egcs with glibc 2.0.93, analysis by Andreas Jaeger.
7988
7989 980516
7990         + modify write_entry.c so that it will not attempt to link aliases
7991           with embedded '/', but give only a warning.
7992         + put -L$(libdir) first when linking programs, except for HP-UX.
7993         + modify comp_scan.c to handle SVr4 terminfo description for att477,
7994           which contains a colon in the description field.
7995         + modify configure script to support SCO osr5.0.5 shared libraries,
7996           from comp.unix.sco.programmer newsgroup item (Mike Hopkirk).
7997         + eliminate extra GoTo call in lib_doupdate.c (patch by Alexander V.
7998           Lukyanov).
7999         + minor adjustments of const/NCURSES_CONST from IRIX compile.
8000         + add updates based on esr's 980509 version of terminfo.src.
8001
8002 980509
8003         + correct macros for wattr_set, wattr_get, separate wattrset macro from
8004           these to preserve behavior that allows attributes to be combined with
8005           color pair numbers.
8006         + add configure option --enable-no-padding, to allow environment
8007           variable $NCURSES_NO_PADDING to eliminate non-mandatory padding,
8008           thereby making terminal emulators (e.g., for vt100) a little more
8009           efficient (request by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
8010         + modify configure script to embed ABI in shared libraries for HP-UX
8011           10.x (detailed request by Tim Mooney).
8012         + add test/example of the 'filter()' function.
8013         + add nxterm and xterm-color terminfo description (request by Cristian
8014           Gafton <gafton@redhat.com>).
8015         + modify rxvt terminfo description to clear alternate screen before
8016           switching back to normal screen, for compatibility with applications
8017           which use xterm (reported by Manoj Kasichainula <manojk@io.com>).
8018         + modify linux terminfo description to reset color palette (reported
8019           by Telford Tendys <telford@eng.uts.edu.au>).
8020         + correction to doupdate, for case where terminal does not support
8021           insert/delete character.  The logic did not check that there was a
8022           difference in alignment of changes to old/new screens before
8023           repainting the whole non-blank portion of the line.  Modified to fall
8024           through into logic that reduces by the portion which does not differ
8025           (reported by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>).
8026         + minor performance improvement to wnoutrefresh by moving some
8027           comparisons out of inner loop.
8028
8029 980425
8030         + modify configure script to substitute NCURSES_CONST in curses.h
8031         + updated terminfo entries for xterm-xf86-v40, xterm-16color,
8032           xterm-8bit to correspond to XFree86 3.9Ag.
8033         + remove restriction that forces ncurses to use setaf/setab if the
8034           number of colors is greater than 8.  (see 970524 for xterm-16color).
8035         + change order of -L options (so that $(libdir) is searched first) when
8036           linking tic and other programs, to workaround HP's linker.
8037           Otherwise, the -L../lib is embedded when linking against shared
8038           libraries and the installed program does not run (reported by Ralf
8039           Hildebrandt).
8040         + modify configuration of shared libraries on Digital Unix so that
8041           versioning is embedded in the library, rather than implied by
8042           links (patch by Tim Mooney).
8043
8044 980418
8045         + modify etip.h to avoid conflict with math.h on HP-UX 9.03 with gcc
8046           2.8.1 which redefines 'exception' (reported by Ralf Hildebrandt
8047           <R.Hildebrandt@tu-bs.de>).
8048         + correct configure tests in CF_SHARED_OPTS which used $CC value to
8049           check for gcc, rather than autoconf's $GCC value.  This did not
8050           work properly if the full pathname of the compiler were given
8051           (reported by Michael Yount <yount@csf.Colorado.edu>).
8052         + revise check for compiler options to force ANSI mode since repeating
8053           an option such as -Aa causes HP's compiler to fail on its own headers
8054           (reported by Clint Olsen <olsenc@ichips.intel.com>).
8055
8056 980411
8057         + ifdef'd has_key() and mcprint() as extended functions.
8058         + modified several prototypes to correspond with 1997 version of
8059           X/Open Curses (affects ABI since developers have used attr_get).
8060         + remove spurious trailing blanks in glibc addon-scripts (patch by
8061           H.J.Lu).
8062         + insert a few braces at locations where gcc-2.8.x asks to use them to
8063           avoid ambigous else's, use -fpic rather than -fPIC for Linux (patch
8064           by Juergen Pfeifer).
8065
8066 980404
8067         + split SHLIB_LIST into SHLIB_DIRS/SHLIB_LIST to keep -L options
8068           before -l to accommodate Solaris' linker (reported by Larry Virden).
8069
8070 980328
8071         + modify lib_color.c to eliminate dependency on orig_colors and
8072           orig_pair, since SVr4 curses does not require these either, but
8073           uses them when they are available.
8074         + add detailed usage-message to infocmp.
8075         + correct a typo in att6386 entry (a "%?" which was "?").
8076         + add -f option to infocmp and tic, which formats the terminfo
8077           if/then/else/endif so that they are readable (with newlines and
8078           tabs).
8079         + fixes for glibc addon scripts (patch by H.J.Lu).
8080
8081 980321
8082         + revise configure macro CF_SPEED_TYPE so that termcap.h has speed_t
8083           declared (from Adam J Richter <adam@yggdrasil.com>)
8084         + remove spurious curs_set() call from leaveok() (J T Conklin).
8085         + corrected handling leaveok() in doupdate() (patch by Alexander V.
8086           Lukyanov).
8087         + improved version of wredrawln (patch by Alexander V. Lukyanov).
8088         + correct c++/Makefile.in so install target do not have embedded ../lib
8089           to confuse it (patch by Thomas Graf <graf@essi.fr>).
8090         + add warning to preinstall rule which checks if the installer would
8091           overwrite a curses.h or termcap.h that is not derived from ncurses.
8092           (The recommended configuration for developers who need both is to
8093           use --disable-overwrite).
8094         + modify preinstall rule in top-level Makefile to avoid implicit
8095           use of 'sh', to accommodate Ultrix 4.4 (reported by Joao Palhoto
8096           Matos <jmatos@math.ist.utl.pt>, patch by Thomas Esser
8097           <te@informatik.uni-hannover.de>)
8098         + refine ifdef's for TRACE so that libncurses has fewer dependencies
8099           on libtinfo when TRACE is disabled.
8100         + modify configure script so that if the --with-termlib option is used
8101           to generate a separate terminfo library, we chain it to the ncurses
8102           library with a "-l" option (reported by Darryl Miles and Ian T.
8103           Zimmerman).
8104
8105 980314
8106         + correct limits and window in wredrawln function (reported/analysis by
8107           Alexander V. Lukyanov).
8108         + correct sed expression in configure script for --with-fallback
8109           option (patch by Jesse Thilo).
8110         + correct some places in configure script where $enableval was used
8111           rather than $withval (patch by Darryl Miles <dlm@g7led.demon.co.uk>).
8112         + modify some man-pages so no '.' or '..' falls between TH and SH
8113           macros, to accommodate man_db program (reported by Ian T. Zimmerman
8114           <itz@rahul.net>).
8115         + terminfo.src 10.2.1 downloaded from ESR's webpage (ESR).
8116         > several changes by Juergen Pfeifer:
8117         + add copyright notices (and rcs id's) on remaining man-pages.
8118         + corrected prototypes for slk_* functions, using chtype rather than
8119           attr_t.
8120         + implemented the wcolor_set() and slk_color() functions
8121         + the slk_attr_{set,off,on} functions need an additional void*
8122           parameter according to XSI.
8123         + fix the C++ and Ada95 binding as well as the man pages to
8124           reflect above enhancements.
8125
8126 980307
8127         + use 'stat()' rather than 'access()' in toe.c to check for the
8128           existence of $HOME/.terminfo, since it may be a file.
8129         + suppress configure CF_CXX_LIBRARY check if we are not using g++
8130           2.7.x, since this is not needed with g++ 2.8 or egcs (patch by
8131           Juergen Pfeifer).
8132         + turn on hashmap scrolling code by default, intend to remedy defects
8133           by 4.3 release.
8134         + minor corrections to terminfo.src changelog.
8135
8136 980302  4.2 release for upload to prep.ai.mit.edu
8137         + correct Florian's email address in ncurses-intro.html
8138         + terminfo.src 10.2.0 (ESR).
8139
8140 980228  pre-release
8141         + add linux-koi8r replace linux-koi8, which is not KOI8 (patch by
8142           QingLong <qinglong@Bolizm.ihep.su>).
8143         + minor documentation fixes (patch by Juergen Pfeifer).
8144         + add setlocale() call to ncurses.c (reported by Claes G. Lindblad
8145           <claesg@algonet.se>).
8146         + correct sign-extension in lib_insstr.c (reported by Sotiris
8147           Vassilopoulos <svas@leon.nrcps.ariadne-t.gr>)
8148
8149 980221  pre-release
8150         + regenerated some documentation overlooked in 980214 patch
8151           (ncurses-intro.doc, curs_outopts.3x.html)
8152         + minor ifdef change to C++ binding to work with gcc 2.8.0 (patch by
8153           Juergen Pfeifer).
8154         + change maintainer's mailing address to florian@gnu.org, change
8155           tentative mailing list address to bug-ncurses-request@gnu.org (patch
8156           by Florian La Roche).
8157         + add definition of $(REL_VERSION) to c++/Makefile.in (reported by Gran
8158           Hasse <gh@raditex.se>).
8159         + restore version numbers to Ada95 binding, accidentally deleted by
8160           copyright patch (patch by Juergen Pfeifer).
8161
8162 980214  pre-release
8163         + remove ncurses.lsm from MANIFEST so that it won't be used in FSF
8164           distributions, though it is retained in development.
8165         + correct scaling of milliseconds to nanoseconds in lib_napms.c (patch
8166           by Jeremy Buhler).
8167         + update mailing-list information (bug-ncurses@gnu.org).
8168         + update announcement for upcoming 4.2 release.
8169         + modify -lm test to check for 'sin()' rather than 'floor()'
8170         + remove spurious commas from terminfo.src descriptions.
8171         + change copyright notices to Free Software Foundation
8172
8173 980207
8174         + minor fixes for autoconf macros CF_ERRNO, CF_HELP_MESSAGE and
8175           CF_SIZECHANGE
8176         + modify Makefile.glibc so that $(objpfx) is defined (H.J.Lu).
8177         + ifdef-out true-return from _nc_mouse_inline() which depends on
8178           merge of QNX patch (pending 4.2 release).
8179         > patch to split off seldom-used modules in ncurses (J T Conklin):
8180           This reduces size by up to 2.6kb.
8181         + move functionality of _nc_usleep into napms, add configuration case
8182           for nanosleep().
8183         + moved wchgat() from lib_addch.c to lib_chgat.c
8184         + moved clearok(), immedok(), leaveok(), and scrollok() from
8185           lib_options.c to lib_clearok.c, lib_immedok.c, lib_leaveok.c and
8186           lib_scrollok.c.
8187         + moved napms() from lib_kernel.c to lib_napms.c
8188         + moved echo() and noecho() from lib_raw.c to lib_echo.c
8189         + moved nl() and nonl() from lib_raw.c to lib_nl.c
8190
8191 980131
8192         + corrected conversion in tclock.c (cf: 971018).
8193         + updates to Makefile.glibc and associated Linux configure script
8194           (patch by H.J.Lu).
8195         + workaround a quoting problem on SunOS with tar-copy.sh
8196         + correct init_pair() calls in worm.c to work when use_default_colors()
8197           is not available.
8198         + include <sys/types.h> in CF_SYS_TIME_SELECT to work with FreeBSD
8199           2.1.5
8200         + add ncv capability to FreeBSD console (cons25w), making reverse
8201           work with color.
8202         + correct sense of configure-test for sys/time.h inclusion with
8203           sys/select.h
8204         + fixes for Ada95/ada_include/Makefile.in to work with --srcdir option.
8205         + remove unused/obsolete test-program rules from progs/Makefile.in
8206           (the rules in ncurses/Makefile.in work).
8207         + remove shared-library loader flags from test/Makefile.in, etc.
8208         + simplify test/configure.in using new version of autoconf to create
8209           test/ncurses_cfg.h
8210         + suppress suffix rules in test/Makefile.in, provide explicit
8211           dependency to work with --srcdir option and less capable 'make'
8212           programs.
8213         > adapted from patch for QNX by Xiaodan Tang:
8214         + initialize %P and %g variables set/used in tparm, and also ensure
8215           that empty strings don't return a null result from tparam_internal
8216         + add QNX-specific prototype for vsscanf()
8217         + move initialization of SP->_keytry from init_keytry() to newterm() to
8218           avoid resetting it via a keyok() call by mouse_activate().
8219         + reorganized some functions in lib_mouse() to use case-statements.
8220         + remove sgr string from qnx terminfo entry since it is reported to
8221           turn off attributes inconsistently.
8222
8223 980124
8224         + add f/F/b/B commands to ncurses 'b' test to toggle colors, providing
8225           test for no_color_video.
8226         + adjusted emx.src to use no_color_video, now works with ncurses 'b'
8227           and 'k' tests.
8228         + implement no_color_video attribute, and as a special case, reverse
8229           colors when the reverse attribute cannot be combined with color.
8230         + check for empty string in $TERM variable (reported by Brett Michaels
8231           <brett@xylan.com>).
8232         > from reports by Fred Fish:
8233         + add configure-test for isascii
8234         + add configure-test for -lm library.
8235         + modify CF_BOOL_SIZE to check if C++ bool types are unsigned.
8236         > patches by J.J.G.Ripoll
8237         + add configure/makefile variables to support .exe extension on
8238           OS/2 EMX (requires additional autoconf patches).
8239         + explicitly initialize variables in lib_data.c to appease OS/2 linker
8240         > patches by Fred Fish <fnf@ninemoons.com>
8241         + misc/Makefile.in (install.data):  Avoid trying to install the CVS
8242           directory.
8243         + aclocal.m4 (install.includes):  Remove files in the include directory
8244           where we are going to install new ones, not the original source
8245           files.
8246         + misc/terminfo.src:  Add entry for "beterm", derived from termcap
8247           distributed with BeOS PR2 using captoinfo.
8248         + aclocal.m4: Wrap $cf_cv_type_of_bool with quotes (contains space)
8249         + aclocal.m4: Assume bool types are unsigned.
8250         + progs/infocmp.c: workaround mwcc 32k function data limit
8251
8252 980117
8253         + correct initialization of color-pair (cf: 970524) in xmas.c, which
8254           was using only one color-pair for all colors (reported by
8255           J.J.G.Ripoll).
8256         + add multithread options for objects build on EMX, for compatibility
8257           with XFree86.
8258         + split up an expression in MKlib_gen.sh to work around a problem on
8259           OS/2 EMX, with 'ash' (patch by J.J.G.Ripoll).
8260         + change terminfo entries xterm (xterm-xf86-v40), xterm-8bit rs1 to use
8261           hard reset.
8262         + rename terminfo entry xterm-xf86-v39t to xterm-xf86-v40
8263         + remove bold/underline from sun console entries since they're not
8264           implemented.
8265         + correct _tracef calls in _tracedump(), which did not separate format
8266           from parameters.
8267         + correct getopt string for tic "-o" option, and add it to man-page
8268           synopsis (reported by Darren Hiebert <darren@hmi.com>).
8269         + correct typo in panel/Makefile.in, reversed if-statement in scrolling
8270           optimization (Alexander V.  Lukyanov).
8271         + test for 'remove()', use 'unlink() if not found (patch by Philippe De
8272           Muyter <phdm@macqel.be>).
8273         > patches by Juergen Pfeifer:
8274         + Improve a feature of the forms driver.  For invisible fields
8275           (O_VISIBLE off) only the contents but not the attributes are cleared.
8276           We now clear both.  (Reported by Javier Kohan
8277           <jkohan@adan.fceia.unr.edu.ar>)
8278         + The man page form_field_opts.3x makes now clear, that invisible
8279           fields are also always inactive.
8280         + adjust ifdef's to compile the C++ binding with the just released
8281           gcc-2.8.0 c++ and the corresponding new C++ libraries.
8282
8283 980110
8284         + correct "?" command in ncurses.c; it was performing non-screen writes
8285           while the program was in screen mode.  (It "worked" in 1.9.9e because
8286           that version sets OPOST and OCRNL incorrectly).
8287         + return error from functions in lib_kernel, lib_raw and lib_ti if
8288           cur_term is null, or if underlying I/O fails.
8289         + amend change to tputs() so that it does not return an error if
8290           cur_term is null, since some applications depend on being able to use
8291           tputs without initializing the terminal (reported by Christian J.
8292           Robinson <infynity@cyberhighway.net>).
8293
8294 980103
8295         + add a copy of emx.src from J.J.G.Ripoll's OS/2 EMX version of ncurses
8296           1.9.9e, together with fixes/additions for the "ansi" terminal type.
8297         + add tic check for save/restore cursor if change_scroll_region is
8298           defined (reference: O'Reilly book).
8299         + modify read_termcap.c to handle EMX-style pathnames (reported by
8300           J.J.G.Ripoll).
8301         + modify lib_raw.c to use EMX's setmode (patch from J.J.G.Ripoll).
8302           Ripoll says EMX's curses does this.
8303         + modify _nc_tic_expand() to generate \0 rather than \200.
8304         + move/revise 'expand()' from dump_entry.c to ncurses library as
8305           _nc_tic_expand(), for use by tack.
8306         + decode \a as \007 for terminfo, as per XSI.
8307         + correct translation of terminfo "^@", to \200, like \0.
8308         + modify next_char() to treat <cr><lf> the same as <newline>, for
8309           cross-platform compatibility.
8310         + use new version of autoconf (971230) to work around limited
8311           environment on CLIX, due to the way autoconf builds --help message.
8312         > patch by Juergen Pfeifer:
8313         + check that the Ada95 binding runs against the correct version of
8314           ncurses.
8315         + insert constants about the library version into the main spec-file of
8316           the Ada95 binding.
8317
8318 971227
8319         + modify open/fopen calls to use binary mode, needed for EMX.
8320         + modify configure script to work with autoconf 2.10 mods for OS/2
8321           EMX (from J.J.G.Ripoll).
8322         + generated ncurses_cfg.h with patch (971222) to autoconf 2.12 which
8323           bypasses limited sed buffer length.
8324         > several changes from Juan Jose Garcia Ripoll <worm@arrakis.es>
8325           (J.J.G.Ripoll) to support OS/2 EMX:
8326         + add a _scrolling flag to SP, to set when we encounter a terminal
8327           that simply cannot scroll.
8328         + corrected logic in _nc_add_to_try(), by ensuring that strings with
8329           embedded \200 characters are matched.
8330         + don't assume the host has 'link()' function, for linking terminfo
8331           entries.
8332
8333 971220
8334         + if there's no ioctl's to support sigwinch handler, disable it.
8335         + add configure option --disable-ext-funcs to remove the extended
8336           functions from the build.
8337         + add configure option --with-termlib to generate the terminfo
8338           functions as a separate library.
8339         + add 'sources' rule to facilitate cross-compiling.
8340         + review/fix order of mostlyclean/clean/distclean rules.
8341         + modify install-rule for headers to first remove old header, in
8342           case there was a symbolic link that confuses the install script.
8343         + corrected substitution for NCURSES_CONST in term.h (cf: 971108)
8344         + add null pointer checks in wnoutrefresh(), overlap() (patch by
8345           Xiaodan Tang <xtang@qnx.com>)
8346         + correct tputs(), which could dereference a null cur_term if invoked
8347           before terminal is initialized (patch by Christopher Seawood
8348           <cls@seawood.org>)
8349         > patch by Juergen Pfeifer:
8350         + makes better use of "pragma Inline" in the Ada95 binding
8351         + resynchronizes the generated html manpages
8352
8353 971213
8354         + additional fixes for man-pages section-references
8355         + add (for debugging) a check for ich/ich1 conflict with smir/rmir
8356           to tic, etc.
8357         + remove hpa/vpa from rxvt terminal description because they are not
8358           implemented correctly, added sgr0.
8359         + change ncurses 's' to use raw mode, so ^Q works (reported by Rudolf
8360           Leitgeb <leitgeb@leland.stanford.edu>)
8361
8362 971206
8363         + modify protection when installing libraries to (normally) not
8364           executable.  HP-UX shared libraries are an exception.
8365         + add configure check for 'tack'.
8366         + implement script for renaming section-references in man-page install,
8367           for Debian configuration.
8368         + add validity-check for SP in trace code in baudrate() (reported by
8369           Daniel Weaver).
8370         > patch by Alexander V. Lukyanov (fixes to match sol25 curses)
8371         + modify 'overlay()' so that copy applies target window background to
8372           characters.
8373         + correct 'mvwin()' so that it does not clear the previous locations.
8374         + correct lib_acs.c so that 8-bit character is not sign expanded in
8375           case of wide characters in chtype.
8376         + correct control-char test in lib_addch.c for use with wide chars
8377         + use attribute in the chtype when adding a control character in
8378           lib_addch.c control char was added with current attribute
8379
8380 971129
8381         + save/restore errno in _tracef() function
8382         + change treatment of initialize_color to use a range of 0..1000
8383           (recommended by Daniel Weaver).
8384         + set umask in mkinstalldirs, fixing problems reported by users who
8385           have set root's umask to 077.
8386         + correct bug in tic that caused capabilities to be reprinted at the
8387           end of output when they had embedded comments.
8388         + rewrote wredrawln to correspond to XSI, and split-out since it is
8389           not often used (from report by Alexander V. Lukyanov, 970825)
8390         + rewrote Dan Nelson's change to make it portable, as well as to
8391           correct logic for handling backslashes.
8392         + add code to _nc_tgetent() to make it work more like a real tgetent().
8393           It removes all empty fields, and removes all but the first in a group
8394           of duplicate caps.  The code was pulled from the BSD libtermcap code
8395           in termcap.c (patch by Dan Nelson <dnelson@emsphone.com>
8396         + don't include --enable-widec in the --with-develop configure option,
8397           since it is not binary-compatible with 4.1 (noted by Alexander V.
8398           Lukyanov)
8399         > patch by Juergen Pfeifer:
8400         + further improvements of the usage of elaboration pragmas in the Ada95
8401           binding
8402         + enhanced Ada95 sample to use the user_data mechanism for panels.
8403         + a fix for the configuration script to make gnat-3.10 the required
8404           version.
8405         + resync of the html version of the manpages
8406
8407 971122
8408         > fixes/updates for terminfo.src:
8409         + add vt220-js, pilot, rbcomm, datapoint entries from esr's 27-jun-97
8410           version.
8411         + add hds200 description (Walter Skorski)
8412         + add EMX 0.9b descriptions
8413         + correct rmso/smso capabilities in wy30-mc and wy50-mc (Daniel Weaver)
8414         + rename xhpterm back to hpterm.
8415         > patch by Juergen Pfeifer:
8416         + Improves the usage of elaboration pragmas for the Ada95 binding.
8417         + Adds a translation of the test/rain.c into Ada95 to the samples.
8418           This has been contributed to the project by Laurent Pautet
8419           (pautet@gnat.com)
8420
8421 971115
8422         + increase MAX_NAME_SIZE to 512 to handle extremely long alias list
8423           in HP-UX terminfo.
8424         + correction & simplification of delay computation in tputs, based on
8425           comments from Daniel Weaver.
8426         + replace test for SCO with more precise header tests.
8427         + add configure test for unsigned literals, use in NCURSES_BITS macro.
8428         + comment-out the -PIC, etc., flags from c++, progs and test makefiles
8429           since they probably are not needed, and are less efficient (noted by
8430           Juergen Fluk)
8431         + add -L$(libdir) to loader options, after -L../lib so that loaders
8432           that record this information will tend to do the right thing if
8433           the programs are moved around after installing them (suggested by
8434           Juergen Fluk).
8435         + add -R option to loader options for programs for Solaris if the
8436           --enable-rpath option is specified for the libraries.
8437
8438 971112
8439         + correct installed filename for shared libraries on *BSD (reported by
8440           Juergen Fluk).
8441
8442 971108
8443         + cleanup logic for deciding when tputs() should call delay_output(),
8444           based on comments from Daniel Weaver.
8445         + modified tputs() to avoid use of float.
8446         + correct use of trailpad in tputs(), which used the wrong variable
8447           in call to delay_output().
8448         + correct inverted expression for null-count in delay_output()
8449           (analysis by Daniel Weaver).
8450         + apply --enable-rpath option to Solaris (requested by Larry Virden).
8451         + correct substitution of EXTRA_CFLAGS for gcc 2.6.3
8452         + correct check for error-return by _nc_tgetent(), which returns 0
8453           for success.
8454         + add configure test for BSD 4.4 cgetent() function, modify
8455           read_termcap.c to use the host's version of that if found, using the
8456           terminal database on FreeBSD (reported by Peter Wemm).
8457         + add u8, u9 strings to sun-il description for Daniel Weaver.
8458         + use NCURSES_CONST in panel's user-pointer.
8459         + modify edit_cfg.sh and MKterm.h.awk.in to substitute NCURSES_CONST
8460           so that will work on NeXT.
8461         + use _nc_set_screen() rather than assignments to SP to fix port to
8462           NeXT (reported by Francisco A. Tomei Torres).
8463
8464 971101
8465         + force mandatory padding in bell and flash_screen, as specified in
8466           XSI.
8467         + don't allow padding_baud_rate to override mandatory delays (reported
8468           by Daniel Weaver).
8469         + modify delay_output() to use _nc_timed_wait() if no baudrate has been
8470           defined, or if the cur_term pointer is not initialized.  XSI treats
8471           this as unspecified.  (requested by Daniel Weaver).
8472         + change getcap-cache ifdef's to eliminate unnecessary chdir/mkdir
8473           when that feature is not configured.
8474         + remove _nc_err_abort() calls when write_entry.c finds a directory but
8475           cannot write to it, e.g., when translating part/all of /etc/termcap
8476           (reported by Andreas Jaeger <aj@arthur.rhein-neckar.de>).
8477           (this dates back to 951102, in 1.9.7a).
8478         + minor ifdef fixes to compile with atac and glibc 2.0.5c
8479         + add check for -lgen when configuring regexpr.h
8480         + modify Solaris shared-library option "-d y" to "-dy" to workaround
8481           incompatibility of gcc 2.7.2 vs vendor's tools.
8482
8483 971026
8484         + correct ifdef's for struct winsize vs struct ttysize in lib_setup.c
8485           to compile on SCO.
8486         + remove dangling backslash in panel/Makefile.in
8487         + modify MKkeyname.awk to work with SCO's nawk, which dumps core in the
8488           length() function.
8489         + correct length of allocation in _nc_add_to_try(), to allow for
8490           trailing null.
8491         + correct logic in _nc_remove_key(), which was discarding too many
8492           nodes (patch by Alexander V. Lukyanov)
8493
8494 971025
8495         + add definition for $(REL_VERSION) to test/Makefile.in, so *BSD
8496           shared libraries link properly (see 970524).
8497         + modify Linux shared-library generation to include library
8498           dependencies (e.g., -lncurses and -lgpm) in the forms, menu and
8499           panel libraries (suggested by Juergen Pfeifer).
8500         + modify configure script to use config.guess and config.sub rather
8501           than uname, which is unreliable on some systems.
8502         + updated Makefile.glibc, test-built with glibc 2.0.5c
8503         + modify keyname() to return values consistent with SVr4 curses (patch
8504           by Juergen Fluk).
8505         > changes requested by Daniel Weaver:
8506         + modify delay_output() so that it uses the same output function as
8507           tputs() if called from that function.
8508         + move _baudrate from SCREEN to TERMINAL so that low-level use of
8509           tputs works when SP is not set.
8510         > patch by Juergen Pfeifer:
8511         + factor lib_menu and lib_form into smaller modules
8512         + clean up the interface between panel and SCREEN
8513         + minor changes to the Ada95 mouse support implemenation
8514         + minor bugfix in C++ binding to ripoff windows
8515         + fix a few Ada95 html documentation pages
8516
8517 971018
8518         + split-out lib_ungetch.c, make runtime link to resizeterm() to
8519           decouple those modules from lib_restart.c
8520         + add xterm-xf86-v39t description to terminfo.src
8521         + reset SP->_endwin in lib_tstp.c cleanup() function after calling
8522           endwin() to avoid unnecessary repainting if the application has
8523           established an atexit function, etc.  Encountered this problem in
8524           the c++ demo, whose destructors repaint the screen.
8525         + combine _nc_get_screensize() and resizeterm() calls as new function
8526           _nc_update_screensize().
8527         + minor fixes to allow compile with g++ (suggested by Nelson H. F.
8528           Beebe).
8529         + implement install-rules for Ada95 makefiles.
8530         + use screen_lines or MAXLINES as needed where LINES was coded,
8531           as well as screen_columns for COLS, in the ncurses library.
8532         > patch by Alexander V. Lukyanov:
8533         + modify logic for ripped-off lines to handle several SCREENs.
8534         > patch by Juergen Pfeifer:
8535         + factors lib_slk.c into some smaller modules
8536         + factors panel.c into some smaller modules
8537         + puts the static information about the current panel stack into the
8538           SCREEN structure to allow different panel stacks on different
8539           screens.
8540         + preliminary fix for an error adjusting LINES to account for
8541           ripped-off lines.
8542
8543 971011
8544         + move _nc_max_click_interval and other mouse interface items to SCREEN
8545           struct so that they are associated with a single terminal, and also
8546           save memory when the application does not need a mouse (roughly 3k vs
8547           0.5k on Linux).
8548         + modify mouseinterval() so that a negative parameter queries the
8549           click-interval without modifying it.
8550         + modify ncurses 'i' test to work with ncurses' apparent extension from
8551           SVr4, i.e., allows nocbreak+noecho (analysis by Alexander V.
8552           Lukyanov).
8553         + add configure options --with-ada-includes and --with-ada-objects,
8554           to drive Ada95 binding install (not yet implemented).
8555         + install C++ binding as -lncurses++ and associated headers with the
8556           other ncurses headers.
8557         + fix header uninstall if configure --srcdir is used.
8558         > minor interface changes to support 'tack' program -TD
8559           (request by Daniel Weaver <danw@znyx.com>).
8560         + export functions _nc_trans_string() and _nc_msec_cost().
8561         + add variable _nc_nulls_sent, to record the number of padding
8562           characters output in delay_output().
8563         + move tests for generic_type and hard_copy terminals in setupterm()
8564           to the end of that function so that the library will still be
8565           initialized, though not generally useful for curses programs.
8566         > patches by Alexander V. Lukyanov:
8567         + modify ClrBottom() to avoid using clr_eos if there is only one line
8568           to erase.
8569         + typo in configure --help.
8570         > patch by J T Conklin (with minor resync against Juergen's changes)
8571         + split-out lib_flash.c from lib_beep.c
8572         + split-out lib_hline.c and lib_vline.c from lib_box.c
8573         + split-out lib_wattron.c, lib_wattroff.c from lib_addch.c
8574
8575 971005
8576         > patch by Juergen Pfeifer:
8577         + correct source/target of c++/edit_cfg.sh
8578
8579 971004
8580         + add color, mouse support to kterm terminfo entry.
8581         + modify lib_mouse.c to recognize rxvt, kterm, color_xterm also as
8582           providing "xterm"-style mouse.
8583         + updated rxvt's terminfo description to correspond to 2.21b, with
8584           fixes for the acsc (the box1 capability is incorrect, ech1 does not
8585           work).
8586         + fix logic in parse_entry.c that discarded acsc when 'synthesizing'
8587           an entry from equivalents in XENIX or AIX.  This lets ncurses handle
8588           the distribution copy of rxvt's terminfo.
8589         + modify acsc capability for linux and linux-koi8 terminfo descriptions
8590           (from Pavel Roskin <pavel@absolute.spb.su>).
8591         + corrected definition in curses.h for ACS_LANTERN, which was 'I'
8592           rather than 'i' (see 970802).
8593         + updated terminfo.src with reformatted acsc entries, and repaired the
8594           trashed entries with spurious '\' characters that this exposed.
8595         + add logic to dump_entry.c to reformat acsc entries into canonical
8596           form (sorted, unique mapping).
8597         + add configure script to generate c++/etip.h
8598         + add configure --with-develop option, to enable by default most of the
8599           experimental options (requested by Alexander V. Lukyanov).
8600         + rename 'deinstall' to 'uninstall', following GNU convention
8601           (suggested by Alexander V. Lukyanov).
8602         > patches by Alexander V. Lukyanov:
8603         + modify tactics 2 and 5 in onscreen_mvcur(), to allow them on the last
8604           line of the screen, since carriage return will not cause a newline.
8605         + remove clause from PutCharLR() that would try to use
8606           eat_newline_glitch since that apparently does not work on some
8607           terminals (e.g., M$ telnet).
8608         + correct a limit check in scroll_csr_backward()
8609         > patches by Juergen Pfeifer:
8610         + adds dummy implementations of methods above() and below() to the
8611           NCursesPanel class.
8612         + fixes missing returncode in NCursesWindow::ripoffline()
8613         + fixes missing returncode in TestApplication::run() in demo.cc
8614         + We should at least give a comment in etip.h why it is currently a
8615           problem to install the C++ binding somewhere
8616         + makes the WINDOW* argument of wenclose() a const.
8617         + modifies several of the routines in lib_adabind.c to use a const
8618           WINDOW* argument.
8619
8620 970927
8621         + add 'deinstall' rules.
8622         + use explicit assignments in configure --without-progs option to
8623           work around autoconf bug which doesn't always set $withval.
8624         + check for ldconfig, don't try to run it if not found.
8625         + implement simple/unoptimized case in lib_doupdate.c to handle
8626           display with magic cookie glitch, tested with ncurses.c program.
8627         + correct missing _tracef in getmouse(), to balance the returnCode
8628           macro.
8629         + simplify show_attr() in ncurses.c using termattrs().
8630         > patches by Juergen Pfeifer:
8631         + provides missing inlines for mvw[hv]line in cursesw.h of the C++
8632           binding
8633         + fixes a typo in a comment of frm_driver.c
8634         + Enhances Ada95 Makefiles to fulfill the requirement of GNAT-3.10 that
8635           generics should be compiled.  Proper fixes to the configuration
8636           scripts are also provided.
8637
8638 970920
8639         + several modifications to the configure script (requested by Ward
8640           Horner):
8641           + add configure options --without-progs, to suppress the build of the
8642             utility programs, e.g., for cross-compiling.
8643           + add $(HOSTCCFLAGS) and $(HOSTLDFLAGS) symbols to ncurses
8644             Makefile.in, to simplify setup for cross compiling.
8645           + add logic in configure script to recognize "--target=vxworks", and
8646             generate load/install actions for VxWorks objects.
8647         + move typedef for sigaction_t into SigAction.h to work around problem
8648           generating lint library.
8649         + modify fty_regex.c to reflect renaming of ifdef's for regular
8650           expressions.
8651         + simplify ifdef in lib_setup.c for TIOCGWINSZ since that symbol may
8652           reside in <sys/ioctl.h>.
8653         + merge testcurs.c with version from PDCurses 2.3, clarifying some of
8654           the more obscure tests, which rely upon color.
8655         + use macros getbegyx() and getmaxyx() in newdemo.c and testcurs.c
8656         + modify ncurses.c to use getbegyx() and getmaxyx() macros to cover up
8657           implementation difference wrt SVr4 curses, allow 's' test to work.
8658         + add missing endwin() to testscanw.c program (reported by Fausto
8659           Saporito <fausap@itb.it>).
8660         + fixes/updates for Makefile.glibc and related files under sysdeps
8661           (patch by H.J.Lu).
8662         > patches by Juergen Pfeifer:
8663         + add checks for null pointers, especially WINDOW's throughout the
8664           ncurses library.
8665         + solve a problem with wrong calculation of panel overlapping (reported
8666           by Ward Horner):
8667           + make sure that a panel's window isn't a pad.
8668           + do more error checking in module lib_touch.c
8669         + missing files for Ada95 binding from the last patch
8670         + synch. of generated html pages (RCS-Id's were wrong in html files)
8671         + support for Key_Resize in Ada binding
8672         + changed documentation style in ./c++/cursesm.h
8673         > patches by Alexander V. Lukyanov:
8674         + undo attempt to do recursive inlining for PutChar(), noting that it
8675           did not improve timing measurably, but inflated the size of
8676           lib_doupdate.o
8677
8678 970913
8679         + modify rain.c to use color.
8680         + correct scroll_csr_backward() to match scroll_csr_forward().
8681         + minor adjustment to llib-lncurses, to work with Solaris 2.5.1
8682         + minor fixes to sysdeps/unix/sysv/linux/configure to reflect renaming
8683           of configure cache variables in 970906.
8684         + correct logic involving changes to O_VISIBLE option in
8685           Synchronize_Options function in frm_driver.c (Tony Hoffmann
8686           <Tony.Hoffmann@hia.nrc.ca>)
8687         + add $(HOSTCC) symbol to ncurses Makefile.in, to simplify setup for
8688           cross compiling (suggested by Chris Johns).
8689         + modify ifdef in lib_setup.c to only include <sys/ioctl.h> if we can
8690           use it to support screen-size calculation (reported by Chris Johns).
8691         + #undef unctrl to avoid symbol conflict in port to RTEMS (reported by
8692           Chris Johns <cjohns@plessey.com.au>)
8693         > patches by Juergen Pfeifer:
8694         + simplified, made minor corrections to Ada95 binding to form
8695           fieldtype.
8696         + The C++ binding has been enhanced:
8697           + Improve NCursesWindow class:  added additional methods to cover
8698             more ncurses functionality.  Make refresh() and noutrefresh()
8699             virtual members to allow different implementation in the
8700             NCursesPanel class.
8701           + CAUTION:  changed order of parameters in vline() and hline() of
8702             NCursesWindow class.
8703           + Make refresh() in NCursesPanel non-static, it is now a
8704             reimplementation of refresh() in the base class.  Added
8705             noutrefresh() to NCursesPanel.
8706           + Added NCursesForm and related classes to support libform
8707             functionality.
8708           + Moved most of configuration related stuff from cursesw.h to etip.h
8709           + Added NCursesApplication class to support easy configuration of
8710             menu and forms related attributes as well as ripped of title lines
8711             and Soft-Label-Keys for an application.
8712           + Support of Auto-Cleanup for a menu's fieldlist.
8713           + Change of return type for current_item() and operator[] for menus.
8714           + Enhanced demo.
8715         + Fixed a bug in form/fld_def.c:  take into account that copyarg and
8716           freearg for a fieldtype may be NULL, makearg must not be NULL
8717         + Fixed a bug in form/fld_type.c:  in set_fieldtype_arg() makearg must
8718           not be NULL, copyarg and freearg may be NULL.
8719         + Fixed a bug in form/frm_def.c:  Allow Disconnect_Fields() if it is
8720           already disconnected.
8721         + Enhance form/frm_driver.c:  Allow growth of dynamic fields also on
8722           navigation requests.
8723         + Fixed a bug in form/fty_enum.c:  wrong position of postincrement in
8724           case-insensitiva comparision routine.
8725         + Enhanced form/lib_adabind.c with function _nc_get_field() to get a
8726           forms field by index.
8727         + Enhanced menu/m_adabind.c with function _nc_get_item() to get a menus
8728           item by index.
8729         + Fixed in curses.h.in:  make chtype argument for pechochar() constant.
8730           Mark wbkgdset() as implemented, remove wbkgdset macro, because it was
8731           broken (didn't handle colors correctly).
8732         + Enhanced lib_mouse.c: added _nc_has_mouse() function
8733         + Added _nc_has_mouse() prototype to curses.priv.h
8734         + Modified lib_bkgd.c:  hopefully correct implementation of wbkgdset();
8735           streamlined implementation of wbkgd()
8736         + Modified lib_mvwin.c:  Disable move of a pad.  Implement (costly)
8737           move of subwindows.  Fixed update behavior of movements of regular
8738           windows.
8739         + Fixed lib_pad.c:  make chtype argument of pechochar() const.
8740         + Fixed lib_window.c:  dupwin() is not(!) in every bit a really clone
8741           of the original.  Subwindows become regular windows by doing a
8742           dupwin().
8743         + Improved manpage form_fieldtype.3x
8744         > patches by Alexander V. Lukyanov:
8745         + simplify the PutChar() handling of exit_am_mode, because we already
8746           know that auto_right_margin is true.
8747         + add a check in PutChar() for ability to insert to the case of
8748           shifting character to LR corner.
8749         + in terminal initialization by _nc_screen_resume(), make sure that
8750           terminal right margin mode is known.
8751         + move logic that invokes touchline(), or does the equivalent, into
8752           _nc_scroll_window().
8753         + modify scrolling logic use of insert/delete line capability, assuming
8754           that they affect the screen contents only within the current
8755           scrolling region.
8756         + modify rain.c to demonstrate SIGWINCH handler.
8757         + remove logic from getch() that would return an ERR if the application
8758           called getch() when the cursor was at the lower-right corner of the
8759           physical screen, and the terminal does not have insert-character
8760           ability.
8761         + change view.c so that it breaks out of getch() loop if a KEY_RESIZE
8762           is read, and modify logic in getch() so this fix will yield the
8763           desired behavior, i.e., the screen is repainted automatically when
8764           the terminal window is resized.
8765
8766 970906
8767         + add configure option --enable-sigwinch
8768         + modify view.c to test KEY_RESIZE logic, with "-r" option.
8769         + modify testcurs.c to eliminate misleading display wrt cursor type
8770           by testing if the terminal supports cnorm, civis, cvvis.
8771         + several fixes for m68k/NeXT 4.0, to bring cur_term, _nc_curr_line and
8772           _nc_curr_col variables into linked programs:  move these variables,
8773           making new modules lib_cur_term and trace_buf (reported by Francisco
8774           Alberto Tomei Torres <fatomei@sandburg.unm.edu>).
8775         > patches by Alexander V. Lukyanov:
8776         + add pseudo-functionkey KEY_RESIZE which is returned by getch() when
8777           the SIGWINCH handler has been called since the last call to
8778           doupdate().
8779         + modify lib_twait.c to hide EINTR only if HIDE_EINTR is defined.
8780         + add SIGWINCH handler to ncurses library which is used if there is no
8781           application SIGWINCH handler in effect when the screen is
8782           initialized.
8783         + make linked list of all SCREEN structures.
8784         + move curses.h include before definition of SCREEN to use types in
8785           that structure.
8786         + correction to ensure that wgetstr uses only a newline to force a
8787           scroll (970831).
8788
8789 970831
8790         + add experimental configure option --enable-safe-sprintf; the normal
8791           mode now allocates a buffer as large as the screen for the
8792           lib_printw.c functions.
8793         + modify wgetch to refresh screen when reading ungetch'd characters,
8794           since the application may require this - SVr4 does this.
8795         + refine treatment of newline in wgetstr to echo only when this would
8796           force the screen to scroll.
8797
8798 970830
8799         + remove override in wgetstr() that forces keypad(), since SVr4 does
8800           not do this.
8801         + correct y-reference for erasure in wgetstr() when a wrap forces a
8802           scroll.
8803         + correct x-position in waddch() after a wrap forces a scroll.
8804         + echo newline in wgetstr(), making testscanw.c scroll properly when
8805           scanw is done.
8806         + modify vwscanw() to avoid potential buffer overflow.
8807         + rewrote lib_printw.c to eliminate fixed-buffer limits.
8808         > patches by Alexander V. Lukyanov:
8809         + correct an error in handling cooked mode in wgetch(); processing
8810           was in the wrong order.
8811         + simplified logic in wgetch() that handles backspace, etc., by using
8812           wechochar().
8813         + correct wechochar() so that it interprets the output character as
8814           in waddch().
8815         + modify pechochar() to use prefresh() rather than doupdate(), since
8816           the latter does not guarantee immediate refresh of the pad.
8817         + modify pechochar() so that if called with a non-pad WINDOW, will
8818           invoke wechochar() instead.
8819         + modify fifo indices to allow fifo to be longer than 127 bytes.
8820
8821 970823
8822         + add xterm-8bit to terminfo.src
8823         + moved logic for SP->_fifohold inside check_pending() to make it
8824           work properly when we add calls to that function.
8825         + ensure that bool functions return only TRUE or FALSE, and TRUE/FALSE
8826           are assigned to bool values (patch by H.J.Lu).
8827         > patches by Alexander V. Lukyanov:
8828         + several fixes to getch:
8829           1.  Separate cooked and raw keys in fifo
8830           2.  Fix the case of ungetch'ed KEY_MOUSE
8831           3.  wrap the code for hiding EINTR with ifdef HIDE_EINTR
8832           4.  correctly handle input errors (i.e., EINTR) without loss of raw
8833               keys
8834           5.  recognize ESC KEY_LEFT and similar
8835           6.  correctly handle the case of receiption of KEY_MOUSE from gpm
8836         + correct off-by-one indexing error in _nc_mouse_parse(), that caused
8837           single mouse events (press/release) to be ignored in favor of
8838           composed events (click).  Improves on a fix from integrating gpm
8839           support in 961229.
8840         + add another call to check_pending, before scrolling, for
8841           line-breakout optimization
8842         + improve hashmap.c by
8843           1.  fixed loop condition in grow_hunks()
8844           2.  not marking lines with offset 0
8845           3.  fixed condition of 'too far' criteria, thus one-line hunks are
8846           ignored and two lines interchanged won't pass.
8847         + rewrote/simplified _nc_scroll_optimize() by separating into two
8848           passes, forward/backward, looking for chunks moving only in the given
8849           direction.
8850         + move logic that emits sgr0 when initializing the screen to
8851           _nc_screen_init(), now invoked from newterm.
8852         + move cursor-movement cleanup from endwin() into _nc_mvcur_wrap()
8853           function and screen cleanup (i.e., color) into _nc_screen_wrap()
8854           function.
8855         + add new functions _nc_screen_init(), _nc_screen_resume() and
8856           _nc_screen_wrap().
8857         + rename _nc_mvcur_scrolln() to _nc_scrolln().
8858         + add a copy of acs_map[] to the SCREEN structure, where it can be
8859           stored/retrieved via set_term().
8860         + move variables _nc_idcok, _nc_idlok, _nc_windows into the SCREEN
8861           structure.
8862
8863 970816
8864         + implement experimental _nc_perform_scroll().
8865         + modify newterm (actually _nc_setupscreen()) to emit an sgr0 when
8866           initializing the screen, as does SVr4 (reported by Alexander V.
8867           Lukyanov).
8868         + added test_progs rule to ncurses/Makefile.
8869         + modify test/configure.in to check if initscr is already in $LIBS
8870           before looking for (n)curses library.
8871         + correct version-number in configure script for OSF1 shared-library
8872           options (patch by Tim Mooney).
8873         + add -DNDEBUG to CPPFLAGS for --enable-assertions (as Juergen
8874           originally patched) since the c++ demo files do not necessarily
8875           include ncurses_cfg.h
8876         + supply default value for --enable-assertions option in configure
8877           script (reported by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>).
8878         > patches by Alexander V. Lukyanov:
8879         + correct/simplify logic of werase(), wclrtoeol() and wclrbot().  See
8880           example firstlast.c
8881         + optimize waddch_literal() and waddch_nosync() by factoring out
8882           common subexpressions.
8883         + correct sense of NDEBUG ifdef for CHECK_POSITION macro.
8884         + corrections to render_char(), to make handling of colored blanks
8885           match SVr4 curses, as well as to correct a bug that xor'd space
8886           against the background character.
8887         + replaced hash function with a faster one (timed it)
8888         + rewrote the hashmap algorithm to be one-pass, this avoids multiple
8889           cost_effective() calls on the same lines.
8890         + modified cost_effective() so it is now slightly more precise.
8891         > patches for glibc integration (H.J.Lu):
8892         + add modules define_key, keyok, name_match, tries
8893         + add makefile rules for some of the unit tests in ncurses (mvcur,
8894           captoinfo, hardscroll, hashmap).
8895         + update Linux configure-script for wide-character definitions.
8896
8897 970809
8898         + modify _tracebits() to show the character size (e.g., CS8).
8899         + modify tparm() to emit '\200' where the generated string would have a
8900           null (reported by From:  Ian Dall <Ian.Dall@dsto.defence.gov.au> for
8901           terminal type ncr7900).
8902         + modify install process so that ldconfig is not invoked if the
8903           package is built with an install-prefix.
8904         + correct test program for chtype size (reported by Tim Mooney).
8905         + add configure option --disable-scroll-hints, using this to ifdef the
8906           logic that computes indices for _nc_scroll_optimize().
8907         + add module ncurses/softscroll.c, to perform single-stage computation
8908           of scroll indices used in _nc_scroll_optimize().  This is faster than
8909           the existing scrolling algorithm, but tends to make too-small hunks.
8910         + eliminate fixed buffer size in _nc_linedump().
8911         + minor fixes to lib_doupdate.c to add tradeoff between clr_eol (el)
8912           and clr_bol (el1), refine logic in ClrUpdate() and ClrBottom() (patch
8913           by Alexander V. Lukyanov).
8914         + add test/testaddch.c, from a pending patch by Alexander V. Lukyanov.
8915         + correct processing of "configure --enable-assertions" option (patch
8916           by Juergen Pfeifer).
8917
8918 970802
8919         + add '-s' (single-step) option too test/hashtest.c, correct an error
8920           in loop limit for '-f' (footer option), toggle scrollok() when
8921           writing footer to avoid wrap at lower-right corner.
8922         + correct behavior of clrtoeol() immediately after wrapping cursor,
8923           which was not clearing the line at the cursor position (reported by
8924           Liviu Daia <daia@stoilow.imar.ro>).
8925         + corrected mapping for ACS_LANTERN, which was 'I' rather than 'i'
8926           (reported by Klaus Weide <kweide@tezcat.com>).
8927         + many corrections to make progs/capconvert work, as well as make it
8928           reasonably portable and integrated with ncurses 4.1 (reported by Dave
8929           Furstenau <df@ravine.binary.net>).
8930
8931 970726
8932         + add flag SP->_fifohold, corresponding logic to modify the behavior of
8933           the line breakout logic so that if the application does not read
8934           input, refreshes will not be stopped, but only slowed.
8935         + generate slk_attr_off(), slk_attr_on(), slk_attr_set(), vid_attr(),
8936           ifdef'd for wide-character support, since ncurses' WA_xxx attribute
8937           masks are identical with the A_xxx masks.
8938         + modify MKlib_gen.sh to generate ifdef'd functions to support optional
8939           configuration of wide-characters.
8940         + modify tset to behave more like SVr4's tset, which does not modify
8941           the settings of intr, quit or erase unless they are given as command
8942           options (reported by Nelson H. F. Beebe <beebe@math.utah.edu>).
8943         + modify tset to look in /etc/ttys or /etc/ttytype if the configuration
8944           does not have getttynam().
8945         + extend baudrate table in tset.c to match baudrate() function.
8946         + add table entries for 230400 and 460800 bd to baudrate() function.
8947         + improve breakout logic by allowing it before the first line updated,
8948           which is what SVr4 curses does (patch by Alexander V. Lukyanov).
8949         + correct initialization of vcost in relative_move(), for cursor-down
8950           case (patch by Alexander V. Lukyanov).
8951         > nits gleaned from Debian distribution of 1.9.9g-3:
8952         + install symbolic link for intotocap.
8953         + reference libc directly when making shared libraries.
8954         + correct renaming of curs_scr_dmp.3x in man_db.renames.
8955         + guard tgetflag() and other termcap functions against null cur_term
8956           pointer.
8957
8958 970719
8959         + corrected initial state of software echo (error in 970405, reported
8960           by Alexander V. Lukyanov).
8961         + reviewed/added messages to configure script, so that all non-test
8962           options should be accompanied by a message.
8963         + add configure check for long filenames, using this to determine if
8964           it is safe to allow long aliases for terminal descriptions as does
8965           SVr4.
8966         + add configure options for widec (wide character), hashmap (both
8967           experimental).
8968         > patch by Alexander V. Lukyanov:
8969         + hashmap.c - improved by heuristic, so that scroll test works much
8970           better when csr is not available.
8971         + hardscroll.c - patched so that it continues to scroll other chunks
8972           after failure to scroll one.
8973         + lib_doupdate.c - _nc_mvcur_scrolln extended to handle more cases; csr
8974           is avoided as it is relative costly.  Fixed wrong coordinates in one
8975           case and wrong string in TRACE.
8976         > patch by Juergen Pfeifer:
8977         + modify C++ binding to compile on AIX 4.x with the IBM C-SET++
8978           compiler.
8979
8980 970712
8981         + remove alternate character set from kterm terminfo entry; it uses the
8982           shift-out control for a purpose incompatible with curses, i.e., font
8983           switching.
8984         + disentangle 'xterm' terminfo entry from some derived entries that
8985           should be based on xterm-r6 instead.
8986         + add cbt to xterm-xf86-xv32 terminfo entry; I added the emulation for
8987           XFree86 3.1.2F, but overlooked its use in terminfo then - T.Dickey.
8988         + correct logic in lib_mvcur.c that uses back_tab.
8989
8990 970706
8991         + correct change from 970628 to ClrUpdate() in lib_doupdate.c so that
8992           contents of curscr are saved in newscr before clearing the screen.
8993           This is needed to make repainting work with the present logic of
8994           TransformLine().
8995         + use napms() rather than sleep() in tset.c to avoid interrupting I/O.
8996
8997 970705
8998         + add limit checks to _nc_read_file_entry() to guard against overflow
8999           of buffer when reading incompatible terminfo format, e.g, from OSF/1.
9000         + correct some loop-variable errors in xmc support in lib_doupdate.c
9001         + modify ncurses 'b' test to add gaps, specified by user, to allow
9002           investigation of interaction with xmc (magic cookie) code.
9003         + correct typo in 970524 mods to xmas.c, had omitted empty parameter
9004           list from has_colors(), which gcc ignores, but SVr4 does not
9005           (reported by Larry Virden).
9006         + correct rmso capability in wy50-mc description.
9007         + add configure option "--enable-hard-tabs", renamed TABS_OK ifdef to
9008           USE_HARD_TABS.
9009         > patch by Juergen Pfeifer:
9010         + Add bindings for keyok() and define_key() to the Ada95 packages.
9011         + Improve man pages menu_post.3x and menu_format.3x
9012         + Fix the HTML pages in the Ada95/html directory to reflect the above
9013           changes.
9014
9015 970628
9016         + modify change from 970101 to ClrUpdate() in lib_doupdate.c so that
9017           pending changes to both curscr and newscr are flushed properly.
9018           This fixes a case where the first scrolling operation in nvi would
9019           cause the screen to be cleared unnecessarily and repainted before
9020           doing the indexing, i.e., by repeatedly pressing 'j' (reported by
9021           Juergen Pfeifer).
9022         + correct error in trans_string() which added embedded newlines in a
9023           terminfo description to the stored strings.
9024         + remove spurious newlines from sgr in wyse50 (and several other)
9025           terminfo descriptions.
9026         + add configure option for experimental xmc (magic cookie) code,
9027           "--enable-xmc-glitch".  When disabled (the default), attributes that
9028           would store a magic cookie are suppressed in vidputs().  The magic
9029           cookie code is far from workable at this stage; the configuration
9030           option is a stopgap.
9031         + move _nc_initscr() from lib_initscr.c to lib_newterm.c
9032         + correct path for invoking make_keys (a missing "./").
9033
9034 970621
9035         + correct sign-extension problem with "infocmp -e", which corrupted
9036           acsc values computed for linux fallback data.
9037         + correct dependency on ncurses/names.c (a missing "./").
9038         + modify configure script to use '&&' even for cd'ing to existing
9039           directories to work around broken shell interpreters.
9040         + correct a loop-limit in _nc_hash_map() (patch by Alexander V.
9041           Lukyanov).
9042
9043 970615
9044         + restore logic in _nc_scroll_optimize() which marks as touched the
9045           lines in curscr that are shifted.
9046         + add new utility 'make_keys' to compute keys.tries as a table rather
9047           than a series of function calls.
9048         + correct include-dependency for tic.h used by name_match
9049         + removed buffer-allocation for name and description from m_item_new.c,
9050           since this might result in incompatibilities with SVr4.  Also fixed
9051           the corresponding Ada95 binding module (patch by Juergen Pfeifer,
9052           report by Avery Pennarun <apenwarr@foxnet.net>)
9053         + removed the mechanism to timestamp the generated Ada95 sources.  This
9054           resulted always in generating patches for the HTML doc, even when
9055           nothing really changed (patch by Juergen Pfeifer).
9056         + improve man page mitem_new.3x (patch by Juergen Pfeifer).
9057
9058 970614
9059         + remove ech capability from rxvt description because it does not work.
9060         + add missing case logic for infocmp -I option (reported by Lorenzo M.
9061           Catucci <lorenzo@argon.roma2.infn.it>)
9062         + correct old bug in pnoutrefresh() unmasked by fix in 970531; this
9063           caused glitches in the ncurses 'p' test since the area outside the
9064           pad was not compared when setting up indices for _nc_scroll_optimize.
9065         + rewrote tracebits() to workaround misdefinition of TOSTOP on Ultrix
9066           4.4, as well as to eliminate fixed-size buffer (reported by Chris
9067           Tanner <tannerc@aecl.ca>)
9068         + correct prototype for termattrs() as per XPG4 version 2.
9069         + add placeholder prototypes for color_set(), erasewchar(),
9070           term_attrs(), wcolor_set() as per XPG4 version 2.
9071         + correct attribution for progs/progs.priv.h and lib_twait.c
9072         + improve line-breakout logic by checking based on changed lines rather
9073           than total lines (patch by Alexander V. Lukyanov).
9074         + correct loop limits for table-lookup of enumerated value in form
9075           (patch by Juergen Pfeifer).
9076         + improve threshhold computation for determining when to call ClrToEOL
9077           (patch by Alexander V. Lukyanov).
9078
9079 970531
9080         + add configure option --disable-database to force the library to
9081           use only the fallback data.
9082         + add configure option --with-fallbacks, to specify list of fallback
9083           terminal descriptions.
9084         + add a symbolic link for ncurses.h during install; too many programs
9085           still assume there's an ncurses.h
9086         + add new terminfo.src entry for xterm-xf86-v33.
9087         + restore terminfo.src entry for emu to using setf/setb, since it is
9088           not, after all, generating ANSI sequences.  Corrected missing comma
9089           that caused setf/setb entries to merge.
9090         + modify mousemask() to use keyok() to enable/disable KEY_MOUSE, so
9091           that applications can disable ncurses' mouse and supply their own
9092           handler.
9093         + add extensions keyok() and define_key().  These are designed to allow
9094           the user's application better control over the use of function keys,
9095           e.g., disabling the ncurses KEY_MOUSE.  (The define_key idea was from
9096           a mailing-list thread started by Kenneth Albanowski
9097           <kjahds@kjahds.com> Nov'1995).
9098         + restore original behavior in ncurses 'g' test, i.e., explicitly
9099           set the keypad mode rather than use the default, since it confuses
9100           people.
9101         + rewrote the newdemo banner so it's readable (reported by Hugh
9102           Daniel).
9103         + tidy up exit from hashtest (reported by Hugh Daniel).
9104         + restore check for ^Q in ncurses 'g' test broken in 970510 (reported
9105           by Hugh Daniel)
9106         + correct tput program, checking return-value of setupterm (patch by
9107           Florian La Roche).
9108         + correct logic in pnoutrefresh() and pechochar() functions (reported
9109           by Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>).  The computation
9110           of 'wide' date to eric's #283 (1.9.9), and the pechochar bug to the
9111           original implementation (1.9.6).
9112         + correct typo in vt102-w terminfo.src entry (patch by Robert Wuest
9113           <rwuest@sire.vt.com>)
9114         + move calls of _nc_background() out of various loops, as its return
9115           value will be the same for the whole window being operated on (patch
9116           by J T Conklin).
9117         + add macros getcur[xy] getbeg[xy] getpar[xy], which are defined in
9118           SVr4 headers (patch by J T Conklin <jtc@NetBSD.ORG>)
9119         + modify glibc addon-configure scripts (patch by H.J.Lu).
9120         + correct a bug in hashmap.c: the size used for clearing the hashmap
9121           table was incorrect, causing stack corruption for large values of
9122           LINES, e.g., >MAXLINES/2 (patch by Alexander V. Lukyanov).
9123         + eric's terminfo 9.13.23 & 9.13.24 changes: replaced minitel-2 entry,
9124           added MGR, ansi-nt (note: the changes described for 9.13.24 have not
9125           been applied).
9126         > several changes by Juergen Pfeifer:
9127         + correct a missing error-return in form_driver.c when wrapping of a
9128           field is not possible.
9129         + correct logic in form_driver.c for configurations that do not have
9130           memccpy() (reported by Sidik Isani <isani@cfht.hawaii.edu>)
9131         + change several c++ binding functions to inline.
9132         + modify c++ menu binding to inherit from panels, for proper
9133           initialization.
9134         + correct freeing of menu items in c++ binding.
9135         + modify c++ binding to reflect removal of const from user data pointer
9136           in forms/menus libraries.
9137
9138 970524
9139         + add description of xterm-16color.
9140         + modify name of shared-library on *BSD to end with $(REL_VERSION)
9141           rather than $(ABI_VERSION) to match actual convention on FreeBSD
9142           (cf: 960713).
9143         + add OpenBSD to shared-library case, same as NetBSD and FreeBSD
9144           (reported by Hugh Daniel <hugh@rat.toad.com>).
9145         + corrected include-dependency in menu/Makefile so that "make install"
9146           works properly w/o first doing "make".
9147         + add fallback definition for isascii, used in infocmp.
9148         + modify xmas to use color, and to exit right away when a key is
9149           pressed.
9150         + modify gdc so that the scrolled digits function as described (there
9151           was no time delay between the stages, and the digits overwrote the
9152           bounding box without tidying up).
9153         + modify lib_color.c to use setaf/setab only for the ANSI color codes
9154           0 through 7.  Using 16 colors requires setf/setb.
9155         + modify ncurses 'c' test to work with 16 colors, as well as the normal
9156           8 colors.
9157         + remove const qualifier from user data pointer in forms and menus
9158           libraries (patch by Juergen Pfeifer).
9159         + rewrote 'waddchnstr()' to avoid using the _nc_waddch_nosync()
9160           function, thereby not interpreting tabs, etc., as per spec (patch by
9161           Alexander V. Lukyanov).
9162
9163 970517
9164         + suppress check for pre-existing ncurses header if the --prefix
9165           option is specified.
9166         + add configure options "--with-system-type" and
9167           "--with-system-release" to assist in checking the generated
9168           makefiles.
9169         + add configure option "--enable-rpath" to allow installers to specify
9170           that programs linked against shared libraries will have their library
9171           path embedded, allowing installs into nonstandard locations.
9172         + add flags to OSF1 shared-library options to specify version and
9173           symbol file (patch by Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>)
9174         + add missing definition for ABI_VERSION to c++/Makefile.in (reported
9175           by Satoshi Adachi <adachi@wisdom.aa.ap.titech.ac.jp>).
9176         + modify link flags to accommodate HP-UX linker which embeds absolute
9177           pathnames in executables linked against shared libraries (reported by
9178           Jason Evans <jasone@mrc.uidaho.edu>, solved by Alan Shutko
9179           <ats@hubert.wustl.edu>).
9180         + drop unnecessary check for attribute-change in onscreen_mvcur() since
9181           mvcur() is the only caller within the library, and that check in turn
9182           is exercised only from lib_doupdate.c (patch by Alexander V.
9183           Lukyanov).
9184         + add 'blank' parameter to _nc_scroll_window() so _nc_mvcur_scrolln()
9185           can use the background of stdscr as a parameter to that function
9186           (patch by Alexander V. Lukyanov).
9187         + moved _nc_mvcur_scrolln() from lib_mvcur.c to lib_doupdate.c, to use
9188           the latter's internal functions, as well as to eliminate unnecessary
9189           cursor save/restore operations (patch by Alexander V. Lukyanov).
9190         + omit parameter of ClrUpdate(), since it is called only for newscr,
9191           further optimized/reduced by using ClearScreen() and TransformLine()
9192           to get rid of duplicate code (patch by Alexander V. Lukyanov).
9193         + modify scrolling algorithm in _nc_scroll_optimize() to reject hunks
9194           that are smaller than the distance to be moved (patch by Alexander V.
9195           Lukyanov).
9196         + correct a place where the panel library was not ifdef'd in ncurses.c
9197           (Juergen Pfeifer)
9198         + documentation fixes (Juergen Pfeifer)
9199
9200 970515  4.1 release for upload to prep.ai.mit.edu
9201         + re-tag changes since 970505 as 4.1 release.
9202
9203 970510
9204         + modify ncurses 'g' test to allow mouse input
9205         + modify default xterm description to include mouse.
9206         + modify configure script to add -Wwrite-strings if gcc warnings are
9207           enabled while configuring --enable-const (and fixed related
9208           warnings).
9209         + add toggle, status display for keypad mode to ncurses 'g' test to
9210           verify that keypad and scrollok are not inherited from parent window
9211           during a call to newwin.
9212         + correction to MKexpanded.sh to make it work when configure --srcdir
9213           is used (reported by H.J.Lu).
9214         + revise test for bool-type, ensuring that it checks if builtin.h is
9215           available before including it, adding test for sizeof(bool) equal
9216           to sizeof(short), and warning user if the size cannot be determined
9217           (reported by Alexander V. Lukyanov).
9218         + add files to support configuration of ncurses as an add-on library
9219           for GNU libc (patch by H.J.Lu <hjl@lucon.org>)
9220
9221 970506
9222         + correct buffer overrun in lib_traceatr.c
9223         + modify change to lib_vidattr.c to avoid redundant orig_pair.
9224         + turn on 'echo()' in hanoi.c, since it is initially off.
9225         + rename local 'errno' variable in etip.h to avoid conflict with global
9226           (H.J.Lu).
9227         + modify configure script to cache LD, AR, AR_OPTS (patch by H.J.Lu
9228           <hjl@lucon.org>)
9229
9230 970505  4.1 pre-release
9231         + regenerate the misc directory html dumps without the link list, which
9232           is not useful.
9233         + correct dependency in form directory makefile which caused
9234           unnecessary recompiles.
9235         + correct substitution for ABI_VERSION in test-makefile
9236         + modify install rules for shared-library targets to remove the target
9237           before installing, since some install programs do not properly handle
9238           overwrite of symbolic links.
9239         + change order of top-level targets so that 'include' immediate
9240           precedes the 'ncurses' directory, reducing the time between new
9241           headers and new libraries (requested by Larry Virden).
9242         + modify lib_vidattr.c so that colors are turned off only before
9243           modifying other attributes, turned on after others.  This makes the
9244           hanoi.c program display correctly on FreeBSD console.
9245         + modify debug code in panel library to print user-data addresses
9246           rather than the strings which they (may) point to.
9247         + add check to ensure that C++ binding and demo are not built with g++
9248           versions below 2.7, since the binding uses templates.
9249         + modify c++ binding and demo to build and run with SGI's c++ compiler.
9250           (It also compiles with the Sun SparcWorks compiler, but the demo does
9251           not link, due to a vtbl problem).
9252         + corrections to demo.cc, to fix out-of-scope variables (Juergen
9253           Pfeifer).
9254
9255 970503
9256         + correct memory leak in _nc_trace_buf().
9257         + add configure test for regexpr.h, for Unixware 1.x.
9258         + correct missing "./" prefixing names of generated files in ncurses
9259           directory.
9260         + use single-quotes in configure scripts assignments for MK_SHARED_LIB
9261           to workaround shell bug on FreeBSD 2.1.5
9262         + remove tabs from intermediate #define's for GCC_PRINTF, GCC_SCANF
9263           that caused incorrect result in ncurses_cfg.h
9264         + correct initialization in lib_trace.c, which omitted version info.
9265         + remove ech, el1 attributes from cons25w description; they appear to
9266           malfunction in FreeBSD 2.1.5
9267         + correct color attributes in terminfo.src and lib_color.c to match
9268           SVr4 behavior by interchanging codes 1,4, 3,6 in the setf/setb
9269           capabilities.
9270         + use curs_set() rather than checks via tigetstr() for test programs
9271           that hide the cursor: firework, rain, worm.
9272         + ensure that if the terminal lacks change_scroll_region, parm_index
9273           and parm_rindex are used only to scroll the whole screen (patch by
9274           Peter Wemm).
9275         + correct curs_set() logic, which did not return ERR if the requested
9276           attributes did not exist, nor did it assume an unknown initial state
9277           for the cursor (patch by Alexander V. Lukyanov).
9278         + combine IDcTransformLine and NoIDcTransformLine to new TransformLine
9279           function in lib_doupdate.c (patch by Alexander V. Lukyanov).
9280         + correct hashmap.c, which did not update index information (patch by
9281           Alexander V. Lukyanov).
9282         + fixes for C++ binding and demo (see c++/NEWS) (Juergen Pfeifer).
9283         + correct index in lib_instr.c (Juergen Pfeifer).
9284         + correct typo in 970426 patch from Tom's cleanup of lib_overlay.c
9285           (patch by Juergen Pfeifer).
9286
9287 970426
9288         + corrected cost computation in PutRange(), which was using
9289           milliseconds compared to characters by adding two new members to the
9290           SCREEN struct, _hpa_ch_cost and _cup_ch_cost.
9291         + drop ncurses/lib_unctrl.c, add ncurses/MKunctrl.awk to generate a
9292           const array of strings (suggested by Alexander V. Lukyanov).  The
9293           original suggestion in 970118 used a perl script.
9294         + rewrote ncurses 'b' test to better exercise magic-cookie (xmc), as
9295           well as noting the attributes that are not supported by a terminal.
9296         + trace the computation of cost values in lib_mvcur.c
9297         + modify _nc_visbuf() to use octal rather than hex, corrected sign
9298           extension bug in that function that caused buffer overflow.
9299         + modify trace in lib_acs.c to use _nc_visbuf().
9300         + suppress trace within _traceattr2().
9301         + correct logic of _tracechtype2(), which did not account for repeats
9302           or redefinition within an acsc string.
9303         + modify debug-library version baudrate() to use environment variable
9304           $BAUDRATE to override speed computation.  This is needed for
9305           regression testing.
9306         + correct problems shown by "weblint -pedantic".
9307         + update mailing-list information (now ncurses@bsdi.com).
9308
9309 970419
9310         + Improve form_field_validation.3x manpage to better describe the
9311           precision parameter for TYPE_NUMERIC and TYPE_INTEGER.  Provide more
9312           precise information how the range checking can be avoided.  (patch by
9313           Juergen Pfeifer, reported by Bryan Henderson)
9314         + change type of min/max value of form types TYPE_INTEGER to long to
9315           match SVr4 documentation.
9316         + set the form window to stdscr in set_form_win() so that form_win()
9317           won't return null (patch by Juergen Pfeifer, reported by Bryan
9318           Henderson <bryanh@giraffe.netgate.net>).
9319
9320 970412
9321         + corrected ifdef'ing of inline (cf: 970321) for TRACE vs C++.
9322         + corrected toggle_attr_off() macro (patch by Andries Brouwer).
9323         + modify treatment of empty token in $MANPATH to /usr/man (reported by
9324           <Andries.Brouwer@cwi.nl>)
9325         + modify traces that record functions-called so that chtype and attr_t
9326           values are expressed symbolically, to simplify reuse of generated
9327           test-scripts on SVr4 regression testing.
9328         + add new trace functions _traceattr2() and _tracechtype2()
9329
9330 970405
9331         + add configure option --enable-const, to support the use of 'const'
9332           where XSI should have, but did not, specify.  This defines
9333           NCURSES_CONST, which is an empty token otherwise, for strict
9334           compatibility.
9335         + make processing of configure options more verbose by echoing the
9336           --enable/--with values.
9337         + add configure option --enable-big-core
9338         + set initial state of software echo off as per XSI.
9339         + check for C++ builtin.h header
9340         + correct computation of absolute-path for $INSTALL that dropped "-c"
9341           parameter from the expression.
9342         + rename config.h to ncurses_cfg.h to avoid naming-conflict when
9343           ncurses is integrated into larger systems (adapted from diffs by
9344           H.J.Lu for libc).
9345         + correct inequality in lib_doupdate.c that caused a single-char to not
9346           be updated when the char on the right-margin was not blank, idcok()
9347           was true (patch by Alexander V Lukyanov (in 970124), reported
9348           by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu> in 970329).
9349         + modify 'clean' rule in include/Makefile so that files created by
9350           configure script are removed in 'distclean' rule instead.
9351
9352 970328
9353         + correct array limit in tparam_internal(), add case to interpret "%x"
9354           (patch by Andreas Schwab)
9355         + rewrote number-parsing in ncurses.c 'd' test; it did not reset the
9356           value properly when non-numeric characters were given (reported by
9357           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
9358
9359 970321
9360         + move definition of __INTERNAL_CAPS_VISIBLE before include for
9361           progs.priv.h (patch by David MacKenzie).
9362         + add configuration summary, reordered check for default include
9363           directory to better accommodate a case where installer is configuring
9364           a second copy of ncurses (reported by Klaus Weide
9365           <kweide@tezcat.com>)
9366         + moved the #define for 'inline' as an empty token from the
9367           $(CFLAGS_DEBUG) symbol into config.h, to avoid redefinition warning
9368           (reported by Ward Horner).
9369         + modify test for bool builtin type to use 'unsigned' rather than
9370           'unknown' when cross-compiling (reported by Ward Horner).
9371
9372 970315
9373         + add header dependencies so that "make install.libs" will succeed
9374           even if "make all" is not done first.
9375         + moved some macros from lib_doupdate.c to curses.priv.h to use in
9376           expanded functions with ATAC.
9377         + correct implementation of lib_instr.c; both XSI and SVr4 agree that
9378           the winnstr functions can return more characters than will fit on one
9379           line.
9380
9381 970308
9382         + modify script that generates lib_gen.c to support traces of called &
9383           return.
9384         + add new configure option "--disable-macros", for testing calls within
9385           lib_gen.c
9386         + corrected logic that screens level-checking of called/return traces.
9387
9388 970301
9389         + use new configure macro NC_SUBST to replace AC_PATH_PROG, better
9390           addressing request by Ward Horner.
9391         + check for cross-compiling before trying to invoke the autoconf
9392           AC_FUNC_SETVBUF_REVERSED macro (reported by Ward Horner)
9393         + correct/simplify loop in _nc_visbuf(), 970201 changes omitted
9394           a pointer-increment.
9395         + eliminate obsolete symbol SHARED_ABI from dist.mk (noted by
9396           Florian La Roche).
9397
9398 970215
9399         + add configure option --enable-expanded, together with code that
9400           implements an expanded form of certain complex macros, for testing
9401           with ATAC.
9402         + disable CHECK_POSITION unless --with-assertions is configured
9403           (Alexander V Lukyanov pointed out that this is redundant).
9404         + use keyname() to show traced chtype values where applicable rather
9405           than _tracechar(), which truncates the value to 8-bits.
9406         + minor fixes to TRACE_ICALLS, added T_CREATE, TRACE_CCALLS macros.
9407         + modify makefiles in progs and test directories to avoid using C
9408           preprocessor options on link commands (reported by Ward Horner)
9409         + correct ifdef/include-order for nc_alloc.h vs lib_freeall.c (reported
9410           by Ward Horner)
9411         + modify ifdef's to use configure-defined symbols consistently
9412           (reported by Ward Horner)
9413         + add/use new makefile symbols AR, AR_OPTS and LD to assist in non-UNIX
9414           ports (reported by Ward Horner <whorner@tsi-telsys.com>)
9415         + rename struct try to struct tries, to avoid name conflict with C++
9416           (reported by Gary Johnson).
9417         + modify worm.c to hide cursor while running.
9418         + add -Wcast-qual to gcc warnings, fix accordingly.
9419         + use PutChar rather than PutAttrChar in ClrToEOL to properly handle
9420           wrapping (Alexander V Lukyanov).
9421         + correct spurious echoing of input in hanoi.c from eric's #291 & #292
9422           patches (reported by Vernon C. Hoxie <vern@zebra.alphacdc.com>).
9423         + extend IRIX configuration to IRIX64
9424         + supply missing install.libs rule needed after restructuring
9425           test/Makefile.in
9426
9427 970208
9428         + modify "make mostlyclean" to leave automatically-generated source
9429           in the ncurses directory, for use in cross-compiles.
9430         + autogenerated object-dependencies for test directory
9431         + add configure option --with-rcs-ids
9432         + modify configuration scripts to generate major/minor/patch versions
9433           (suggested by Alexander V Lukyanov).
9434         + supply missing va_end's in lib_scanw.c
9435         + use stream I/O for trace-output, to eliminate fixed-size buffer
9436         + add TRACE_ICALLS definition/support to lib_trace.c
9437         + modify Ada95 binding to work with GNAT 3.09 (Juergen Pfeifer).
9438
9439 970201
9440         + add/modify traces for called/return values to simplify extraction
9441           for test scripts.
9442         + changed _nc_visbuf to quote its result, and to dynamically allocate
9443           the returned buffer.
9444         + invoke ldconfig after installing shared library
9445         + modify install so that overwrite applies to shared library -lcurses
9446           in preference to static library (reported by Zeyd M Ben-Halim 960928).
9447         + correct missing ';' in 961221 mod to overwrite optional use of $(LN_S)
9448           symbol.
9449         + fixes to allow "make install" to work without first doing a "make
9450           all" (suggested by Larry Virden).
9451
9452 970125
9453         + correct order of #ifdef for TABS_OK.
9454         + instrumented toe.c to test memory-leaks.
9455         + correct memory-deallocation in toe.c (patch by Jesse Thilo).
9456         + include <sys/types.h> in configuration test for regex.h (patch by
9457           Andreas Schwab)
9458         + make infocmp recognize -I option, for SVr4 compatibility (reported by
9459           Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>)
9460
9461 970118
9462         + add extension 'use_default_colors()', modified test applications that
9463           use default background (firework, gdc, hanoi, knight, worm) to
9464           demonstrate.
9465         + correct some limit checks in lib_doupdate.c exposed while running
9466           worm.
9467         + use typeCalloc macro for readability.
9468         + add/use definition for CONST to accommodate testing with Solaris
9469           (SVr4) curses, which doesn't use 'const' in its prototypes.
9470         + modify ifdef's in test/hashtest.c and test/view.c to compile with
9471           Solaris curses.
9472         + modify _tracedump() to pad pad colors & attrs lines to match change
9473           in 970101 showing first/last changes.
9474         + corrected location of terminating null on dynamically allocated forms
9475           fields (patch by Per Foreby).
9476
9477 970111
9478         + added headers to make view.c compile on SCO with the resizeterm()
9479           code (i.e., struct winsize) - though this compiles, I don't have a
9480           suitable test configuration since SIGWINCH doesn't pass my network to
9481           that machine - T.Dickey.
9482         + update test/configure.in to supply some default substitutions.
9483         + modify configure script to add -lncurses after -lgpm to fix problem
9484           linking against static libraries.
9485         + add a missing noraw() to test/ncurses.c (places noted by Jeremy
9486           Buhler)
9487         + add a missing wclear() to test/testcurs.c (patch by Jeremy Buhler
9488           <jbuhler@cs.washington.edu>)
9489         + modify headers to accommodate compilers that don't allow duplicate
9490           "#define" lines for NCURSES_VERSION (reported by Larry W. Virden
9491           <lvirden@cas.org>)
9492         + fix formatting glitch in curs_getch.3x (patch by Jesse Thilo).
9493         + modify lib_doupdate to make el, el1 and ed optimization use the
9494           can_clear_with macro, and change EmitRange to allow leaving cursor at
9495           the middle of interval, rather than always at the end (patch by
9496           Alexander V Lukyanov).  This was originally 960929, resync 970106.
9497
9498 970104
9499         + workaround defect in autoconf 2.12 (which terminates configuration
9500           if no C++ compiler is found) by adding an option --without-cxx.
9501         + modify several man-pages to use tbl, where .nf/.fi was used (reported
9502           by Jesse Thilo).
9503         + correct font-codes in some man-pages (patch by Jesse Thilo
9504           <Jesse.Thilo@pobox.com>)
9505         + use configure script's knowledge of existence of g++ library for the
9506           c++ Makefile (reported by Paul Jackson).
9507         + correct misleading description of --datadir configuration option
9508           (reported by Paul Jackson <pj@sam.engr.sgi.com>)
9509
9510 970101
9511         + several corrections to _nc_mvcur_scrolln(), prompted by a bug report
9512           from Peter Wemm:
9513         > the logic for non_dest_scroll_region was interchanged between the
9514           forward & reverse scrolling cases.
9515         > multiple returns from the function allowed certain conditions to do
9516           part of an operation before discovering that it couldn't be
9517           completed, returning an error without restoring the cursor.
9518         > some returns were ERR, where the function had completed the
9519           operation, because the insert/delete line logic was improperly
9520           tested (this was probably the case Peter saw).
9521         > contrary to comments, some scrolling cases were tested after the
9522           insert/delete line method.
9523         + modify _tracedump() to show first/last changes.
9524         + modify param of ClrUpdate() in lib_doupdate.c to 'newscr', fixes
9525           refresh problem (reported by Peter Wemm) that caused nvi to not show
9526           result of ":r !ls" until a ^L was typed.
9527
9528 961229  (internal alpha)
9529         + correct some of the writable-strings warnings (reported by Gary
9530           Johnson <gjohnson@season.com>).  Note that most of the remaining ones
9531           are part of the XSI specification, and can't be "fixed".
9532         + improve include-dependencies in form, menu, panel directories.
9533         + correct logic of delay_output(), which would return early if
9534           there is data on stdin.
9535         + modify interface & logic of _nc_timed_wait() to support 2 file
9536           descriptors, needed for GPM.
9537         + integrate patch by Andrew Kuchling <amk@magnet.com> for GPM (mouse)
9538           support, correcting logic in wgetch() and _nc_mouse_parse() which
9539           prevented patch from working properly -TD
9540         + improve performance of panel algorithm (Juergen Pfeifer 961203).
9541         + strip RCS id's from generated .html files in Ada95 subtree.
9542         + resync with generated .html files (Juergen Pfeifer 961223).
9543         + terminfo.src 10.1.0 (ESR).
9544
9545 961224  4.0 release
9546         + release as 4.0 to accommodate Linux ld.so.1.8.5
9547         + correct syntax/spelling, regenerated .doc files from .html using
9548           lynx 2.5
9549         + refined forms/menus makefiles (Juergen Pfeifer 961223).
9550
9551 961221  - snapshot
9552         + remove logic in read_entry.c that attempts to refine errno by using
9553           'access()' for the directory (from patch by Florian La Roche).
9554         + correct configure test/substitution that inhibits generating
9555           include-path to /usr/include if gcc is used (reported by Florian La
9556           Roche).
9557         + modify setupterm() to allocate new TERMINAL for each call, just as
9558           solaris' curses does (Alexander V Lukyanov 960829).
9559         + corrected memory leaks in read_entry.c
9560         + add configure options --with-dbmalloc, --with-dmalloc, and
9561           --disable-leaks, tested by instrumenting infocmp, ncurses programs.
9562         + move #include's for stdlib.h and string.h to *.priv.h to accommodate
9563           use of dbmalloc.
9564         + modify use of $(LN_S) to follow recommendation in autoconf 2.12,
9565           i.e., set current directory before linking.
9566         + split-out panel.priv.h, improve dependencies for forms, menus
9567           (Juergen Pfeifer 961204).
9568         + modify _nc_freewin() to reset globals curscr/newscr/stdscr when
9569           freeing the corresponding WINDOW (found using Purify).
9570         + modify delwin() to return ERR if the window to be deleted has
9571           subwindows, needed as a side-effect of resizeterm() (found using
9572           Purify).  Tested and found that SVr4 curses behaves this way.
9573         + implement logic for _nc_freeall(), bringing stub up to date.
9574
9575 961215
9576         + modify wbkgd() so that it doesn't set nulls in the rendered text,
9577           even if its argument doesn't specify a character (fixes test case by
9578           Juergen Pfeifer for bug-report).
9579         + set window-attributes in wbkgd(), to simplify comparison against
9580           Solaris curses, which does this.
9581
9582 961214  - snapshot
9583         + replace most constants in ncurses 'o' test by expressions, making it
9584           work with wider range of screen sizes.
9585         + add options to ncurses.c to specify 'e' test softkey format, and the
9586           number of header/footer lines to rip-off.
9587         + add ^R (repaint after resize), ^L (refresh) commands to ncurses 'p'
9588           test.
9589         + add shell-out (!) command to ncurses 'p' test to allow test of
9590           resize between endwin/refresh.
9591         + correct line-wrap case in mvcur() by emitting carriage return,
9592           overlooked in 960928, but needed due to SVr4 compatibility changes to
9593           terminal modes in 960907.
9594         + correct logic in wresize that causes new lines to be allocated,
9595           broken for the special case of increasing rows only in 960907's fix
9596           for subwindows.
9597         + modify configure script to generate $(LDFLAGS) with -L and -l options
9598           in preference to explicit library filenames.  (NOTE: this may
9599           require further amending, since I vaguely recall a dynamic loader
9600           that did not work properly without the full names, but it should be
9601           handled as an exception to the rule, since some linkers do bulk
9602           inclusion of libraries when given the full name - T.Dickey).
9603         + modify configure script to allow user-supplied $CFLAGS to set the
9604           debug-option in all libraries (requested by lots of people) -TD
9605         + use return consistently from main(), rather than exit (reported by
9606           Florian La Roche).
9607         + add --enable-getcap-cache option to configure, normally disabled
9608           (requested by Florian La Roche).
9609         + make configure test for gettimeofday() and possibly -lbsd more
9610           efficient (requested by Florian La Roche <florian@knorke.saar.de>)
9611         + minor adjustments to Ada95 binding (patches by Juergen Pfeifer)
9612         + correct attributes after emitting orig_pair in lib_vidattr.c (patch
9613           by Alexander V Lukyanov).
9614
9615 961208
9616         + corrected README wrt Ada95 (Juergen Pfeifer)
9617
9618 961207  - snapshot
9619         + integrate resizeterm() into doupdate(), so that if screen size
9620           changes between endwin/refresh, ncurses will resize windows to fit
9621           (this needs additional testing with pads and softkeys).
9622         + add, for memory-leak testing, _nc_freeall() entrypoint to free all
9623           data used in ncurses library.
9624         + initialize _nc_idcok, _nc_idlok statically to resolve discrepancy
9625           between initscr() and newwin() initialization (reported by
9626           Alexander V Lukyanov).
9627         + test built VERSION=4.0, SHARED_ABI=4 with Linux ld.so.1.8.5
9628           (set beta versions to those values -- NOTE that subsequent pre-4.0
9629           beta may not be interchangeable).
9630         + modify configure script to work with autoconf 2.12
9631
9632 961130  1.9.9g release
9633         + add copyright notices to configuration scripts (written by Thomas
9634           Dickey).
9635
9636 961127
9637         > patch, mostly for panel (Juergen Pfeifer):
9638         + cosmetic improvement for a few routines in the ncurses core library
9639           to avoid warning messages.
9640         + the panel overlap detection was broken
9641         + the panel_window() function was not fool-proof.
9642         + Some inlining...
9643         + Cosmetic changes (also to avoid warning messages when compiling with
9644           -DTRACE).
9645
9646 961126
9647         > patch by Juergen Pfeifer:
9648         + eliminates warning messages for the compile of libform.
9649         + inserts Per Foreby's new field type TYPE_IPV4 into libform.
9650         + Updates man page and the Ada95 binding to reflect this.
9651         + Improves inlining in libmenu and libform.
9652
9653 961120
9654         + improve the use of the "const" qualifier in the
9655           panel library (Juergen Pfeifer)
9656         + change set_panel_userptr() and panel_userptr() to use void*
9657           (Juergen Pfeifer)
9658
9659 961119
9660         + change ABI to 3.4
9661         + package with 961119 version of Ada95 binding (fixes for gnat-3.07).
9662           (Juergen Pfeifer)
9663         + correct initialization of the stdscr pseudo panel in panel library
9664           (Juergen Pfeifer)
9665         + use MODULE_ID (rcs keywords) in forms and menus libraries (Juergen
9666           Pfeifer).
9667         > patch #324 (ESR):
9668         + typo in curs_termcap man page (reported by Hendrik Reichel
9669           <106065.2344@compuserve.com>)
9670         + change default xterm entry to xterm-r6.
9671         + add entry for color_xterm
9672
9673 961116  - snapshot
9674         + lint found several functions that had only #define implementations
9675           (e.g., attr_off), modified curses.h.in to generate them as per XSI
9676           Curses requirement that every macro be available as a function.
9677         + add check in infocmp.c to guard against string compare of
9678           CANCELLED_STRING values.
9679         + modify firework.c, rain.c to hide cursor while running.
9680         + correct missing va_end in lib_tparm.c
9681         + modify hanoi.c to work on non-color terminals, and to use timing
9682           delays when in autoplay mode.
9683         + correct 'echochar()' to refresh immediately (reported by Adrian
9684           Garside <94ajg2@eng.cam.ac.uk>)
9685         > patch #322 (ESR):
9686         + reorganize terminfo.src entries for xterm.
9687
9688 961109  - snapshot
9689         + corrected error in line-breakout logic (lib_doupdate.c)
9690         + modified newdemo to use wgetch(win) rather than getch() to eliminate
9691           a spurious clear-screen.
9692         + corrected ifdef's for 'poll()' configuration.
9693         + added modules to ncurses, form, menu for Ada95 binding (Juergen
9694           Pfeifer).
9695         + modify set_field_buffer() to allow assignment of string longer than
9696           the initial buffer length, and to return the complete string rather
9697           than only the initial size (Juergen Pfeifer and Per Foreby
9698           <perf@efd.lth.se>).
9699
9700 961102  - snapshot
9701         + configure for 'poll()' in preference to 'select()', since older
9702           systems are more likely to have a broken 'select()'.
9703         + modified render_char() to avoid OR'ing colors.
9704         + minor fixes to testcurs.c, newdemo.c test programs: ifdef'd out the
9705           resize test, use wbkgd and corrected box() parameters.
9706         + make flushinp() test work in ncurses.c by using napms() instead of
9707           sleep().
9708         + undo ESR's changes to xterm-x11r6 (it no longer matched the X11R6.1
9709           distribution, as stated)
9710         + terminfo 9.13.18 resync (ESR)
9711         + check for getenv("HOME") returning null (ESR).
9712         + change buffer used to decode xterm-mouse commands to unsigned to
9713           handle displays wider than 128 chars (Juergen Pfeifer).
9714         + correct typo curs_outopts.3x (Juergen Pfeifer).
9715         + correct limit-checking in wenclose() (Juergen Pfeifer).
9716         + correction to Peter Wemm's newwin change (Thomas Fehr
9717           <fehr@suse.de>).
9718         + corrections to logic that combines colors and attributes; they must
9719           not be OR'd (Juergen Pfeifer, extending from report/patch by Rick
9720           Marshall).
9721
9722 961026  - snapshot
9723         + reset flags in 'getwin()' that might cause refresh to attempt to
9724           manipulate the non-existent parent of a window that is read from a
9725           file (lib_screen.c).
9726         + restructure _nc_timed_wait() to log more information, and to try to
9727           recover from badly-behaved 'select()' calls (still testing this).
9728         + move define for GOOD_SELECT into configure script.
9729         + corrected extra '\' character inserted before ',' in comp_scan.c
9730         + corrected expansion of %-format characters in dump_entry.c; some were
9731           rendered as octal constants.
9732         + modify dump_entry.c to make terminfo output more readable and like
9733           SVr4, by using "\s" for spaces (leading/trailing only), "\," for
9734           comma, "\^" and "\:" as well.
9735         + corrected some memory leaks in ncurses.c, and a minor logic error
9736           in the top-level command-parser.
9737         + correction for label format 4 (PC style with info line), a
9738           slk_clear(), slk_restore() sequence didn't redraw the info line
9739           (Juergen Pfeifer).
9740         + modified the slk window (if simulated) to inherit the background and
9741           default character attributes from stdscr (Juergen Pfeifer).
9742         + corrected limit-check in set_top_row (Juergen Pfeifer).
9743
9744 961019  - snapshot
9745         + correct loop-limit in wnoutrefresh(), bug exposed during pipe-testing
9746           had '.lastchar' entry one beyond '._maxx'.
9747         + modify ncurses test-program to work with data piped to it.
9748         + corrected pathname computation in run_tic.sh, removing extra "../"
9749           (reported by Tim Mooney).
9750         + modified configure script to use previous install's location for
9751           curses.h
9752         + added NetBSD and FreeBSD to platforms that use --prefix=/usr as
9753           a default.
9754
9755 961013
9756         + revised xterm terminfo descriptions to reflect the several versions
9757           that are available.
9758         + corrected a pointer reference in dump_entry.c that didn't test if
9759           the pointer was -1.
9760
9761 961005  - snapshot
9762         + correct _nc_mvcur_scrolln for terminals w/o scrolling region.
9763         + add -x option to hashtest to control whether it allows writes to the
9764           lower-right corner.
9765         + ifdef'd (NCURSES_TEST) the logic for _nc_optimize_enable to make it
9766           simpler to construct tests (for double-check of _nc_hash_map tests).
9767         + correct ifdef's for c++ in curses.h
9768         + change default xterm type to xterm-x11r6.
9769         + correct quoting in configure that made man-pages installed with
9770           $datadir instead of actual terminfo path.
9771         + correct whitespace in include/Caps, which caused kf11, clr_eol and
9772           clr_end to be omitted from terminfo.5
9773         + fix memory leaks in delscreen() (adapted from Alexander V Lukyanov).
9774         + improve appearance of marker in multi-selection menu (Juergen
9775           Pfeifer)
9776         + fix behavior for forms with all fields inactive (Juergen Pfeifer)
9777         + document 'field_index()' (Juergen Pfeifer)
9778         > patch #321 (ESR):
9779         + add some more XENIX keycap translations to include/Caps.
9780         + modify newwin to set initial state of each line to 'touched'
9781           (from patch by Peter Wemm <peter@spinner.dialix.com>)
9782         + in SET_TTY, replace TCSANOW with TCSADRAIN (Alexander V Lukyanov).
9783
9784 960928  - snapshot
9785         + ifdef'd out _nc_hash_map (still slower)
9786         + add graphic characters to vt52 description.
9787         + use PutAttrChar in ClrToEOL to ensure proper background, position.
9788         + simplify/correct logic in 'mvcur()' that does wrapping; it was
9789           updating the position w/o actually moving the cursor, which broke
9790           relative moves.
9791         + ensure that 'doupdate()' sets the .oldindex values back to a sane
9792           state; this was causing a spurious refresh in ncurses 'r'.
9793         + add logic to configure (from vile) to guard against builders who
9794           don't remove config.cache & config.status when doing new builds -TD
9795         + corrected logic for 'repeat_char' in EmitRange (cf: eric #317), which
9796           did not follow the 2-parameter scheme specified in XSI.
9797         + corrected logic of wrefresh, wnoutrefresh broken in #319, making
9798           clearok work properly (report by Michael Elkins).
9799         + corrected problem with endwin introduced by #314 (removing the
9800           scrolling-region reset) that broke ncurses.c tests.
9801         + corrected order of args in AC_CHECK_LIB (from report by Ami Fischman
9802           <fischman@math.ucla.edu>).
9803         + corrected formatting of terminfo.5 tables (Juergen Ehling)
9804         > patch 320 (ESR):
9805         + change ABI to 3.3
9806         + emit a carriage-return in 'endwin()' to workaround a kernel bug in
9807           BSDI.  (requested by Mike Karels <karels@redrock.bsdi.com>)
9808         + reverse the default o configure --enable-termcap (consensus).
9809         > patch 319 (ESR):
9810         + modified logic for clearok and related functions (from report by
9811           Michael Elkins) - untested
9812         > patch 318 (ESR):
9813         + correction to #317.
9814         > patch 317 (ESR):
9815         + re-add _nc_hash_map
9816         + modify EmitRange to maintain position as per original design
9817           (patch by A. Lukyanov).
9818         + modify test/ncurses.c and tputs, etc., to allow trace counting
9819           output characters.
9820         + add hashtest.c program to time the hashmap optimization.
9821         > patch 316 (ESR):
9822         + add logic to deal with magic-cookie (how was this tested?)
9823           (lib_doupdate.c).
9824         + add ncurses.c driver for magic-cookie, some fixes to ncurses.c
9825         > patch 315 (ESR):
9826         + merge changes to lib_doupdate.c to use ech and rep - untested
9827           (patch by Alexander V Lukyanov).
9828         + modified handling of interrupted system calls - untested
9829           (lib_getch.c, lib_twait.c).
9830         + new function _nc_mvcur_resume()
9831         + fix return value for 'overlay()', 'overwrite()'
9832
9833 960914  - snapshot
9834         + implement subwindow-logic in wresize, minor fixes to ncurses 'g'
9835           test.
9836         + corrected bracketing of fallback.c (reported/suggested fix by Juergen
9837           Ehling <eh@eclipse.aball.de>).
9838         + update xterm-color to reflect XFree86 3.1.3G release.
9839         + correct broken dtterm description from #314 patch (e.g., spurious
9840           newline.  The 'pairs' change might work, but no one's tested it
9841           either ;-)
9842         + clarify the documentation for the builtin form fieldtypes (Juergen
9843           Pfeifer)
9844         > patch 314 (ESR):
9845         + reset scroll region on startup rather than at wrapup time
9846           (enhancement suggested by Alexander V Lukyanov).
9847         + make storage of palette tables and their size counts per-screen for
9848           multi-terminal applications (suggested by Alexander V Lukyanov).
9849         + Improved error reporting for infotocap translation errors.
9850         + Update terminfo.src to 9.13.14.
9851
9852 960907  - snapshot
9853         + rewrote wgetstr to make it erase control chars and also fix bogus use
9854           of _nc_outstr which caused the display to not wrap properly (display
9855           problem reported by John M. Flinchbaugh <glynis@netrax.net>)
9856         + modify ncurses 'f' test to accommodate terminal responses to C1 codes
9857           (and split up this screen to accommodate non-ANSI terminals).
9858         + test enter_insert_mode and exit_insert_mode in has_ic().
9859         + removed bogus logic in mvcur that assumes nl/nonl set output modes
9860           (XSI says they are input modes; SVr4 implements this).
9861         + added macros SET_TTY, GET_TTY to term.h
9862         + correct getstr() logic that altered terminal modes w/o restoring.
9863         + disable ICRNL, etc., during initialization to match SVr4, removing
9864           the corresponding logic from raw, cbreak, etc.
9865         + disable ONLCR during initialization, to match SVr4 (this is needed
9866           for cursor optimization when the cursor-down is a newline).
9867         + replaced ESR's imitation of wresize with my original (his didn't
9868           work).
9869
9870 960831  - snapshot
9871         + memory leaks (Alexander V. Lukyanov).
9872         + modified pnoutrefresh() to be more tolerant of too-large screen
9873           size (reported by Michael Elkins).
9874         + correct handling of terminfo files with no strings (Philippe De
9875           Muyter)
9876         + correct "tic -s" to take into account -I, -C options.
9877         + modify ncurses 'f' test to not print codes 80 through 9F, since they
9878           are considered control codes by ANSI terminals.
9879
9880 960824  - snapshot
9881         + correct speed variable-type in 'tgetent()' (reported by Peter Wemm)
9882         + make "--enable-getcap" configuration-option work (reported by
9883           Peter Wemm <peter@spinner.DIALix.COM>)
9884
9885 960820
9886         + correct err in 960817 that changed return-value of tigetflag()
9887           (reported by Alexander V. Lukyanov).
9888         + modify infocmp to use library default search-path for terminfo
9889           directory (Alexander V. Lukyanov).
9890
9891 960817  - snapshot
9892         + corrected an err in mvcur that broke resizing-behavior.
9893         + correct fall-thru behavior of _nc_read_entry(), which was not finding
9894           descriptions that existed in directories past the first one searched
9895           (reported by Alexander V. Lukyanov)
9896         + corrected typo in dtterm description.
9897         > patch 313 (ESR):
9898         + add dtterm description
9899         + clarify ncurses 'i' test (drop mvwscanw subtest)
9900
9901 960810  - snapshot
9902         + correct nl()/nonl() to work as per SVr4 & XSI.
9903         + minor fixes to ncurses.c (use 'noraw()', mvscanw return-code)
9904         + refine configure-test for "-g" option (Tim Mooney).
9905         + correct interaction between O_BLANK and NEW_LINE request in form
9906           library (Juergen Pfeifer)
9907
9908 960804
9909         + revised fix to tparm; previous fix reversed parameter order.
9910         > patch 312 (ESR):
9911           correct terminfo.src corrupted by #310
9912         > patch 311 (ESR):
9913         + fix idlok() and idcok() and the default of the idlok switch (report
9914           by Ville Sulko).
9915
9916 960803  - snapshot
9917         + corrected tparm to handle capability strings without explicit pop
9918           (reported by William P Setzer)
9919         + add fallback def for GCC_NORETURN, GCC_UNUSED for termcap users
9920           (reported by Tim Mooney).
9921         > patch 310 (ESR):
9922         + documentation and prototyping errors for has_color, immedok and idcok
9923           (reported by William P Setzer <wsetzer@pams.ncsu.edu>)
9924         + updated qnx terminfo entry (patch by Michael Hunter)
9925
9926 960730
9927         + eliminate quoted includes in ncurses subdirectory, ensure config.h
9928           is included first.
9929         + newterm initializes terminal settings the same as initscr (reported
9930           by Tim Mooney).
9931
9932 960727  - snapshot
9933         + call cbreak() in initscr(), as per XSI & SVr4.
9934         + turn off hardware echo in initscr() as per XSI & SVr4
9935         > patch 309 (ESR):
9936         + terminfo changes (9.3.9), from BRL
9937         + add more checks to terminfo parser.
9938         + add more symbols to infocmp.
9939
9940 960720  - snapshot
9941         + save previous-attribute in lib_vidattr.c if SP is null (reported by
9942           Juergen Fluk <louis@dachau.marco.de>)
9943         + corrected calls on _nc_render so that background character is set
9944           as per XSI.
9945         + corrected wbkgdset macro (XSI allows background character to be
9946           null), and tests that use it.
9947         + more corrections to terminfo (xterm & rxvt)
9948         + undid change to mcprint prototype (cannot use size_t in curses.h
9949           because not all systems declare it in the headers that we can safely
9950           include therein).
9951         + move the ifdefs for errno into curses.priv.h
9952         > patch 308 (ESR):
9953         + terminfo changes (9.3.8)
9954         + modified logic of error-reporting in terminfo parser
9955         + fix option-processing bug in toe.
9956
9957 960713  - snapshot
9958         + always check for <sys/bsdtypes.h> since ISC needs it to declare
9959           fd_set (Juergen Pfeifer)
9960         + install shared-libraries on NetBSD/FreeBSD with ABI-version (reported
9961           by Juergen Pfeifer, Mike Long)
9962         + add LOCAL_LDFLAGS2 symbol (Juergen Pfeifer)
9963         + corrected prototype for delay_output() -- bump ABI to 3.2
9964         + patch 307 (ESR):
9965         + enable more translations of nonstandard caps, and document them.
9966         + misc/terminfo.src update to 9.13.8
9967         + patch 306 (ESR):
9968         + moved logic that filters out rmul and rmso from setupterm to newterm
9969           where it is less likely to interfere with termcap applications.
9970         + cosmetic fixes to test/ncurses.c
9971         + modify open() call in ncurses/read_entry.c to use O_RDONLY symbol
9972           rather than constant (report by mib).
9973         + misc/terminfo.src sgr0 and acsc changes (report by Philippe De
9974           Muyter).
9975         + modify ncurses/comp_parse.c so that entries containing a "+" can
9976           have missing rmcup vs smcup.
9977
9978 960707
9979         + rollback ESR's #305 change to terminfo.src (it breaks existing
9980           applications, e.g., 'less 290').
9981         + correct path of edit_man.sh, and fix typo that made all man-pages
9982           preformatted.
9983         + restore man/menu_requestname.3x omitted in Zeyd's resync (oops).
9984         + auto-configure the GCC_PRINTFLIKE/GCC_SCANFLIKE macros (reported by
9985           Philippe De Muyter).
9986
9987 960706  - snapshot
9988         + make lib_vidattr.c more readable using macros.
9989         + filter out rmul, rmso that conflict with sgr0 when reading terminal
9990           descriptions.
9991         + work around autoconf bug, force $INSTALL to absolute path
9992           (reported by Zeyd).
9993         + modify man-page install for BSDI to install preformatted .0 files
9994           (reported by David MacKenzie).
9995         + add/use gcc __attribute__ for printf and scanf in curses.h
9996         + added SGR attributes test-case to ncurses
9997         + revised ncurses 't' logic to show trace-disable effect in the menu.
9998         + use getopt in ncurses program to process -s and -t options.
9999         + make ncurses 'p' legend toggle with '?'
10000         + disable scrollok during the ncurses 'p' test; if it is enabled the
10001           stdscr will scroll when putting the box-corners in the lower-right
10002           of the screen.
10003         > patch 305 (ESR):
10004         + added sanity-checking of various paired string attributes.
10005         + misc/terminfo.src update to 9.13.7 (report by A. Lukyanov).
10006         + modify man/Makefile.in to make terminfo.5 during normal build.
10007         > patch 304 (ESR):
10008         + corrected allocation-length for $HOME/.terminfo path.
10009
10010 960629  - snapshot
10011         + check return code of _nc_mvcur_scrolln() in _nc_scroll_optimize() for
10012           terminals with no scrolling-support (reported by Nikolay Shadrin
10013           <queen@qh.mirea.ac.ru>)
10014         + added ^S scrollok-toggle to ncurses 'g' test.
10015         + added ^T trace-toggle to ncurses tests.
10016         + modified ncurses test program to use ^Q or ESC consistently for
10017           terminating tests (rather than ^D), and to use control keys rather
10018           than function keys in 'g' test.
10019         + corrected misplaced wclrtoeol calls in addch to accommodate wrapping
10020           (reported by Philippe De Muyter).
10021         + modify lib_doupdate.c to use effective costs to tradeoff between
10022           delete-character/insert-character vs normal updating (reported by
10023           David MacKenzie).
10024         + compute effective costs for screen update operations (e.g., clr_eos,
10025           delete_character).
10026         + corrected error in knight.c exposed by wrap fixes in 960622; the
10027           msgwin needed scrollok set.
10028         + corrected last change to IDcTransformLine logic to avoid conflict
10029           between PutRange and InsStr
10030         + modified run_tic.sh to not use /usr/tmp (reported by David
10031           MacKenzie), and further revised it and aclocal.m4 to use $TMPDIR if
10032           set.
10033         + corrected off-by-one in RoomFor call in read_entry.c
10034
10035 960622  - snapshot
10036         + modified logic that wraps cursor in addch to follow the XSI spec,
10037           (implemented in SVr4) which states that the cursor position is
10038           updated when wrapping.  Renamed _NEED_WRAP to _WRAPPED to reflect the
10039           actual semantics.
10040         + added -s option to tic, to provide better diagnostics in run_tic.sh
10041         + improved error-recovery for tabset install.
10042         + change ABI to 3.1 (dropped tparam, corrected getbkgd(), added
10043           _yoffset to WINDOW).
10044         + modified initialization of SP->_ofp so that init_acs() is called with
10045           the "right" file pointer (reported by Rick Marshall <rjm@nlc.net.au>
10046         + documentation fixes (Juergen Pfeifer).
10047         + corrected, using new SCREEN and WINDOW members, the behavior of
10048           ncurses if one uses ripoffline() to remove a line from the top of the
10049           screen (Juergen Pfeifer).
10050         + modified autoconf scripts to prepare for Ada95 (GNAT) binding to
10051           ncurses (Juergen Pfeifer).
10052         + incorrect buffer-size in _nc_read_entry, reported by ESR.
10053
10054 960617
10055         + corrected two logic errors in read_entry.c, write_entry.c (called by
10056           tic, the write/read of terminfo entries used inconsistent rules for
10057           locating the entries; the $TERMINFO_DIRS code would find only the
10058           first entry in a list).
10059         + refined pathname computation in run_tic.sh and shlib.
10060         + corrected initialization of $IP in misc/run_tic.sh
10061
10062 960615  - snapshot
10063         + ifdef'd out _nc_hash_map() call because it does not improve speed.
10064         + display version of gcc if configure script identifies it.
10065         + modify configure script to use /usr as Linux's default prefix.
10066         + modify run_tic.sh to use shlib script, fixes some problems installing
10067           with a shared-library configuration.
10068         + adjusted configure script so that it doesn't run tests with the
10069           warnings turned on, which makes config.log hard to read.
10070         + added 'lint' rule to top-level Makefile.
10071         + added configure option '--with-install-prefix' for use by system
10072           builders to install into staging locations (requested by
10073           Charles Levert <charles@comm.polymtl.ca>).
10074         + corrected autoconfigure for Debian man program; it's not installed
10075           as "man_db".
10076         + set noecho in 'worm'; it was ifdef'd for debug only
10077         + updated test/configure.in for timing-display in ncurses 'p' test
10078         + corrected misspelled 'getbkgd()'.
10079         + corrected wbkgdset to work like observed syvr4 (sets A_CHARTEXT part
10080           to blank if no character given, copies attributes to window's
10081           attributes).
10082         + modified lib_doupdate.c to use lower-level SP's current_attr state
10083           instead of curscr's state, since it is redundant.
10084         + correction to IDcTransformLine logic which controls where InsStr is
10085           invoked (refined by Alexander V Lukyanov).
10086         > patch 303 (ESR):
10087         + conditionally include Chris Torek's hash function _nc_hash_map().
10088         + better fix for nvi refresh-bug (Rick Marshall)
10089         + fix for bug in handling of interrupted keystroke waits,
10090           (Werner Fleck).
10091         + misc/ncurses-intro.html syntax fix (Kajiyama Tamito).
10092
10093 960601  - snapshot
10094         + auto-configure man-page compression-format and renames for Debian.
10095         + corrected several typos in curses.h.in (i.e., the mvXXXX macros).
10096         + re-order curses.priv.h for lint.
10097         + added rules for lintlib, lint
10098         + corrected ifdef for BROKEN_LINKER in MKnames.awk.in
10099         + corrected missing INSTALL_DATA in misc/Makefile.in
10100         + flush output when changing cursor-visibility (Rick Marshall)
10101         + fix a minor bug in the _nc_ripoff() routine and improve error
10102           checking when creating the label window (Juergen Pfeifer).
10103         + enhancement to the control over the new PC-style soft key format.
10104           allow caller now to select whether or not one wants to have
10105           the index-line; see curs_slk.3x for documentation (Juergen Pfeifer).
10106         + typos, don't use inline with "-g" (Philippe De Muyter)
10107         + fixes for menus & wattr-, slk-functions (Juergen Pfeifer)
10108
10109 960526  - snapshot
10110         + removed --with-ticdir option altogether, maintain compatibility with
10111           existing applications via symbolic link in run_tic.sh
10112         + patch for termio.h, signal (Philippe De Muyter)
10113         + auto-configure gcc warning options rather than infer from version.
10114         + auto-configure __attribute__ for different gcc versions.
10115         + corrected special use of clearok() in hardscroll.c by resetting flag
10116           in wrefresh().
10117         + include stdlib.h before defs for EXIT_SUCCESS, for OSF/1.
10118         + include sys/types.h in case stdlib.h does not declare size_t.
10119         + fixes for makefile (Tim Mooney)
10120         + fixes for menus & forms (Juergen Pfeifer)
10121         > patch 302 (ESR):
10122         + improve hash function (suggested by Alexander V Lukyanov).
10123         + 9.13.4 update for terminfo.src
10124
10125 960518  - snapshot
10126         + revised ncurses.c panner test, let pad abut all 4 sides of screen.
10127         + refined case in lib_doupdate.c for ClrToEOL().
10128         + corrected prior change for PutRange (Alexander V Lukyanov
10129           <lav@yars.free.net>).
10130         + autoconf mods (Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>).
10131         + locale fix for forms (Philippe De Muyter <phdemuyt@ulb.ac.be>)
10132         + renamed "--with-datadir" option to "--with-ticdir" to avoid
10133           confusion, and made this check for the /usr/lib/terminfo pre-existing
10134           directory.
10135         > patches 299-301 (ESR):
10136         + html fixes (Phillippe de Muyter).
10137         + fix typo in ncurses-intro.html (report by Fabrizio Polacco).
10138         + added hashmap.c
10139         + mods to tracing, especially for ACS chars.
10140         + corrected off-by-one in IDCtransform.
10141         + corrected intermittent mouse bug by using return-value from read().
10142         + mods to parse_entry.c, for smarter defaults.
10143
10144 960512
10145         + use getopt in 'tic'; added -L option and modified -e option to allow
10146           list from a file.
10147
10148 960511
10149         + don't use fixed buffer-size in tparm().
10150         + modified tic to create terminfo directory if it doesn't exist.
10151         + added -T options to tic and infocmp (for testing/analysis)
10152         + refined the length criteria for termcap and terminfo
10153         + optimize lib_doupdate with memcpy, PutRange
10154         > patches 297, 298 (ESR):
10155         + implement TERMINFO_DIRS, and -o option of tic
10156         + added TRACE_IEVENT
10157         + fix REQ_TOGGLE_ITEM in menu/menu_driver.c; it could select but not
10158           deselect.
10159         + added lib_print.c (request by Rick Marshall).
10160         + added has_key() (request by Juergen Pfeifer).
10161         + do not issue clrtoeol or clrtobot if the relevant portion of the line
10162           is already blank (analysis by Keith Bostic).
10163         + add parentheses for parameters of COLOR_PAIR and PAIR_NUMBER macros
10164           (analysis by Jurgen Eidt).
10165         + update screen's notion of cursor position in endwin() (analysis by
10166           Alexander Lukyanov).
10167         + added 't' to ncurses.c test.
10168         + moved delay_output() to lib_tputs.c
10169         + removed tparam() (was added in 1.9.9, but conflicts with emacs and
10170           is not part of X/Open Curses).
10171         + removed boolean version of 'getm'.
10172         + misc cursor & optimization fixes.
10173
10174 960504  - snapshot
10175         + modified ncurses 'p' test to allow full-screen range for panner size.
10176         + fixes for locale (Philippe De Muyter <phdm@labauto1.ulb.ac.be>)
10177         + don't use fixed buffer-size in fmt_entry().
10178         + added usage-message to 'infocmp'.
10179         + modified install.includes rules to prepend subdirectory-name to
10180           "#include" if needed.
10181
10182 960430
10183         + protect wrefresh, wnoutrefresh from invocation with pad argument.
10184         + corrected default CCFLAGS in test/Makefile.
10185
10186 960428  - snapshot
10187         + implemented logic to support terminals with background color erase
10188           (e.g., rxvt and the newer color xterm).
10189         + improved screen update logic (off-by-one logic error; use clr_eos if
10190           possible)
10191
10192 960426  - snapshot
10193         + change ncurses 'a' test to run in raw mode.
10194         + make TIOCGWINSZ configure test less stringent, in case user
10195           configures via terminal that cannot get screen size.
10196         > patches 295, 296 (ESR):
10197         + split lib_kernel.c, lib_setup.c and names.c in order to reduce
10198           overhead for programs that use only termcap features.
10199         + new "-e" and "-h" options of tic (request by Tony Nugent).
10200         + fix bug in mandatory-delay logic in lib_tputs.c (report by Sven
10201           Verdoolaege).
10202         + fix for "infocmp -e" to emit correct initializers (reported by Manual
10203           J Novoa III).
10204         + restore working-directory in read_termcap.c (report by Kayvan
10205           Sylvan).
10206         + use "-h" option on Solaris when generating shared libraries on
10207           Solaris 2.5 to record the library name in the file, for assisting
10208           the loader (patch by Scott Kramer).
10209         + undo patch #294 changes to form and menu libraries (request by
10210           Juergen Pfeifer).
10211
10212 960418  - snapshot
10213         + use autoconf 2.9
10214         + fix for AIX 3.2.5 (must define _POSIX_SOURCE to get termios struct
10215           definitions via <termios.h>, modified macros in lib_raw.c to avoid
10216           K&R-style substitution)
10217         > patches 293, 294 (ESR):
10218         + rewrite wsyncup(), wsyncdown(), as well as small fixes to form and
10219           menu libraries to fix echo-breakage introduced by 1.8.9, 1.9.9e
10220           changes (patches by Juergen Pfeifer).
10221         + fix compile under QNX 4.2 by defining ONLCR in lib_raw.c when
10222           __QNX__ is defined (patch by Michael Hunter).
10223         + modify setupterm() to match documentation for its return value, fix
10224           newterm to work with this change (report by Emmet Lazich).
10225         + add checks in getch() for error, return ERR as appropriate (report by
10226           Emmet Lazich).
10227         + mods to wgetch() in cooked mode (report by Pete Seebach).
10228         + corrected askuser() logic in tset (patch by Remco Treffkorn).
10229         + correct interaction of endwin() with mouse processing (report by
10230           Michael Elkins).
10231         + added trace support for TTY flags
10232         + update terminfo.src to 9.13.1
10233         + FreeBSD console entries (patch by Andrew Chernov).
10234
10235 960406
10236         + fixes for NeXT, ISC and HPUX auto-configure
10237         + autogenerate development header-dependencies (config.h, *.priv.h)
10238         + corrected single-column formatting of "use=" (e.g., in tic)
10239         + modify tic to read full terminfo-names
10240         + corrected divide-by-zero that caused hang (or worse) when redirecting
10241           output
10242         + modify tic to generate directories only as-needed (and corrected
10243           instance of use of data from function that had already returned).
10244
10245 ### ncurses-1.9.8a -> 1.9.9e
10246
10247 * fixed broken wsyncup()/wysncdown(), as a result wnoutrefresh() now has
10248   copy-changed-lines behavior.
10249 * added and documented wresize() function.
10250 * more fixes to LOWER-RIGHT corner handling.
10251 * changed the line-breakout optimization code to allow some lines to be
10252   emitted before the first check.
10253 * added option for tic to use symbolic instead of hard links (for AFS)
10254 * fix to restore auto-wrap mode.
10255 * trace level can be controlled by environment variable.
10256 * better handling of NULs in terminal descriptions.
10257 * improved compatibility with observed SVR4 behavior.
10258 * the refresh behavior of over-lapping windows is now more efficient and
10259   behaves like SVR4.
10260 * use autoconf 2.7, which results in a working setup for SCO 5.0.
10261 * support for ESCDELAY.
10262 * small fixes for menu/form code.
10263 * the test directory has its own configure.
10264 * fixes to pads when optimizing scrolling.
10265 * fixed several off-by-one bugs.
10266 * fixes for termcap->terminfo translation; less restrictions more correct
10267   behavior.
10268
10269 ### ncurses-1.9.7 -> 1.9.8a
10270
10271 * teach infocmp -i to recognize ECMA highlight sequences
10272 * infocmp now dumps all SVr4 termcaps (not just the SVr4 ones) on -C
10273 * support infocmp -RBSD.
10274 * satisfy XSI Curses requirement that every macro be available as a function.
10275 * This represents the last big change to the public interface of ncurses. The
10276   ABI_VERSION has now been set at 3.0 and should stay there barring any great
10277   catastrophies or acts of God.
10278 * The C++ has been cleaned up in reaction to the changes to satisfy XSI's
10279   requirements.
10280 * libncurses now gets linked to libcurses to help seamless emulation
10281   (replacement) of a vendor's curses. --disable-overwrite turns this behavior
10282   off.
10283
10284 ### ncurses-1.9.6 -> 1.9.7
10285
10286 * corrected return values of setupterm()
10287 * Fixed some bugs in tput (it does padding now)
10288 * fixed a bug in tic that made it do the wrong thing on entries with more than
10289   one `use' capability.
10290 * corrected the screen-size calculation at startup time to alter the
10291   numeric capabilities as per SVr4, not just LINES and COLS.
10292 * toe(1) introduced; does what infocmp -T used to.
10293 * tic(1) can now translate AIX box1 and font[0123] capabilities.
10294 * tic uses much less core, the dotic.sh kluge can go away now.
10295 * fix read_entry() and write_entry() to pass through cancelled capabilities OK.
10296 * Add $HOME/.terminfo as source/target directory for terminfo entries.
10297 * termcap compilation now automatically dumps an entry to $HOME/.terminfo.
10298 * added -h option to toe(1).
10299 * added -R option to tic(1) and infocmp(1).
10300 * added fallback-entry-list feature.
10301 * added -i option to infocmp(1).
10302 * do a better job at detecting if we're on SCO.
10303
10304 ### ncurses-1.9.5 -> 1.9.6
10305
10306 * handling of TERMCAP environment variables now works correctly.
10307 * various changes to shorten termcap translations to less that 1024 chars.
10308 * tset(1) added
10309 * mouse support for xterm.
10310 * most data tables are now const and accordingly live in shareable text space.
10311 * Obey the XPG4/SVr4 practice that echo() is initally off.
10312 * tic is much better at translating XENIX and AIX termcap entries now.
10313 * tic can interpret ko capabilities now.
10314 * integrated Juergen Pfeifer's forms library.
10315 * taught write_entry() how not to write more than it needs to; this change
10316   reduces the size of the terminfo tree by a full 26%!
10317 * infocmp -T option added.
10318 * better warnings about historical tic quirks from tic.
10319
10320 ### ncurses 1.9.4 -> 1.9.5
10321
10322 * menus library is now included with documentation.
10323 * lib_mvcur has been carefully profiled and tuned.
10324 * Fixed a ^Z-handling bug that was tanking lynx(1).
10325 * HJ Lu's patches for ELF shared libraries under Linux
10326 * terminfo.src 9.8.2
10327 * tweaks for compiling in seperate directories.
10328 * Thomas Dickey's patches to support NeXT's brain-dead linker
10329 * Eric Raymond's patches to fix problems with long termcap entries.
10330 * more support for shared libraries under SunOS and IRIX.
10331
10332 ### ncurses 1.9.3 -> 1.9.4
10333
10334 * fixed an undefined-order-of-evaluation bug in lib_acs.c
10335 * systematically gave non-API public functions and data an _nc_ prefix.
10336 * integrated Juergen Pfeifer's menu code into the distribution.
10337 * totally rewrote the knight test game's interface
10338
10339 ### ncurses 1.9.2c -> 1.9.3
10340
10341 * fixed the TERMCAP_FILE Support.
10342 * fixed off-by-one errors in scrolling code
10343 * added tracemunch to the test tools
10344 * took steps to cut the running time of make install.data
10345
10346 ### ncurses 1.9.2c -> 1.9.2d
10347
10348 * revised 'configure' script to produce libraries for normal, debug,
10349   profile and shared object models.
10350
10351 ### ncurses 1.9.1 -> 1.9.2
10352
10353 * use 'autoconf' to implement 'configure' script.
10354 * panels support added
10355 * tic now checks for excessively long termcap entries when doing translation
10356 * first cut at eliminating namespace pollution.
10357
10358 ### ncurses 1.8.9 -> 1.9
10359
10360 * cleanup gcc warnings for the following: use size_t where 'int' is not
10361   appropriate, fixed some shadowed variables, change attr_t to compatible with
10362   chtype, use attr_t in some places where it was confused with 'int'.
10363 * use chtype/attr_t casts as appropriate to ensure portability of masking
10364   operations.
10365 * added-back waddchnstr() to lib_addstr.c (it had been deleted).
10366 * supplied missing prototypes in curses.h
10367 * include <termcap.h> in lib_termcap.c to ensure that the prototypes
10368   are consistent (they weren't).
10369 * corrected prototype of tputs in <termcap.h>
10370 * rewrote varargs parsing in lib_tparm.c (to avoid referencing memory
10371   that may be out of bounds on the stack) -- Purify found this.
10372 * ensure that TRACE is defined in lib_trace.c (to solve prototype
10373   warnings from gcc).
10374 * corrected scrolling-region size in 'mvcur_wrap()'
10375 * more spelling fixes
10376 * use 'calloc()' to allocate WINDOW struct in lib_newwin.c (Purify).
10377 * set default value for SP->_ofp in lib_set_term.c (otherwise SunOS dumps
10378   core in init_acs()).
10379 * include <errno.h> in write_entry.c (most "braindead" includes declare errno
10380   in that file).
10381
10382 ### ncurses 1.8.8 -> 1.8.9
10383
10384 * compile (mostly) clean with gcc 2.5.8 -Wall -Wstrict-prototypes
10385   -Wmissing-prototypes -Wconversion and using __attribute__ to flush out
10386   non-portable use of "%x" for pointers, or for chtype data (which is declared
10387   as a long).
10388 * modified doupdate to ensure that typahead was turned on before attempting
10389   select-call (otherwise, some implementations hang).
10390 * added trace mask TRACE_FIFO, use this in lib_getch.c to allow finer
10391   resolution of traces.
10392 * improved bounds checking on several critical functions.
10393 * the data directory has been replaced by the new master terminfo file.
10394 * -F file-comparison option added to infocmp.
10395 * compatibility with XSI Curses is now documented in the man bages.
10396 * wsyncup/wsyncdown functions are reliable now; subwindow code in general
10397   is much less flaky.
10398 * capabilities ~msgr, tilde_glitch, insert_padding, generic_type, no_pad_char,
10399   memory_above, memory_below, and hard_copy are now used properly.
10400 * cursor-movement optimization has been completely rewritten.
10401 * vertical-movement optimization now uses hardware scrolling, il, dl.
10402
10403 ### ncurses 1.8.7 -> 1.8.8
10404 * untic no longer exists, infocmp replaces it.
10405 * tic can understand termcap now, especially if it is called captoinfo.
10406 * The Linux Standard Console terminfo entry is called linux insead of console.
10407   It also uses the kernel's new method of changing charsets.
10408 * initscr() will EXIT upon error (as the docs say) This wil mostly happen if
10409   you try to run on an undefined terminal.
10410 * I can get things running on AIX but tic can't compile terminfo. I have to
10411   compile entries on another machine. Volunteers to hunt this bug are welcome.
10412 * wbkgd() and wbkgdset() can be used to set a windows background to color.
10413   wclear()/werase() DO NOT use the current attribute to clear the screen.
10414   This is the way SVR4 curses works. PDCurses 2.1 is broken in this respect,
10415   though PDCurses 2.2 has been fixed.
10416 * cleaned up the test/ directory.
10417 * test/worm will segfault after quite a while.
10418 * many spelling corrections courtesy of Thomas E. Dickey
10419
10420 ### ncurses 1.8.6 -> 1.8.7
10421 * cleaned up programs in test/ directory.
10422 * fixed wbkgdset() macro.
10423 * modified getstr() to stop it from advancing cursor in noecho mode.
10424 * modified linux terminfo entry to work with the latest kernel to get
10425   the correct alternate character set.
10426 * also added a linux-mono entry for those running on monochrome screens.
10427 * changed initscr() so that it behaves like the man page says it does.
10428   this fixes the problem with programs in test/ crashing with SIGSEV if
10429   a terminal is undefined.
10430 * modified addch() to avoid using any term.h #define's
10431 * removed duplicate tgoto() in lib_tparm.c
10432 * modified dump_entry.c so that infocmp deals correctly with ',' in acsc
10433 * modified delwin() to correctly handle deleting subwindows.
10434 * fixed Makefile.dist to stop installing an empty curses.h
10435 * fixed a couple of out-of-date notes in man pages.
10436
10437 ### ncurses 1.8.5 -> 1.8.6
10438 * Implemented wbkgd(), bkgd(), bkgdset(), and wbkgdset().
10439 * The handling of attributes has been improved and now does not turn off color
10440   if other attributes are turned off.
10441 * scrolling code is improved. Scrolling in subwindows is still broken.
10442 * Fixes to several bugs that manifest them on platforms other than Linux.
10443 * The default to meta now depends on the status of the terminal when ncurses
10444   is started.
10445 * The interface to the tracing facility has changed.  Instead of the pair of
10446   functions traceon() and traceoff(), there is just one function trace() which
10447   takes a trace mask argument.  The trace masks, defined in curses.h, are
10448   as follows:
10449
10450         #define TRACE_DISABLE   0x00    /* turn off tracing */
10451         #define TRACE_ORDINARY  0x01    /* ordinary trace mode */
10452         #define TRACE_CHARPUT   0x02    /* also trace all character outputs */
10453         #define TRACE_MAXIMUM   0x0f    /* maximum trace level */
10454
10455   More trace masks may be added, or these may be changed, in future releases.
10456 * The pad code has been improved and the pad test code in test/ncurses.c has
10457   been improved.
10458 * The prototype ansi entry has been changed to work with a wider variety
10459   of emulators.
10460 * Fix to the prototype ansi entry that enables it to work with PC emulators
10461   that treat trailing ";m" in a highlight sequence as ";0m"; this doesn't
10462   break operation with any emulators.
10463 * There are now working infocmp, captoinfo, tput, and tclear utilities.
10464 * tic can now compile entries in termcap syntax.
10465 * Core-dump bug in pnoutrefresh fixed.
10466 * We now recognize and compile all the nonstandard capabilities in Ross
10467   Ridge's mytinfo package (rendering it obsolete).
10468 * General cleanup and documentation improvements.
10469 * Fixes and additions to the installation-documentation files.
10470 * Take cursor to normal mode on endwin.
10471
10472 ### ncurses 1.8.4 -> 1.8.5
10473 * serious bugs in updating screen which caused erratic non-display,
10474   fixed.
10475 * fixed initialization for getch() related variable which cause
10476   unpredictable results.
10477 * fixed another doupdate bug which only appeared if you have
10478   parm_char.
10479 * implemented redrawln() and redrawwin().
10480 * implemented winsnstr() and related functions.
10481 * cleaned up insertln() and deleteln() and implemented (w)insdeln().
10482 * changed Makefile.dist so that installation of man pages will
10483   take note of the terminfo directory.
10484 * fixed Configure (removed the mysterious 'X').
10485 * Eric S. Raymond fixed the script.* files so that they work with
10486   stock awk.
10487
10488 #### ncurses 1.8.3 -> 1.8.4 #### ####
10489 * fixed bug in refreshing the screen after return from shell_mode.
10490   There are still problems but they don't manifest themselves on
10491   my machine (Linux 0.99.14f).
10492 * added wgetnstr() and modified things accordingly.
10493 * fixed the script.src script.test to work with awk not just gawk.
10494 * Configure can now take an argument of the target system.
10495 * added test/ncurses.c which replaces several other programs and
10496   performs more testing.
10497 [Thanks to Eric S Raymond for the last 4]
10498 * more fixes to lib_overlay.c and added test/over.c to illustrate
10499   how it works.
10500 * fixed ungetch() to take int instead of ch.
10501 * fixes to cure wgetch() if flushinp() is called.
10502
10503 One note I forgot to mention in 1.8.3 is that tracing is off by
10504 default starting in the version. If you want tracing output, put
10505 traceon(); in your code and link with -ldcurses.
10506
10507 #### ncurses 1.8.2 -> ncurses 1.8.3 #### ####
10508 MAJOR CHANGES:
10509 1) The order of capabilities has been changed in order to achieve
10510 binary compatibility with SVR4 terminfo database. This has the
10511 unfortunate effect of breaking application currently linked with
10512 ncurses. To ensure correct behavior, recompile all such programs.
10513 Most programs using color or newer capabilities will break, others
10514 will probably continue to work ok.
10515
10516 2) Pavel Curtis has renounced his copyright to the public domain.
10517 This means that his original sources (posted to comp.sources.unix,
10518 volume 1) are now in the public domain.  The current sources are
10519 NOT in the public domain, they are copyrighted by me.  I'm
10520 entertaining ideas on what the new terms ncurses is released under.
10521
10522 3) Eric S. Raymond has supplied a complete set of man pages for
10523 ncurses in ?roff format. They will eventually replace most of the
10524 current docs. Both sets are included in this release.
10525
10526 Other changes and notes from 1.8.2 include:
10527 * SIGSEGV during scrolling no longer occurs.
10528 * Other problems with scrolling and use of idl have been corrected.
10529 * lib_getch.c has been re-written and should perform flawlessly.
10530   please use test/getch.c and any other programs to test this.
10531 * ripoffline() is implemented (Thanks to Eric) and slk_ functions
10532   changed accordingly.
10533 * I've added support for terminals that scroll if you write in the
10534   bottom-right corner.
10535 * fixed more bugs in pads code. If anybody has a program that uses
10536   pads I'd love a copy.
10537 * correct handling for terminal with back_color_erase capability
10538   (such as Linux console, and most PC terminals)
10539 * ^Z handling apparently didn't work (I should never trust code
10540   sent me to me without extensive testing). It now seems to be
10541   fixed. Let me know if you have problems.
10542 * I've added support for Apollo and NeXT, but it may still be
10543   incomplete, especially when dealing with the lack of POSIX
10544   features.
10545 * scrolling should be more efficient on terminals with idl
10546   capabilities. Please see src/lib_scroll.c for more notes.
10547 * The line drawing routines were offset by 1 at both ends. This
10548   is now fixed.
10549 * added a few missing prototypes and macros (e.g. setterm())
10550 * fixed code in src/lib_overlay.c which used to crash.
10551 * added a few more programs in test/ The ones from the PDCurses
10552   package are useful, especially if you have SVR4 proper. I'm
10553   interested in the results you get on such a systems (Eric? ;-).
10554   They already exposed certain bugs in ncurses.
10555 * See src/README for porting notes.
10556 * The C++ code should really replace ncurses.h instead of working
10557   around it. It should avoid name-space clashes with nterm.h (use
10558   rows instead of lines, etc.)
10559 * The C++ should compile ok. I've added explicit rules to the
10560   Makefile because no C++ defaults are documented on the suns.
10561 * The docs say that echo() and nocbreak() are mutually exclusive.
10562   At the moment ncurses will switch to cbreak() if the case above
10563   occurs. Should it continue to do so? How about echo() and noraw()?
10564 * PDCurses seem to assume that wclear() will use current attribute
10565   when clearing the screen. According to Eric this is not the case
10566   with SVR4.
10567 * I have discovered, to my chagrin, SunOS 4.x (and probably other systems)
10568   * doesn't have vsscanf and God knows what else!  I've will do a vsscanf().
10569 * I've also found out that the src/script.* rely on gawk and will not
10570   work with stock awk or even with nawk. Any changes are welcome.
10571 * Linux is more tolerant of NULL dereferences than most systems. This
10572   fact was exposed by hanoi.
10573 * ncurses still seems inefficient in drawing the screen on a serial
10574   link between Linux and suns. The padding may be the culprit.
10575 * There seems to be one lingering problem with doupdate() after shelling
10576   out. Despite the fact the it is sending out the correct information
10577   to the terminal, nothing takes effect until you press ^L or another
10578   refresh takes place. And yes, output does get flushed.
10579
10580 #### ncurses 1.8.1 -> ncurses 1.8.2 #### Nov 28, 1993 ####
10581
10582 * added support for SVR4 and BSDI's BSD/386.
10583 * major update and fix to scrolling routine.
10584 * MORE fixes to stuff in lib_getch.c.
10585 * cleaned-up configuration options and can now generate
10586         Config.* files through an awk script.
10587 * changed setupterm() so it can be called more than once,
10588         add added set_curterm(), del_curterm().
10589 * a few minor cleanups.
10590 * added more prototypes in curses.h
10591
10592 #### ncurses 1.8 -> ncurses 1.8.1 #### Nov 4, 1993 ####
10593
10594 * added support for NeXTStep 3.0
10595 * added termcap emulation (not well tested).
10596 * more complete C++ interface to ncurses.
10597 * fixed overlay(), overwrite(), and added copywin().
10598 * a couple of bug fixes.
10599 * a few code cleanups.
10600
10601 #### ncurses 0.7.2/0.7.3 -> ncurses 1.8 #### Aug 31, 1993 ####
10602
10603 * The annoying message "can't open file." was due to missing
10604   terminfo entry for the used terminal. It has now been
10605   replaced by a hopefully more helpful message.
10606 * Problems with running on serial lines are now fixed.
10607 * Added configuration files for SunOS, Linux, HP/UX, Ultrix,
10608   386bsd/BSDI (if you have others send'em to me)
10609 * Cleaner Makefile.
10610 * The documentation in manual.doc is now more uptodate.
10611 * update optimization and support for hp terminals, and 386bsd
10612   console driver(s).
10613 * mvcur optimization for terminals without cursor addressing
10614   (doesn't work on Linux)
10615 * if cursor moved since last update, getch() will refresh the
10616   screen before working.
10617 * getch() & alarm() can now live together. in 0.7.3 a signal
10618   interrupted getch() (bug or feature?) now the getch is
10619   restarted.
10620 * scanw() et all were sick, now fixed.
10621 * support for 8-bit input (use meta()).
10622 * added default screen size to all terminfos.
10623 * added c++ Ncursesw class.
10624 * several minor bug fixes.
10625
10626 #### ncurses 0.7.2 -> ncurses 0.7.3 #### May 27, 1993 ####
10627
10628 * Config file to cope with different platforms (386BSD, BSDI, Ultrix, SunOS)
10629 * more fixes to lib_getch.c
10630 * changes related to Config
10631
10632 #### ncurses 0.7 -> ncurses 0.7.2 #### May 22, 1993 ####
10633
10634 * docs updated slightly (color usage is now documented).
10635 * yet another fix for getch(), this one fixes problems with ESC being swallowed
10636   if another character is typed before the 1 second timeout.
10637 * Hopefully, addstr() and addch() are 8-bit clean.
10638 * fixed lib_tparm.c to use stdarg.h (should run on suns now)
10639 * order of capabilities changed to reflect that specified in SYSV
10640   this will allow for binary-compatibility with existing terminfo dbs.
10641 * added halfdelay()
10642 * fixed problems with asc_init()
10643 * added A_PROTECT and A_INVIS
10644 * cleaned up vidputs()
10645 * general cleanup of the code
10646 * more attention to portability to other systems
10647 * added terminfos for hp70092 (wont work until changes to lib_update.c are
10648   made) and 386BSD pcvt drivers.
10649
10650 Thanks to Hellmuth Michaelis for his help.
10651 optimization code is slated for the next major release, stay tuned!
10652
10653 #### ncurses 0.6/0.61 -> ncurses 0.7 #### April 1, 1993
10654 Please note that the next release will be called 1.8. If you want to know about
10655 the rationale drop me a line.
10656
10657 Included are several test programs in test/.
10658 I've split up the panels library, reversi, tetris, sokoban. They are now
10659 available separately from netcom.com:pub/zmbenhal/
10660
10661 * color and ACS support is now fully compatible with SYSV at the terminfo
10662   level.
10663 * Capabilities now includes as many SYSV caps I could find.
10664 * tigetflag,tigetnum,tigetstr functions added.
10665 * boolnames, boolfnames, boolcodes numnames, numfnames, numcodes,
10666   strnames, strfnames, strcodes arrays are now added.
10667 * keyname() is added.
10668 * All function keys can be defined in terminfo entries.
10669 * fixed lin_tparm.c to behave properly.
10670 * terminfo entries for vt* and xterm are included (improvements are welcome)
10671 * more automation in handling caps and keys.
10672 * included fixes from 0.6.1
10673 * added a few more missing functions.
10674 * fixed a couple of minor bugs.
10675 * updated docs JUST a little (still miles behind in documenting the newer
10676         features).
10677
10678 #### ncurses 0.6 -> ncurses 0.61 ####
10679
10680 1) Included the missing data/console.
10681
10682 2) allow attributes when drawing boxes.
10683
10684 3) corrected usage of win->_delay value.
10685
10686 4) fixed a bug in lib_getch.c. if it didn't recognize a sequence it would
10687         simply return the last character in the sequence. The correct
10688         behavior is to return the entire sequence one character at a time.
10689
10690 #### ncurses0.5 -> ncurses0.6 #### March 1, 1993 ####
10691 * removed _numchngd from struct _win_st and made appropriate changes.
10692 * rewritten kgetch() to remove problems with interaction between alarm and
10693   read(). It caused SIGSEGV every now and then.
10694 * fixed a bug that miscounted the numbers of columns when updating.
10695   (in lib_doupdate.c(ClrUpdate() -- iterate to columns not columns-1)
10696 * fixed a bug that cause the lower-right corner to be incorrect.
10697   (in lib_doupdate.c(putChar() -- check against columns not columns-1)
10698 * made resize() and cleanup() static to lib_newterm.c
10699 * added notimeout().
10700 * added timeout() define in curses.h
10701 * added more function prototypes and fixed napms.
10702 * added use_env().
10703 * moved screen size detection to lib_setup.c.
10704 * fixed newterm() to confirm to prototype.
10705 * removed SIGWINCH support as SYSV does not define its semantics.
10706 * cleaned-up lib_touch.c
10707 * added waddnstr() and relatives.
10708 * added slk_* support.
10709 * fixed a bug in wdeleteln().
10710 * added PANEL library.
10711 * modified Makefile for smoother installation.
10712 * terminfo.h is really term.h
10713
10714 #### ncurses 0.4 -> ncurses 0.5 #### Feb 14, 1993 ####
10715 * changed _win_st structure to allow support for missing functionality.
10716 * Addition of terminfo support for all KEY_*.
10717 * Support for nodelay(), timeout(), notimeout().
10718 * fixed a bug with the keypad char reading that did not return ESC until
10719   another key is pressed.
10720 * nl mapping no longer occur on output (as should be)
10721   fixed bug '\n' no causing a LF.
10722 * fixed bug that reset terminal colors regardless of whether we use color
10723   or not.
10724 * Better support for ACS (not quite complete).
10725 * fixed bug in wvline().
10726 * added curs_set().
10727 * changed from signal() to sigaction().
10728 * re-included the contents of important.patch into source.
10729
10730 #### ncurses 0.3 -> ncurses 0.4 #### Feb 3, 1993 ####
10731 * Addition of more KEY_* definitions.
10732 * Addition of function prototypes.
10733 * Addition of several missing functions.
10734 * No more crashes if screen size is undefined (use SIGWINCH handler).
10735 * added a handler to cleanup after SIGSEGV (hopefully never needed).
10736 * changed SRCDIR from /etc/term to /usr/lib/terminfo.
10737 * renamed compile/dump to tic/untic.
10738 * New scrolling code.
10739 * fixed bug that reversed the sense of nl() and nonl().
10740
10741 #### ncurses 0.2 -> ncurses 0.3 #### Jan 20, 1993 ####
10742 * more support for color and graphics see test/ for examples.
10743 * fixed various files to allow correct update after shelling out.
10744 * more fixes for updates.
10745 * no more core dumps if you don't have a terminfo entry.
10746 * support for LINES and COLUMNS environment variables.
10747 * support for SIGWINCH signal.
10748 * added a handler for SIGINT for clean exits.
10749
10750 #### ncurses 0.1 -> ncurses 0.2 #### Aug 14, 1992 ####
10751 * support for color.
10752 * support for PC graphic characters.
10753 * lib_trace.c updated to use stdarg.h and vprintf routines.
10754 * added gdc.c (Great Digital Clock) as an example of using color.
10755
10756 #### ncurses -> ncurses 0.1 #### Jul 31, 1992 ####
10757 * replacing sgtty stuff by termios stuff.
10758 * ANSIfication of some functions.
10759 * Disabling cost analysis 'cause it's incorrect.
10760 * A quick hack for a terminfo entry.
10761
10762 -- vile:txtmode: