1-- $Id: NEWS,v 1.626 2001/05/13 00:11:58 tom Exp $ 2 3This is a log of changes that ncurses has gone through since Zeyd started 4working with Pavel Curtis' original work, pcurses, in 1992. 5 6Changes through 1.9.9e are recorded by Zeyd M. Ben-Halim. 7Changes since 1.9.9e are recorded by Thomas Dickey. 8 920010512 10 + modify test/ncurses.c to work with xterm-256color, which has fewer 11 color pairs than colors*colors (report by David Ellement 12 <ellement@sdd.hp.com>). 13 1420010505 15 + corrected screen.xterm-xfree86 entry. 16 + update comment in Caps regarding IBM (AIX) function-key definitions. 17 1820010421 19 + modify c++/Makefile.in to link with libncurses++w.a when configured 20 for wide-characters (patch by Sven Verdoolaege). 21 + add check in _nc_trace_buf() to refrain from freeing a null pointer. 22 + improve CF_PROG_INSTALL macro using CF_DIRNAME. 23 + update config.guess, config.sub from autoconf 2.49e (alpha). 24 2520010414 26 + add secondary check in tic.c, similar_sgr() to see if the reason 27 for mismatch was that the individual capabilities used a time-delay 28 while sgr did not. Used this to cleanup mismatches, e.g., in vt100, 29 and remove time-delay from Apple_Terminal entries. 30 + add Apple_Terminal terminfo entries (Benjamin C W Sittler 31 <bsittler@iname.com>). 32 + correct definitions of shifted editing keys for xterm-xfree86 -TD 33 + fix a bug in test/bs.c from 20010407 (patch by Erik Sigra). 34 + prevent relative_move() from doing an overwrite if it detects 8-bit 35 characters when configured for UTF-8 (reported by Sven Verdoolaege 36 <skimo@kotnet.org>). 37 3820010407 39 + add configure checks for strstream.h vscan function, and similar 40 stdio-based function which may be used in C++ binding for gcc 3.0 41 (reports by George Goffe, Lars Hecking, Mike Castle). 42 + rewrite parts of configure.in which used changequote(). That feature 43 is broken in the latest autoconf alphas (e.g., 2.49d). 44 + add a missing pathname for ncurses_dll.h, needed when building in 45 a directory outside the source tree (patch by Sven Verdoolaege 46 <skimo@kotnet.org>). 47 > fix 2 bugs in test/bs.c (patch by Erik Sigra <sigra@home.se>): 48 + no ships were ever placed in the last row or in the last column. 49 This made the game very easy to win, because you never had to waste 50 any shots there, but the computer did. 51 + the squares around a sunken ship that belonged to the player were not 52 displayed as already hit by the computer, like it does for the 53 player. 54 5520010331 56 + add some examples of customizing screen's terminfo: 57 screen.xterm-xfree86, screen.xterm-r6, screen.teraterm -TD 58 + modify screen's terminfo entry to match the khome/kend in screen 59 3.09.08 (Debian bug report #92215). 60 + correct a memory leak in forms library (report by Stefan Vogtner 61 <stefan@vogtner.de>, patch by Juergen Pfeifer). 62 6320010324 64 + change symbols used to guard against repeated includes to begin 65 consistently with "NCURSES_" rather than a leading underscore. There 66 are other symbols defined in the header files which begin with a 67 leading underscore, but they are part of the legacy interface. 68 + reorder includes in c++ binding so that rcs identifiers can be 69 compiled-in. 70 + add .cc.ii rule to c++ makefile, to get preprocessor output for 71 debugging. 72 + correct configure script handling of @keyword@ substitutions when the 73 --with-manpage-renames option is given (cf: 20000715, fixes Debian 74 bug #89939). 75 + report stack underflow/overflow in tparm() when tic -cv option is 76 given. 77 + remove spurious "%|" operator from xterm-xfree86 terminfo entry, 78 (reported by Adam Costello <amc@cs.berkeley.edu>, Debian bug #89222). 79 8020010310 81 + cleanup of newdemo.c, fixing some ambiguous expressions noted by gcc 82 2.95.2, and correcting some conflicting color pair initializations. 83 + add missing copyright notice for cursesw.h 84 + review, make minor fixes for use of '::' for referring to C-language 85 interface from C++ binding. 86 + modify configure check for g++ library slightly to accommodate 87 nonstandard version number, e.g., <vendor>-2.7 (report by Ronald Ho 88 <rho@mipos2.intel.com>). 89 + add configure check for c++ <sstream> header, replace hardcoded 90 ifdef. 91 + workaround for pre-release of gcc 3.0 libstdc++, which has dropped 92 vscan from strstreambuf to follow standard, use wrapper for C vscanf 93 instead (report by George Goffe <grgoffe@excite.com> and Matt Taggart 94 <taggart@carmen.fc.hp.com>, fixes Debian . 95 9620010303 97 + modify interface of _nc_get_token() to pass 'silent' parameter to it, 98 to make quieter loading of /etc/termcap (patch by Todd C Miller). 99 + correct a few typos in curs_slk.3x and curs_outopts.3x manpages 100 (patch by Todd C Miller). 101 10220010224 103 + compiler-warning fixes (reported by Nelson Beebe). 104 10520010210 106 + modify screen terminfo entry to use new 3.9.8 feature allowing xterm 107 mouse controls -TD 108 10920010203 110 + broaden patterns used to match OS/2 EMX in configure script to cover 111 variant used in newer config.guess/config.sub 112 + remove changequote() calls from configure script, since this feature 113 is broken in the autoconf 2.49c alpha, maintainers decline to fix. 114 + remove macro callPutChar() from tty_update.c, since this is no longer 115 needed (reported by Philippe Blain). 116 + add a null-pointer check in tic.c to handle the case when the input 117 file is really empty. Modify the next_char() function in comp_scan.c 118 to allow arbitrarily long lines, and incidentally supply a newline to 119 files that do not end in a newline. These changes improve tic's 120 recovery from attempts to read binary files, e.g., its output from 121 the terminfo database (reported by Bernhard Rosenkraenzer). 122 12320010127 124 + revert change to c++/demo.cc from 20001209, which changed definition 125 of main() apparently to accommodate cygwin linker, but broke the demo 126 program. 127 + workaround for broken egcs 2.91.66 which calls member functions 128 (i.e., lines() and colors() of NCursesWindow before calling its 129 constructor. Add calls to initialize() in a few constructors which 130 did not do this already. 131 + use the GNAT preprocessor to make the necessary switch between TRACE 132 and NO_TRACE configurations (patch by Juergen Pfeifer). 133 > patches by Bernhard Rosenkraenzer: 134 + modify kterm terminfo entry to use SCS sequence to support alternate 135 character set (it does not work with SI/SO). 136 + --with-ospeed=something didn't work. configure.in checked for a 137 $enableval where it should check for $withval. Also, 138 ncurses/llib-lncurses still had a hardcoded short. 139 14020010114 141 + correction to my merge of Tom Riddle's patch that broke tic in some 142 conditions (reported by Enoch Wexler <enoch@wexler.co.il>) -TD 143 14420010113 145 + modify view.c to test halfdelay(). Like other tests, this recognizes 146 the 's' and space commands for stopping/starting polled input, shows 147 a freerunning clock in the header. If given a parameter to 's', that 148 makes view.c use halfdelay() with that parameter rather than 149 nodelay(). 150 + fix to allow compile with the experimental configure option 151 --disable-hashmap. 152 + modify postprocess_termcap() to avoid overwriting key_backspace, 153 key_left, key_down when processing a non-base entry (report/patch by 154 Tom Riddle). 155 + modify _nc_wrap_entry(), adding option to reallocate the string 156 table, needed in _nc_merge_entry() when merging termcap entries. 157 (adapted from report/patch by Tom Riddle <ftr@oracom.com>). 158 + modify a few configure script macros to keep $CFLAGS used only for 159 compiler options, preprocessor options in $CPPFLAGS. 160 16120001230 162 + correct marker positions in lrtest.c after receiving a sigwinch. 163 + fix ifdef's in ncurses.c to build against pre-5.2 for testing. 164 + fixes to tclock for resizing behavior, redundant computation (report 165 and patch by A M Kuchling <akuchlin@mems-exchange.org>). 166 16720001216 168 + improved scoansi terminfo entry -TD 169 + modify configure script and makefile in Ada95/src to compile a stub 170 for the trace functions when ncurses does not provide those. 171 17220001209 173 + add ncurses_dll.h and related definitions to support generating DLL's 174 with cygwin (adapted from a patch by Charles Wilson 175 <cwilson@ece.gatech.edu>, changed NCURSES_EXPORT macro to make it 176 work with 'indent'). 177 17820001202 179 + correct prototypes for some functions in curs_termcap.3x, matching 180 termcap.h, which matches X/Open. 181 > patch by Juergen Pfeifer: 182 + a revised version of the Ada enhancements sent in by "H. 183 Nanosecond", aka Eugene V. Melaragno <aldomel@ix.netcom.com>. This 184 patch includes 185 - small fixes to the existing ncurses binding 186 - addition of some more low-level functions to the binding, including 187 termcap and terminfo functions 188 - An Ada implementation of the "ncurses" test application originally 189 written in C. 190 19120001125 192 + modify logic in lib_setup.c to allow either lines or columns value 193 from terminfo to be used if the screen size cannot be determined 194 dynamically rather than requiring both (patch by Ehud Karni 195 <ehud@unix.simonwiesel.co.il>). 196 + add check in lib_tgoto.c's is_termcap() function to reject null or 197 empty strings (reported by Valentin Nechayev <netch@netch.kiev.ua> to 198 freebsd-bugs). 199 + add definition from configure script that denotes the path-separator, 200 which is normally a colon. The path-separator is a semicolon on 201 OS/2 EMX and similar systems which may use a colon within pathnames. 202 + alter logic to set default for --disable-overwrite option to set it 203 to 'yes' if the --prefix/$prefix value is not /usr/local, thereby 204 accommodating the most common cause of problems: gcc's nonstandard 205 search rules. Other locations such as /usr/local/ncurses will default 206 to overwriting (report by Lars Hecking <lhecking@nmrc.ie>). 207 20820001118 209 + modify default for --disable-overwrite configure option to disable 210 if the --prefix or $prefix value is not /usr. 211 + add cygwin to systems for which ncurses is installed by default into 212 /usr rather than /usr/local. 213 21420001111 215 + minor optimization in comp_error.c and lib_termname.c, using 216 strncat() to replace strncpy() (patch by Solar Designer). 217 + add a use_terminfo_vars() check for $HOME/.termcap, and check for 218 geteuid() to use_terminfo_vars() (patch by Solar Designer 219 <solar@false.com>). 220 + improved cygwin terminfo entry, based on patch by 221 <ernie_boyd@yahoo.com>. 222 + modify _nc_write_entry() to allow for the possibility that linking 223 aliases on a filesystem that ignores case would not succeed because 224 the source and destination differ only by case, e.g., NCR260VT300WPP0 225 on cygwin (report by Neil Zanella). 226 + fix a typo in the curs_deleteln.3x man page (patch by Bernhard 227 Rosenkraenzer <bero@redhat.de>). 228 22920001104 230 + add configure option --with-ospeed to assist packagers in transition 231 to 5.3 change to ospeed type. 232 + add/use CharOf() macro to suppress sign-extension of char type on 233 platforms where this is a problem in ctype macros, e.g., Solaris. 234 + change trace output to binary format. 235 + correct a missing quote adjustment in CF_PATH_SYNTAX autoconf 236 macro, for OS/2 EMX configuration. 237 + rearrange a few configure macros, moving preprocessor options to 238 $CPPFLAGS (a now-obsolete version of autoconf did not consistently 239 use $CPPFLAGS in both the compile and preprocessor checks). 240 + add a check in relative_move() to guard against buffer overflow in 241 the overwrite logic. 242 24320001028 244 + add message to configure script showing g++ version. 245 + resync config.guess, config.sub 246 + modify lib_delwin.c, making it return ERR if the window did not exist 247 (suggested by Neil Zanella). 248 + add cases for FreeBSD 3.1 to tdlint and makellib scripts, used this 249 to test/review ncurses library. (Would use lclint, but it doesn't 250 work). 251 + reorganized knight.c to avoid forward references. Correct screen 252 updates when backtracking, especially to the first cell. Add F/B/a 253 commands. 254 25520001021 5.2 release for upload to ftp.gnu.org 256 + update generated html files from manpages. 257 + modify dist.mk to use edit_man.sh to substitute autoconf'd variables 258 in html manpages. 259 + fix an uninitialized pointer in read_termcap.c (report by Todd C 260 Miller, from report/patch by Philip Guenther <guenther@gac.edu>). 261 + correct help-message and array limit in knight.c (patch by Brian 262 Raiter <breadbox@muppetlabs.com>). 263 > patch by Juergen Pfeifer: 264 + fix to avoid warning by GNAT-3.13p about use of inconsistent casing 265 for some identifiers defined in the standard package. 266 + cosmetic change to forms/fty_enum.c 267 26820001014 269 + correct an off-by-one position in test/railroad.c which could cause 270 wrapping at the right margin. 271 + test/repair some issues with libtool configuration. Make 272 --disable-echo force libtool --silent. (Libtool does not work for 273 OS/2 EMX, works partly for SCO - libtool is still very specific to 274 gcc). 275 + change default of --with-manpage-tbl to "no", since for most of the 276 platforms which do have tbl installed, the system "man" program 277 understands how to run tbl automatically. 278 + minor improvement to force_bar() in comp_parse.c (Bernhard 279 Rosenkraenzer <bero@redhat.de>). 280 + modify lib_tparm.c to use get_space() before writing terminating 281 null character, both for consistency as well as to ensure that if 282 save_char() was called immediately before, that the allocated memory 283 is enough (patch by Sergei Ivanov). 284 + add note about termcap ML capability which is duplicated between two 285 different capabilities: smgl and smglr (reported by Sergei Ivanov 286 <svivanov@pdmi.ras.ru>). 287 + correct parameter counts in include/Caps for dclk as well as some 288 printer-specific capabilities: csnm, defc, scs, scsd, smgtp, smglp. 289 > patch by Johnny C Lam <lamj@stat.cmu.edu>: 290 + add support for building with libtool (apparently version 1.3.5, 291 since old versions do not handle -L../lib), using new configure 292 option --with-libtool. 293 + add configure option --with-manpage-tbl, which causes the manpages to 294 be preprocessed by tbl(1) prior to installation, 295 + add configure option --without-curses-h, which causes the 296 installation process to install curses.h as ncurses.h and make 297 appropriate changes to headers and manpages. 298 29920001009 300 + correct order of options/parameters in run_tic.in invocation of tic, 301 which did not work with standard getopt() (reported by Ethan 302 Butterfield <primus@veris.org>). 303 + correct logic for 'reverse' variable in lib_vidattr.c, which was 304 setting it true without checking if newmode had A_REVERSE set, e.g., 305 using $TERM=ansi on OS/2 EMX (see 20000917). 306 > patch by Todd Miller: 307 + add a few missing use_terminfo_vars() and fixes up _nc_tgetent(). 308 Previously, _nc_cgetset() would still get called on cp so the 309 simplest thing is to set cp to NULL if !use_terminfo_vars(). 310 + added checks for an empty $HOME environment variable. 311 > patches by Ilya Zakharevich for OS/2 EMX: 312 + modify convert_configure.pl to support INSTALL. Change compiler 313 options in that script to use multithreading, needed for the mouse. 314 + modify OS/2 mouse support, retrying as a 2-button mouse if code fails 315 to set up a 3-button mouse. 316 + improve code for OS/2 mouse support, using _nc_timed_wait() to 317 replace select() call. 318 31920001007 320 + change type of ospeed variable back to short to match its use in 321 legacy applications (reported by Andrey A Chernov). 322 + add case to configure script for --enable-rpath on IRIX (patch by 323 Albert Chin-A-Young). 324 + minor fix to position_check() function, to ensure it gets the whole 325 cursor report before decoding. 326 + add configure option --disable-assumed-color, to allow pre-5.1 327 convention of default colors used for color-pair 0 to be configured 328 (see assume_default_colors()). 329 + rename configure option --enable-hashmap --disable-hashmap, and 330 reorder the configure options, splitting the experimental and 331 development 332 + add configure option --disable-root-environ, which tells ncurses to 333 disregard $TERMINFO and similar environment variables if the current 334 user is root, or running setuid/setgid (based on discussion with 335 several people). 336 + modified misc/run_tic.in to use tic -o, to eliminate dependency on 337 $TERMINFO variable for installs. 338 + add table entry for plab_norm to tput, so it passes in strings 339 for that capability. 340 + modify parse_format() in lib_tparm.c to ignore precision if it is 341 longer than 10000 (report by Jouko Pynnonen). 342 + rewrote limit checks in lib_mvcur.c using new functions 343 _nc_safe_strcat(), etc. Made other related changes to check lengths 344 used for strcat/strcpy (report by Jouko Pynnonen <jouko@solutions.fi>). 345 34620000930 347 + modify several descriptions, including those for setaf, setab, in 348 include/Caps to indicate that the entries are parameterized. This 349 information is used to tell which strings are translated when 350 converting to termcap. Fixes a problem where the generated termcap 351 would contain a spurious "%p1" for the terminfo "%p1%d". 352 + modify ld -rpath options (e.g., Linux, and Solaris) to use an 353 absolute pathname for the build tree's lib directory (prompted by 354 discussion with Albert Chin-A-Young). 355 + modify "make install.man" and "make uninstall.man" to include tack's 356 man-page. 357 + various fixes for install scripts used to support configure --srcdir 358 and --with-install-prefix (reported by Matthew Clarke 359 <Matthew_Clarke@mindlink.bc.ca>). 360 + make configure script checks on variables $GCC and $GXX consistently 361 compare against 'yes' rather than test if they are nonnull, since 362 either may be set to the corresponding name of the C or C++ compiler 363 (report/patch by Albert Chin-A-Young). 364 36520000923 366 + modify rs2 capability in xterm-r6 and similar where cursor 367 save/restore bracketed the sequence for resetting video attributes. 368 The cursor restore would undo that (from a NetBSD bug report by John 369 Hawkinson <jhawk@MIT.EDU>). 370 + using parameter check added to tic, corrected 27 typos in 371 terminfo.src -TD 372 + modify tic to verify that its inputs are really files, in case 373 someone tries to read a directory (or /dev/zero). 374 + add a check for empty buffers returned by fgets() in comp_scan.c 375 next_char() function, in case tic is run on a non-text file (fixes 376 a core dump reported by Aaron Campbell <aaron@cs.dal.ca>). 377 + add to railroad.c some code exercising tgoto(), providing an 378 alternate form of display if the terminal supports cursor addressing. 379 + split-out tgoto() again, this time into new file lib_tgoto.c, and 380 implement a conventional BSD-style tgoto() which is used if the 381 capability string does not contain terminfo-style padding or 382 parameters (requested by Andrey A Chernov). 383 + add check to tic which reports capabilities that do not reference 384 the expected number of parameters. 385 + add error checking to infocmp's -v and -m options to ensure that 386 the option value is indeed a number. 387 38820000917 389 + add S0, E0 extensions to screen's terminfo entry, which is another 390 way to solve the misconfiguration issue -TD 391 + completed special case for tgoto from 20000916 392 39320000916 394 + update xterm terminfo entries to match XFree86 xterm patch #146 -TD 395 + add Matrix Orbital terminfo entries (from Eric Z Ayers 396 <eric@ale.org>). 397 + add special case to lib_tparm.c to allow 'screen' program to use a 398 termcap-style parameter "%." to tgoto() for switching character sets. 399 + use LN_S substitution in run_tic.in, to work on OS/2 EMX which has 400 no symbolic links. 401 + updated notes in README.emx regarding autoconf patches. 402 + replace a lookup table in lib_vidattr.c used to decode no_color_video 403 with a logic expression (suggested by Philippe Blain). 404 + add a/A toggle to ncurses.c 'b' test, which clears/sets alternate 405 character set attribute from the displayed text. 406 + correct inequality in parameter analysis of rewritten lib_tparm.c 407 which had the effect of ignoring p9 in set_attributes (sgr), breaking 408 alternate character set (reported by Piotr Majka <charvel@link.pl>). 409 + correct ifdef'ing for GCC_PRINTF, GCC_SCANF which would not compile 410 with Sun WorkShop compilers since these tokens were empty (cf: 411 20000902, reported by Albert Chin-A-Young). 412 41320000909 414 + correct an uninitialized parameter to open_tempfile() in tic.c which 415 made "tic -I" give an ambiguous error message about tmpnam. 416 + add special case in lib_vidattr.c to reset underline and standout for 417 devices that have no sgr0 defined (patch by Don Lewis 418 <Don.Lewis@tsc.tdk.com>). Note that this will not work for bold 419 mode, since there is no exit-bold-mode capability. 420 + improved patch for Make_Enum_Type (patch by Juergen Pfeifer). 421 + modify tparm to disallow arithmetic on strings, analyze the varargs 422 list to read strings as strings and numbers as numbers. 423 + modify tparm's internal function spop() to treat a null pointer as 424 an empty string. 425 + modify tput program so it can be renamed or invoked via a link as 426 'reset' or 'init', producing the same effect as 'tput reset' or 'tput 427 init'. 428 + add private entrypoint _nc_basename(), use to consolidate related 429 code in progs, as well as accommodating OS/2 EMX pathnames. 430 + remove NCURSES_CONST line from edit_cfg.sh to compensate for its 431 removal (except via AC_SUBST) from configure.in, making --enable-const 432 work again (reported by Juergen Pfeifer). 433 + regen'd configure to pick up "hpux*" change from 20000902. 434 43520000902 436 + modify tset.c to check for transformed "reset" program name, if any. 437 + add a check for null pointer in Make_Enum_Type() (reported by Steven 438 W Orr <steveo@world.std.com>). 439 + change functions _nc_parse_entry() and postprocess_termcap() to avoid 440 using strtok(), because it is non-reentrant (reported by Andrey A 441 Chernov <ache@nagual.pp.ru>). 442 + remove "hpux10.*" case from CF_SHARED_OPTS configure script macro. 443 This differed from the "hpux*" case by using reversed symbolic 444 links, which made the 5.1 version not match the configuration of 445 5.0 shared libraries (reported by Albert Chin-A-Young). 446 + correct a dependency in Ada95/src/Makefile.in which prevented 447 building with configure --srcdir (patch by H Nanosecond 448 <aldomel@ix.netcom.com>). 449 + modify ifdef's in curses.h.in to avoid warning if GCC_PRINTF or 450 GCC_SCANF was not previously defined (reported by Pavel Roskin 451 <proski@gnu.org>). 452 + add MKncurses_def.sh to generate fallback definitions for 453 ncurses_cfg.h, to quiet gcc -Wundef warnings, modified ifdef's in 454 code to consistently use "#if" rather than "#ifdef". 455 45620000826 457 + add QNX qansi entries to terminfo -TD 458 + add os2 entry to misc/emx.src (<jmcoopr@webmail.bmi.net>). 459 + add configure option --with-database to allow specifying a different 460 terminfo source-file to install. On OS/2 EMX, this defaults to 461 misc/emx.src 462 + change misc/run_tic.sh to derive it from misc/run_tic.in, to simplify 463 setting .exe extension on OS/2 EMX. 464 + add .exe extension in Ada95/gen/Makefile.in, 465 Ada95/samples/Makefile.in, for OS/2 EMX (reported by 466 <jmcoopr@webmail.bmi.net>). 467 + add configure check for filesystems (such as OS/2 EMX) which do not 468 distinguish between upper/lowercase filenames, use this to fix tags 469 rules in makefiles. 470 + initialize fds[] array to 0's in _nc_timed_wait(); apparently poll() 471 only sets the revents members of that array when there is activity 472 corresponding to the related file (report by Glenn Cooper 473 <gcooper@qantas.com.au>, using Purify on Solaris 5.6). 474 + change configure script to use AC_CANONICAL_SYSTEM rather than 475 AC_CANONICAL_HOST, which means that configure --target will set 476 a default program-prefix. 477 + add note on cross-compiling to INSTALL (which does not rely on the 478 AC_CANONICAL_* macros). 479 48020000819 481 + add cases for EMX OS/2 to config.guess, config.sub 482 + new version of config.guess, config.sub from lynx 2.8.4dev.7 483 + add definitions via transform.h to allow tic and tput to check for 484 the transformed aliases rather than the original infotocap, etc. 485 + simplify transform-expressions in progs/Makefile.in, make the 486 uninstall rule work for transformed program names. 487 + change symbol used by --install-prefix configure option from 488 INSTALL_PREFIX to DESTDIR (the latter has become common usage 489 although the name is misleading). 490 + modify programs to use curses_version() string to report the version 491 of ncurses with which they are compiled rather than the 492 NCURSES_VERSION string. The function returns the patch level in 493 addition to the major and minor version numbers. 494 49520000812 496 + modify CF_MAN_PAGES configure macro to make transformed program names 497 a parameter to that macro rather than embedding them in the macro. 498 + newer config.guess, config.sub (reference version used in lynx 499 2.8.4dev.7). 500 + add configure option --with-default-terminfo-dir=DIR to allow 501 specifying the default terminfo database directory (request by Albert 502 Chin-A-Young). 503 + minor updates for terminfo.src from FreeBSD termcap change-history. 504 + correct notes in README and INSTALL regarding documentation files 505 that were moved from misc directory to doc (report by Rich Kulawiec 506 <rsk@gsp.org>). 507 + change most remaining unquoted parameters of 'test' in configure 508 script to use quotes, for instance fixing a problem in the 509 --disable-database option (reported by Christian Mondrup 510 <scancm@biobase.dk>). 511 + minor adjustments to work around some of the incompatibilities/bugs 512 in autoconf 2.29a alpha. 513 + add -I/usr/local/include when --with-ncurses option is used in 514 test/configure script. 515 + correct logic in adjust_cancels(), which did not check both 516 alternatives when reclassifying an extended name between boolean, 517 number and string, causing an infinite loop in tic. 518 51920000730 520 + correct a missing backslash in curses.priv.h 521 52220000729 523 + change handling of non_dest_scroll_region in tty_update.c to clear 524 text after it is shifted in rather than before shifting out. Also 525 correct row computation (reported by Ruediger Kuhlmann 526 <uck4@rz.uni-karlsruhe.de>). 527 + add/use new trace function to display chtype values from winch() and 528 getbkgd(). 529 + add trace mask TRACE_ATTRS, alter several existing _tracef calls that 530 trace attribute changes under TRACE_CALLS to use this. 531 + modify MKlib_gen.sh so that functions returning chtype will call 532 returnChar(). 533 + add returnChar() trace, for functions returning chtype. 534 + change indent.pro to line up parenthesis. 535 53620000722 537 + fix a heap problem with the c++ binding (report by 538 <alexander_liberson@ninewest.com>, patch by Juergen Pfeifer). 539 + minor adjustment to ClrToEOL() to handle an out-of-bounds parameter. 540 + modify the check for big-core to force a couple of memory accesses, 541 which may work as needed for older/less-capable machines (if not, 542 there's still the explicit configure option). 543 > fixes based on diff's for Amiga and BeOS found at 544 http://www.mathematik.uni-karlsruhe.de/~kuhlmann/cross/ncurses/ 545 + alter definition of NCURSES_CONST to make it non-empty. 546 + add amiga-vnc terminfo entry. 547 + redefine 'TEXT' in menu.h for AMIGA, since it is reported to have 548 an (unspecified) symbol conflict. 549 + replaced case-statement in _nc_tracebits() for CSIZE with a table to 550 simplify working around implementations that define random 551 combinations of the related macros to zero. 552 + modify configure test for tcgetattr() to allow for old 553 implementations, e.g., on BeOS, which only defined it as a macro. 554 > patches by Bruno Haible: 555 + when checking LC_ALL/LC_CTYPE/LANG environment variables for UTF-8 556 locale, ignore those which are set to an empty value, as per SUSV2. 557 + encode 0xFFFD in UTF-8 with 3 bytes, not 2. 558 + modify _nc_utf8_outch() to avoid sign-extension when checking for 559 out-of-range value. 560 56120000715 562 + correct manlinks.sed script to avoid using ERE "\+", which is not 563 understood by older versions of sed (patch by Albert Chin-A-Young). 564 + implement configure script options that transform installed program 565 names, e.g., --program-prefix, including the manpage names and cross 566 references (patch by Albert Chin-A-Young <china@thewrittenword.com>). 567 + correct several mismatches between manpage filename and ".TH" 568 directives, renaming dft_fgbg.3x to default_colors.3x and 569 menu_attribs.3x to menu_attributes.3x (report by Todd C Miller). 570 + correct missing includes for <string.h> in several places, including 571 the C++ binding. This is not noted by gcc unless we use the 572 -fno-builtin option (reported by Igor Schein <igor@txc.com>). 573 + modified progs/tset.c and tack/sysdep.c to build with sgttyb 574 interface if neither termio or termios is available. Tested this 575 with FreeBSD 2.1.5 (which does have termios - but the sgttyb does 576 work). 577 57820000708 5.1 release for upload to ftp.gnu.org 579 + document configure options in INSTALL. 580 + add man-page for ncurses trace functions. 581 + correct return value shown in curs_touch.3x for is_linetouched() and 582 is_wintouched(), in curs_initscr.3x for isendwin(), and in 583 curs_termattr.3x for has_ic() and has_il(). 584 + add prototypes for touchline() and touchwin(), adding them to the 585 list of generated functions. 586 + modify fifo_push() to put ERR into the fifo just like other values to 587 return from wgetch(). It was returning without doing that, making 588 end-of-file condition incorrectly return a 0 (reported by Todd C 589 Miller). 590 + uncomment CC_SHARED_OPTS for progs and tack (see 971115), since they 591 are needed for SCO OpenServer. 592 + move _nc_disable_period from free_ttype.c to comp_scan.c to appease 593 dynamic loaders on SCO and IRIX64. 594 + add "-a" option to test/ncurses.c to invoke assume_default_colors() 595 for testing. 596 + correct assignment in assume_default_colors() which tells ncurses 597 whether to use default colors, or the assumed ones (reported by Gary 598 Funck <gary@Intrepid.Com>). 599 + review/correct logic in mk-1st.awk for making symbolic links for 600 shared libraries, in particular for FreeBSD, etc. 601 + regenerate misc/*.def files for OS/2 EMX dll's. 602 + correct quoting of values for CC_SHARED_OPTS in aclocal.m4 for 603 cases openbsd2*, openbsd*, freebsd* and netbsd* (patch by Peter 604 Wemm) (err in 20000610). 605 + minor updates to release notes, as well as adding/updating URLs for 606 examples cited in announce.html 607 > several fixes from Philippe Blain <philippe.blain2@freesbee.fr>: 608 + correct placement of ifdef for NCURSES_XNAMES in function 609 _nc_free_termtype(), fixes a memory leak. 610 + add a call to _nc_synchook() to the end of function whline() like 611 that in wvline() (difference was in 1.9.4). 612 + make ClearScreen() a little faster by moving two instances of 613 UpdateAttr() out of for-loops. 614 + simplify ClrBottom() by eliminating the tstLine data, using for-loops 615 (cf: 960428). 616 61720000701 pre-release 618 + change minor version to 1, i.e., ncurses 5.1 619 + add experimental configure option --enable-colorfgbg to check for 620 $COLORTERM variable as set by rxvt/aterm/Eterm. 621 + add Eterm terminfo entry (Michael Jennings <mej@valinux.com>). 622 + modify manlinks.sed to pick aliases from the SYNOPSIS section, and 623 several manpages so manlinks.sed can find aliases for creating 624 symbolic links. 625 + add explanation to run_tic.sh regarding extended terminal 626 capabilities. 627 + change message format for edit_cfg.sh, since some people interpret 628 it as a warning. 629 + correct unescaped '$' in sysv5uw7*|unix_sv* rule for CF_SHARED_OPTS 630 configure macro (report by Thanh Ma <Thanh.Ma@casi-rusco.com>). 631 + correct logic in lib_twait.c as used by lib_mouse.c for GPM mouse 632 support when poll() is used rather than select() (prompted by 633 discussion with David Allen <DAllen24@aol.com>). 634 63520000624 pre-release 636 + modify TransformLine() to check for cells with different color pairs 637 that happen to render the same display colors. 638 + apply $NCURSES_NO_PADDING to cost-computation in mvcur(). 639 + improve cost computation in PutRange() by accounting for the use 640 of parm_right_cursor in mvcur(). 641 + correct cost computation in EmitRange(), which was not using the 642 normalized value for cursor_address. 643 + newer config.guess, config.sub (reference version used in TIN 1.5.6). 644 64520000617 646 + update config.guess, config.sub (reference version used in PCRE 3.2). 647 + resync changes to gnathtml against version 1.22, regenerated html 648 files under doc/html/ada using this (1.22.1.1). 649 + regenerated html files under doc/html/man after correcting top and 650 bottom margin options for man2html in dist.mk 651 + minor fixes to test programs ncurses 'i' and testcurs program to make 652 the subwindow's background color cover the subwindow. 653 + modify configure script so AC_MSG_ERROR is temporarily defined to a 654 warning in AC_PROG_CXX to make it recover from a missing C++ compiler 655 without requiring user to add --without-cxx option (from comment by 656 Akim Demaille <akim@epita.fr> to autoconf mailing list). 657 + modify headers.sh to avoid creating temporary files in the build 658 directory when installing headers (reported by Sergei Pokrovsky 659 <pok@nbsp.nsk.su>) 660 66120000610 662 + regenerated the html files under doc/html/ada/files and 663 doc/html/ada/funcs with a slightly-improved gnathtml. 664 + add kmous capability to linux terminfo entry to allow it to use 665 xterm-style events provided by gpm patch by Joerg Schoen. 666 + make the configure macro CF_SHARED_OPTS a little smarter by testing 667 if -fPIC is supported by gcc rather than -fpic. The former option 668 allows larger symbol tables. 669 + update config.guess and config.sub (patches by 670 Kevin Buettner <kev@primenet.com> for elf64_ia64 671 Bernd Kuemmerlen <bkuemmer@mevis.de> and MacOS X). 672 + add warning for 'tic -cv' about use of '^?' in terminfo source, which 673 is an extension. 674 67520000527 676 + modify echo() behavior of getch() to match Solaris curses for 677 carriage return and backspace (reported by Neil Zanella). 678 + change _nc_flush() to a function. 679 + modify delscreen() to check if the output stream has been closed, and 680 if so, free the buffer allocated for setbuf (this provides an 681 ncurses-specific way to avoid a memory leak when repeatedly calling 682 newterm reported by Chipp C <at_1@zdnetonebox.com>). 683 + correct typo in curs_getch.3x manpage regarding noecho (reported by 684 David Malone <dwmalone@maths.tcd.ie>). 685 + add a "make libs" rule. 686 + make the Ada95 interface build with configure --enable-widec. 687 + if the configure --enable-widec option is given, append 'w' to names 688 of the generated libraries (e.g., libncursesw.so) to avoid conflict 689 with existing ncurses libraries. 690 69120000520 692 + modify view.c to make a rudimentary viewer of UTF-8 text if ncurses 693 is configured with the experimental wide-character support. 694 + add a simple UTF-8 output driver to the experimental wide-character 695 support. If any of the environment variables LC_ALL, LC_CTYPE or 696 LANG contain the string "UTF-8", this driver will be used to 697 translate the output to UTF-8. This works with XFree86 xterm. 698 + modify configure script to allow building shared libraries on BeOS 699 (from a patch by by Valeriy E Ushakov). 700 + modify lib_addch.c to allow repeated update to the lower-right 701 corner, rather than displaying only the first character written until 702 the cursor is moved. Recent versions of SVr4 curses can update the 703 lower-right corner, and behave this way (reported by Neil Zanella). 704 + add a limit-check in _nc_do_color(), to avoid using invalid color 705 pair value (from bug report by Brendan O'Dea <bod@compusol.com.au>). 706 70720000513 708 + the tack program knows how to use smcup and rmcup but the "show caps 709 that can be tested" feature did not reflect this knowledge. Correct 710 the display in the menu tack/test/edit/c (patch by Daniel Weaver). 711 + xterm-16color does allow bold+colors, removed ncv#32 from that 712 terminfo entry. 713 71420000506 715 + correct assignment to SP->_has_sgr_39_49 in lib_dft_fgbg.c, which 716 broke check for screen's AX capability (reported by Valeriy E Ushakov 717 <uwe@ptc.spbu.ru>). 718 + change man2html rule in dist.mk to workaround bug in some man-programs 719 that ignores locale when rendering hyphenation. 720 + change web- and ftp-site to dickey.his.com 721 72220000429 723 + move _nc_curr_token from parse_entry.c to comp_scan.c, to work around 724 problem linking tack on MacOS X DP3. 725 + include <sys/time.h> in lib_napms.c to compile on MacOS X DP3 726 (reported by Gerben Wierda <wierda@holmes.nl>). 727 + modify lib_vidattr.c to check for ncv fixes when pair-0 is not 728 default colors. 729 + add -d option to ncurses.c, to turn on default-colors for testing. 730 + add a check to _nc_makenew() to ensure that newwin() and newpad() 731 calls do not silently fail by passing too-large limits. 732 + add symbol NCURSES_SIZE_T to use rather than explicit 'short' for 733 internal window and pad sizes. Note that since this is visible in 734 the WINDOW struct, it would be an ABI change to make this an 'int' 735 (prompted by a question by Bastian Trompetter 736 <btrompetter@firemail.de>, who attempted to create a 96000-line pad). 737 73820000422 739 + add mgterm terminfo entry from NetBSD, minor adjustments to sun-ss5, 740 aixterm entries -TD 741 + modify tack/ansi.c to make it more tolerant of bad ANSI replies. An 742 example of an illegal ANSI resonse can be found using Microsoft's 743 Telnet client. A correct display can be found using a VT-4xx 744 terminal or XFree86 xterm with: 745 XTerm*VT100*decTerminalID: 450 746 (patch by Daniel Weaver). 747 + modify gdc.c to recognize 'q' for quit, 's' for single-step and ' ' 748 for resume. Add '-n' option to force gdc's standard input to 749 /dev/null, to both illustrate the use of newterm() for specifying 750 alternate inputs as well as for testing signal handling. 751 + minor fix for configure option --with-manpage-symlinks, for target 752 directories that contain a period ('.') (reported by Larry Virden). 753 75420000415 755 + minor additions to beterm entry (feedback from Rico Tudor) -TD 756 + corrections/updates for some IBM terminfo entries -TD 757 + modify _nc_screen_wrap() so that when exiting curses mode with 758 non-default colors, the last line on the screen will be cleared to 759 the screen's default colors (request by Alexander Lukyanov). 760 + modify ncurses.c 'r' example to set nonl(), allowing control/M to be 761 read for demonstrating the REQ_NEW_LINE operation (prompted by a 762 question by Tony L Keith" <tlkeith@keithconsulting.com>). 763 + modify ncurses.c 'r' example of field_info() to work on Solaris 2.7, 764 documented extension of ncurses which allows a zero pointer. 765 + modify fmt_complex() to avoid buffer overflow in case of excess 766 recursion, and to recognize "%e%?" as a synonym for else-if, which 767 means that it will not recur for that special case. 768 + add logic to support $TERMCAP variable in case the USE_GETCAP symbol 769 is defined (patch by Todd C Miller). 770 + modify one of the m4 files used to generate the Ada95 sources, 771 to avoid using the token "symbols" (patch by Juergen Pfeifer). 772 77320000408 774 + add terminfo entries bsdos-pc-m, bsdos-pc-mono (Jeffrey C Honig) 775 + correct spelling error in terminfo entry name: bq300-rv was given as 776 bg300-rv in esr's version. 777 + modify redrawwin() macro so its parameter is fully parenthesized 778 (fixes Debian bug report #61088). 779 + correct formatting error in dump_entry() which set incorrect column 780 value when no newline trimming was needed at the end of an entry, 781 before appending "use=" clauses (cf: 960406). 782 78320000401 784 + add configure option --with-manpage-symlinks 785 + change unctrl() to render C1 characters (128-159) as ~@, ~A, etc. 786 + change makefiles so trace() function is provided only if TRACE is 787 defined, e.g., in the debug library. Modify related calls to 788 _tracechar() to use unctrl() instead. 789 79020000325 791 + add screen's AX capability (for ECMA SGR 39 and 49) to applicable 792 terminfo entries, use presence of this as a check for a small 793 improvement in setting default colors. 794 + improve logic in _nc_do_color() implementing assume_default_colors() 795 by passing in previous color pair info to eliminate redundant call to 796 set_original_colors(). (Part of this is from a patch by Alexander 797 Lukyanov). 798 + modify warning in _nc_trans_string() about a possibly too-long string 799 to do this once only rather than for each character past the 800 threshold (600). Change interface of _nc_trans_string() to allow 801 check for buffer overflow. 802 + correct use of memset in _nc_read_entry_source() to initialize ENTRY 803 struct each time before reading new data into it, rather than once 804 per loop (cf: 990301). This affects multi-entry in-core operations 805 such as "infocmp -Fa". 806 80720000319 808 + remove a spurious pointer increment in _nc_infotocap() changes from 809 20000311. Add check for '.' in format of number, since that also 810 is not permitted in termcap. 811 + correct typo in rxvt-basic terminfo from temporary change made while 812 integrating 20000318. 813 81420000318 815 + revert part of the vt220 change (request by Todd C Miller). 816 + add ansi-* terminfo entries from Eric's version. 817 + add -a option to tic and infocmp, which retains commented-out 818 capabilities during source translation/comparison, e.g., captoinfo 819 and infotocap. 820 + modify cardfile.c to display an empty card if no input data file is 821 found, fixes a core dump in that case (reported by Bruno Haible). 822 + correct bracketing in CF_MATH_LIB configure macro, which gave wrong 823 result for OS/2 EMX. 824 + supply required parameter for _nc_resolve_uses() call in 825 read_termcap.c, overlooked in 20000311 (reported by Todd C Miller). 826 > patches by Bruno Haible <haible@ilog.fr>: 827 + fix a compiler warning in fty_enum.c 828 + correct LIB_PREFIX expression for DEPS_CURSES in progs, tack 829 makefiles, which resulted in redundant linking (cf: 20000122). 830 83120000311 832 + make ifdef's for BROKEN_LINKER consistent (patch by Todd C Miller). 833 + improved tack/README (patch by Daniel Weaver). 834 + modify tput.c to ensure that unspecified parameters are passed to 835 tparm() as 0's. 836 + add a few checks in infocmp to guard against buffer overflow when 837 displaying string capabilities. 838 + add check for zero-uses in infocmp's file_comparison() function 839 before calling _nc_align_termtype(). Otherwise one parameter is 840 indexed past the end of the uses-array. 841 + add an option -q to infocmp to specify the less verbose output, 842 keeping the existing format as the default, though not retaining the 843 previous behavior that made the -F option compare each entry to 844 itself. 845 + adapted patch by Eric Raymond to make infocmp -F less verbose 846 (the submitted patch was unusable because it did not compile 847 properly): 848 + modify write_entry.c to ensure that absent or cancelled booleans 849 are written as FALSE, for consistency with infocmp which now 850 assumes this. Note that for the small-core configuration, tic 851 may not produce the same result as before. 852 + change some private library interfaces used by infocmp, e.g., 853 _nc_resolve_uses(). 854 + add a check in _nc_infotocap() to ensure that cm-style capabilities 855 accept only %d codes when converting the format from terminfo to 856 termcap. 857 + modify ENTRY struct to separate the data in 'parent' into the name 858 and link values (the original idea to merge both into 'parent' was 859 not good). 860 + discard repair_acsc(tterm); 861 > patch by Juergen Pfeifer: 862 + drop support for gnat 3.10 863 + move generated documentation and html files under ./doc directory, 864 adding makefile rules for this to dist.mk 865 86620000304 867 + correct conflicting use of tparm() in 20000226 change to tic, which 868 made it check only one entry at a time. 869 + fix errors in ncurses-intro.html and hackguide.html shown by Dave 870 Raggett's tidy. 871 + make the example in ncurses-intro.html do something plausible, and 872 corrected misleading comment (reported by Neil Zanella). 873 + modify pnoutrefresh() to set newscr->_leaveok as wnoutrefresh() does, 874 to fix a case where the cursor position was not updated as in 875 Solaris (patch by David Mosberger <davidm@hpl.hp.com>). 876 + add a limit-check for wresize() to ensure that a subwindow does not 877 address out of bounds. 878 + correct offsets used for subwindows in wresize() (patch by Michael 879 Andres <ma@suse.de>). 880 + regenerate html'ized manual pages with man2html 3.0.1 (patch by 881 Juergen Pfeifer). This generated a file with a space in its name, 882 which I removed. 883 + fix a few spelling errors in tack. 884 + modify tack/Makefile.in to match linker options of progs/Makefile.in; 885 otherwise it does not build properly for older HPUX shared library 886 configurations. 887 + add several terminfo entries from esr's "11.0". 888 88920000226 890 + make 'tput flash' work properly for xterm by flushing output in 891 delay_output() when using napms(), and modifying xterm's terminfo to 892 specify no padding character. Otherwise, xterm's reported baud rate 893 can mislead ncurses into producing too few padding characters 894 (Debian #58530). 895 + add a check to tic for consistency between sgr and the separate 896 capabilities such as smso, use this to check/correct several 897 terminfo entries (Debian #58530). 898 + add a check to tic if cvvis is the same as cnorm, adjusted several 899 terminfo entries to remove the conflict (Debian #58530). 900 + correct prototype shown in attr_set()/wattr_set() manpages (fixes 901 Debian #53962). 902 + minor clarification for curs_set() and leaveok() manpages. 903 + use mkstemp() for creating temporary file for tic's processing of 904 $TERMCAP contents (fixes Debian #56465). 905 + correct two errors from integrating Alexander's changes: did not 906 handle the non-bce case properly in can_erase_with() (noted by 907 Alexander), and left fg/bg uninitialized in the pair-zero case of 908 _nc_do_color() (reported by Dr Werner Fink <werner@suse.de> and 909 Ismael Cordeiro <ismael@cordeiro.com>). 910 91120000219 912 + store default-color code consistently as C_MASK, even if given as 913 -1 for convenience (adapted from patches by Alexander Lukyanov). 914 > patches by Alexander Lukyanov: 915 + change can_clear_with() macro to accommodate logic for 916 assume_default_colors(), making most of the FILL_BCE logic 917 unnecessary. Made can_clear_with() an inline function to make it 918 simpler to read. 919 92020000212 921 + corrected form of recent copyright dates. 922 + minor corrections to xterm-xf86-v333 terminfo entry -TD 923 > patches by Alexander Lukyanov: 924 + reworded dft_fgbg.3x to avoid assuming that the terminal's default 925 colors are white on black. 926 + fix initialization of tstLine so that it is filled with current blank 927 character in any case. Previously it was possible to have it filled 928 with old blank. The wrong over-optimization was introduced in 991002 929 patch. (it is not very critical as the only bad effect is not using 930 clr_eos for clearing if blank has changed). 931 93220000205 933 + minor corrections/updates to several terminfo entries: rxvt-basic, 934 vt520, vt525, ibm5151, xterm-xf86-v40 -TD 935 + modify ifdef's for poll() to allow it to use <sys/poll.h>, thereby 936 allowing poll() to be used on Linux. 937 + add CF_FUNC_POLL macro to check if poll() is able to select from 938 standard input. If not we will not use it, preferring select() 939 (adapted from patch by Michael Pakovic <mpakovic@fdn.com>). 940 + update CF_SHARED_OPTS macro for SCO Unixware 7.1 to allow building 941 shared libraries (reported/tested by Thanh <thanhma@mediaone.net>). 942 + override $LANGUAGE in build to avoid incorrect ordering of keynames. 943 + correct CF_MATH_LIB parameter, must be sin(x), not sqrt(x). 944 94520000122 946 + resync CF_CHECK_ERRNO and CF_LIB_PREFIX macros from tin and xterm. 947 + modify CF_MATH_LIB configure macro to parameterize the test function 948 used, for reuse in dialog and similar packages. 949 + correct tests for file-descriptors in OS/2 EMX mouse support. A 950 negative value could be used by FD_SET, causing the select() call 951 to wait indefinitely. 952 95320000115 954 + additional fixes for non-bce terminals (handling of delete_character) 955 to work when assume_default_colors() is not specified. 956 + modify warning message from _nc_parse_entry() regarding extended 957 capability names to print only if tic/infocmp/toe have the -v flag 958 set, and not at all in ordinary user applications. Otherwise, this 959 warning would be shown for screen's extended capabilities in programs 960 that use the termcap interface (reported by Todd C Miller). 961 + modify use of _nc_tracing from programs such as tic so their debug 962 level is not in the same range as values set by trace() function. 963 + small panel header cleanup (patch by Juergen Pfeifer). 964 + add 'railroad' demo for termcap interface. 965 + modify 'tic' to write its usage message to stderr (patch by Todd C 966 Miller). 967 96820000108 969 + add prototype for erase() to curses.h.in, needed to make test 970 programs build with c++/g++. 971 + add .c.i and .c.h suffix rules to generated makefiles, for debugging. 972 + correct install rule for tack.1; it assumed that file was in the 973 current directory (reported by Mike Castle <dalgoda@ix.netcom.com>). 974 + modify terminfo/termcap translation to suppress acsc before trying 975 sgr if the entry would be too large (patch by Todd C Miller). 976 + document a special case of incompatiblity between ncurses 4.2 and 977 5.0, add a section for this in INSTALL. 978 + add TRACE_DATABASE flag for trace(). 979 98020000101 981 + update mach, add mach-color terminfo entries based on Debian diffs 982 for ncurses 5.0 -TD 983 + add entries for xterm-hp, xterm-vt220, xterm-vt52 and xterm-noapp 984 terminfo entries -TD 985 + change OTrs capabilities to rs2 in terminfo.src -TD 986 + add obsolete and extended capabilities to 'screen' terminfo -TD 987 + corrected conversion from terminfo rs2 to termcap rs (cf: 980704) 988 + make conversion to termcap ug (underline glitch) more consistently 989 applied. 990 + fix out-of-scope use of 'personal[]' buffer in 'toe' (this error 991 was in the original pre-1.9.7 version, when $HOME/.terminfo was 992 introduced). 993 + modify 'toe' to ignore terminfo directories to which it has no 994 permissions. 995 + modify read_termtype(), fixing 'toe', which could dump core when it 996 found an incomplete entry such as "dumb" because it did not 997 initialize its buffer for _nc_read_file_entry(). 998 + use -fPIC rather than -fpic for shared libraries on Linux, not 999 needed for i386 but some ports (from Debian diffs for 5.0). 1000 + use explicit VALID_NUMERIC() checks in a few places that had been 1001 overlooked, and add a check to ensure that init_tabs is nonzero, 1002 to avoid divide-by-zero (reported by Todd C Miller). 1003 + minor fix for CF_ANSI_CC_CHECK configure macro, for HPUX 10.x (from 1004 tin). 1005 100619991218 1007 + reorder tests during mouse initialization to allow for gpm to run in 1008 xterm, or for xterm to be used under OS/2 EMX. Also drop test for 1009 $DISPLAY in favor of kmous=\E[M or $TERM containing "xterm" (report 1010 by Christian Weisgerber <naddy@mips.rhein-neckar.de>). 1011 + modify raw() and noraw() to clear/restore IEXTEN flag which affects 1012 stty lnext on systems such as FreeBSD (report by Bruce Evans 1013 <bde@zeta.org.au>, via Jason Evans <jasone@canonware.com>). 1014 + fix a potential (but unlikely) buffer overflow in failed() function 1015 of tset.c (reported by Todd C Miller). 1016 + add manual-page for ncurses extensions, documented curses_version(), 1017 use_extended_names(). 1018 101919991211 1020 + treat as untranslatable to termcap those terminfo strings which 1021 contain non-decimal formatting, e.g., hexadecimal or octal. 1022 + correct commented-out capabilities that cannot be translated to 1023 termcap, which did not check if a colon must be escaped. 1024 + correct termcap translation for "%>" and "%+", which did not check 1025 if a colon must be escaped, for instance. 1026 + use save_string/save_char for _nc_captoinfo() to eliminate fixed 1027 buffer (originally for _nc_infotocap() in 960301 -TD). 1028 + correct expression used for terminfo equivalent of termcap %B, 1029 adjust regent100 entry which uses this. 1030 + some cleanup and commenting of ad hoc cases in _nc_infotocap(). 1031 + eliminate a fixed-buffer in tic, used for translating comments. 1032 + add manpage for infotocap 1033 103419991204 1035 + add kvt and gnome terminfo entries -TD 1036 + correct translation of "%%" by infotocap, which was emitted as "%". 1037 + add "obsolete" termcap strings to terminfo.src 1038 + modify infocmp to default to showing obsolete capabilities rather 1039 than terminfo only. 1040 + modify write_entry.c so that if extended names (i.e., configure 1041 --enable-tcap-names) are active, then tic will also write "obsolete" 1042 capabilities that are present in the terminfo source. 1043 + modify tic so that when running as captoinfo or infotocap, it 1044 initializes the output format as in -C and -I options, respectively. 1045 + improve infocmp and tic -f option by splitting long strings that do 1046 not have if-then-else construct, but do have parameters, e.g., the 1047 initc for xterm-88color. 1048 + refine MKtermsort.sh slightly by using bool for the *_from_termcap 1049 arrays. 1050 105119991127 1052 + additional fixes for non-bce terminals (handling of clear_screen, 1053 clr_eol, clr_eos, scrolling) to work when assume_default_colors() is 1054 not specified. 1055 + several small changes to xterm terminfo entries -TD. 1056 + move logic for _nc_windows in lib_freeall.c inside check for nonnull 1057 SP, since it is part of that struct. 1058 + remove obsolete shlib-versions, which was unintentionally re-added 1059 in 970927. 1060 + modify infocmp -e, -E options to ensure that generated fallback.c 1061 type for Booleans agrees with term.h (reported by Eric Norum 1062 <eric@cls.usask.ca>). 1063 + correct configure script's use of $LIB_PREFIX, which did not work 1064 for installing the c++ directory if $libdir did not end with "/lib" 1065 (reported by Huy Le <huyle@ugcs.caltech.edu>). 1066 + modify infocmp so -L and -f options work together. 1067 + modify the initialization of SP->_color_table[] in start_color() so 1068 that color_content() will return usable values for COLORS greater 1069 than 8. 1070 + modify ncurses 'd' test in case COLORS is greater than 16, e.g., for 1071 xterm-88color, to limit the displayed/computed colors to 16. 1072 > patch by Juergen Pfeifer: 1073 + simplify coding of the panel library according to suggestions by 1074 Philippe Blain. 1075 + improve macro coding for a few macros in curses.priv.h 1076 107719991113 1078 + modify treatment of color pair 0 so that if ncurses is configured 1079 to support default colors, and they are not active, then ncurses 1080 will set that explicitly, not relying on orig_colors or orig_pair. 1081 + add new extension, assume_default_colors() to provide better control 1082 over the use of default colors. 1083 + modify test programs to use more-specific ifdef's for existence of 1084 wresize(), resizeterm() and use_default_colors(). 1085 + modify configure script to add specific ifdef's for some functions 1086 that are included when --enable-ext-funcs is in effect, so their 1087 existence can be ifdef'd in the test programs. 1088 + reorder some configure options, moving those extensions that have 1089 evolved from experimental status into a new section. 1090 + change configure --enable-tcap-names to enable this by default. 1091 109219991106 1093 + install tack's manpage (reported by Robert Weiner 1094 <robert@progplus.com>) 1095 + correct worm.c's handling of KEY_RESIZE (patch by Frank Heckenbach). 1096 + modify curses.h.in, undef'ing some symbols to avoid conflict with C++ 1097 STL (reported by Matt Gerassimoff <mgeras@ticon.net>) 1098 109919991030 1100 + modify linux terminfo entry to indicate that dim does not mix with 1101 color (reported by Klaus Weide <kweide@enteract.com>). 1102 + correct several typos in terminfo entries related to missing '[' 1103 in CSI's -TD 1104 + fix several compiler warnings in c++ binding (reported by Tim 1105 Mooney for alphaev56-dec-osf4.0f 1106 + rename parameter of _nc_free_entries() to accommodate lint. 1107 + correct lint rule for tack, used incorrect list of source files. 1108 + add case to config.guess, config.sub for Rhapsody. 1109 + improve configure tests for libg++ and libstdc++ by omitting the 1110 math library (which is missing on Rhapsody), and improved test for 1111 the math library itself (adapted from path by Nelson H. F. Beebe). 1112 + explicitly initialize to zero several data items which were 1113 implicitly initialized, e.g., cur_term. If not explicitly 1114 initialized, their storage type is C (common), and causes problems 1115 linking on Rhapsody 5.5 using gcc 2.7.2.1 (reported by Nelson H. F. 1116 Beebe). 1117 + modify Ada95 binding to not include the linker option for Ada 1118 bindings in the Ada headers, but in the Makefiles instead (patch by 1119 Juergen Pfeifer). 1120 112119991023 5.0 release for upload to ftp.gnu.org 1122 + effective with release of 5.0, change NCURSES_VERSION_PATCH to 1123 4-digit year. 1124 + add function curses_version(), to return ncurses library version 1125 (request by Bob van der Poel). 1126 + remove rmam, smam from cygwin terminfo entry. 1127 + modify FreeBSD cons25 terminfo entry to add cnorm and cvvis, as well 1128 as update ncv to indicate that 'dim' conflicts with colors. 1129 + modify configure script to use symbolic links for FreeBSD shared 1130 libraries by default. 1131 + correct ranf() function in rain and worm programs to ensure it does 1132 not return 1.0 1133 + hide the cursor in hanoi.c if it is running automatically. 1134 + amend lrtest.c to account for optimizations that exploit margin 1135 wrapping. 1136 + add a simple terminfo demo, dots.c 1137 + modify SIGINT/SIGQUIT handler to set a flag used in _nc_outch() to 1138 tell it to use write() rather than putc(), since the latter is not 1139 safe in a signal handler according to POSIX. 1140 + add/use internal macros _nc_flush() and NC_OUTPUT to hide details 1141 of output-file pointer in ncurses library. 1142 + uncomment CC_SHARED_OPTS (see 971115), since they are needed for SCO 1143 OpenServer. 1144 + correct CC_SHARED_OPTS for building shared libraries for SCO 1145 OpenServer. 1146 + remove usleep() from alternatives in napms(), since it may interact 1147 with alarm(), causing a process to be interrupted by SIGALRM (with 1148 advice from Bela Lubkin). 1149 + modify terminal_interface-curses-forms.ads.m4 to build/work with 1150 GNAT 3.10 (patch by Juergen Pfeifer). 1151 + remove part of CF_GPP_LIBRARY configure-script macro, which did not 1152 work with gcc 2.7.2.3 1153 + minor fix to test/tclock.c to avoid beeping more than once per second 1154 + add 's' and ' ' decoding to test/rain.c 1155 1156991016 pre-release 1157 + corrected BeOS code for lib_twait.c, making nodelay() function work. 1158 1159991009 pre-release 1160 + correct ncurses' value for cursor-column in PutCharLR(), which was 1161 off-by-one in one case (patch by Ilya Zakharevich). 1162 + fix some minor errors in position_check() debugging code, found while 1163 using this to validate the PutCharLR() patch. 1164 + modify firework, lrtest, worm examples to be resizable, and to 1165 recognize 'q' for quit, 's' for single-step and ' ' for resume. 1166 + restore reverted change to terminal_interface-curses-forms.ads.m4, 1167 add a note on building with gnat 3.10p to Ada95/TODO. 1168 + add a copy of the standalone configure script for the test-directory 1169 to simplify testing on SCO and Solaris. 1170 1171991002 pre-release 1172 + minor fixes for _nc_msec_cost(), color_content(), pair_content(), 1173 _nc_freewin(), ClrBottom() and onscreen_mvcur() (analysis by Philippe 1174 Blain, comments by Alexander Lukyanov). 1175 + simplify definition of PANEL and eliminate internal functions 1176 _nc_calculate_obscure(), _nc_free_obscure() and _nc_override(), 1177 (patch by Juergen Pfeifer, based on analysis by Philippe Blain 1178 <bledp@voila.fr>)). 1179 + change renaming of dft_fgbg.3x to use_default_colors.3ncurses in 1180 man_db.renames, since Debian is not concerned with 14-character 1181 filename limitation (from Debian bug report by Josip Rodin 1182 <joy@cibalia.gkvk.hr>). 1183 + corrected scoansi terminfo entry by testing with scoterm and console. 1184 + revert change from 990614 to terminal_interface-curses-forms.ads.m4, 1185 since this does not work for gnat 3.10p 1186 + modify tclock example to be resizable (if ncurses' sigwinch handler 1187 is used), and in color. 1188 + use $(CC) rather than 'gcc' in MK_SHARED_LIB symbols, used for Linux 1189 shared library rules. 1190 1191990925 pre-release 1192 + add newer NetBSD console terminfo entries 1193 + add amiga-8bit terminfo entry (from Henning 'Faroul' Peters 1194 <Faroul@beyond.kn-bremen.de>) 1195 + remove -lcurses -ltermcap from configure script's check for the gpm 1196 library, since they are not really necessary (a properly configured 1197 gpm library has no dependency on any curses library), and if the 1198 curses library is not installed, this would cause the test to fail. 1199 + modify tic's -C option so that terminfo "use=" clauses are translated 1200 to "tc=" clauses even when running it as captoinfo. 1201 + modify CF_STDCPP_LIBRARY configure macro to perform its check only 1202 for GNU C++, since that library conflicts with SGI's libC on IRIX-6.2 1203 + modify CF_SHARED_OPTS configure macro to support build on NetBSD with 1204 ELF libraries (patch by Bernd Ernesti <bernd@arresum.inka.de>). 1205 + correct a problem in libpanel, where the _nc_top_panel variable was 1206 not set properly when bottom_panel() is called to hide a panel which 1207 is the only one on the stack (report/analysis by Michael Andres 1208 <ma@suse.de>, patch by Juergen Pfeifer). 1209 1210990918 pre-release 1211 + add acsc string to HP 70092 terminfo entry (patch by Joerg Wunsch 1212 <j@interface-business.de>). 1213 + add top-level uninstall.data and uninstall.man makefile rules. 1214 + correct logic of CF_LINK_FUNCS configure script, from BeOS changes so 1215 that hard-links work on Unix again. 1216 + change default value of cf_cv_builtin_bool to 1 as suggested by 1217 Jeremy Buhler, making it less likely that a conflicting declaration 1218 of bool will be seen when compiling with C++. 1219 1220990911 pre-release 1221 + improved configure checks for builtin.h 1222 + minor changes to C++ binding (remove static initializations, and make 1223 configure-test for parameter initializations) for features not 1224 allowed by vendor's C++ compilers (reported by Martin Mokrejs, this 1225 applies to SGI, though I found SCO has the same characteristics). 1226 + corrected quoting of ETIP_xxx definitions which support old versions 1227 of g++, e.g., those using -lg++ 1228 + remove 'L' code from safe_sprintf.c, since 'long double' is not 1229 widely portable. safe_sprintf.c is experimental, however, and 1230 exists mainly as a fallback for systems without snprintf (reported 1231 by Martin Mokrejs <mmokrejs@natur.cuni.cz>, for IRIX 6.2) 1232 + modify definition of _nc_tinfo_fkeys in broken-linker configuration 1233 so that it is not unnecessarily made extern (Jeffrey C Honig). 1234 1235990904 pre-release 1236 + move definition for builtin.h in configure tests to specific check 1237 for libg++, since qt uses the same filename incompatibly. 1238 + correct logic of lib_termcap.c tgetstr function, which did not copy 1239 the result to the buffer parameter. Testing shows Solaris does 1240 update this, though of course tgetent's buffer is untouched (from 1241 mpc.lists.freebsd.current newsgroup item by Peter Edwards 1242 <peter.edwards@ireland.com>). 1243 + corrected beterm terminfo entry, which lists some capabilities which 1244 are not actually provided by the BeOS Terminal. 1245 + add special logic to replace select() calls on BeOS, whose select() 1246 function works only for sockets. 1247 + correct missing escape in mkterm.h.awk.in, which caused part 1248 of the copyright noticed to be omitted (reported by Peter 1249 Wemm <peter@netplex.com.au>). 1250 > several small changes to make the c++ binding and demo work on OS/2 1251 EMX (related to a clean reinstall of EMX): 1252 + correct library-prefix for c++ binding; none is needed. 1253 + add $x suffix to make_hash and make_keys so 'make distclean' works. 1254 + correct missing $x suffix for tack, c++ demo executables. 1255 + split CF_CXX_LIBRARY into CF_GPP_LIBRARY (for -lg++) and 1256 CF_STDCPP_LIBRARY (for -lstdc++) 1257 1258990828 pre-release 1259 + add cygwin terminfo entry -TD 1260 + modify CF_PROG_EXT configure macro to set .exe extension for cygwin. 1261 + add configure option --without-cxx-binding, modifying the existing 1262 --without-cxx option to check only for the C++ compiler 1263 characteristics. Whether or not the C++ binding is needed, the 1264 configure script checks for the size/type of bool, to make ncurses 1265 match. Otherwise C++ applications cannot use ncurses. 1266 1267990821 pre-release 1268 + updated configure macros CF_MAKEFLAGS, CF_CHECK_ERRNO 1269 + minor corrections to beterm terminfo entry. 1270 + modify lib_setup.c to reject values of $TERM which have a '/' in them. 1271 + add ifdef's to guard against CS5, CS6, CS7, CS8 being zero, as more 1272 than one is on BeOS. That would break a switch statement. 1273 + add configure macro CF_LINK_FUNCS to detect and work around BeOS's 1274 nonfunctional link(). 1275 + improved configure macros CF_BOOL_DECL and CF_BOOL_SIZE to detect 1276 BeOS's bool, which is declared as an unsigned char. 1277 1278990814 pre-release 1279 + add ms-vt100 terminfo entry -TD 1280 + minor fixes for misc/emx.src, based on testing with tack. 1281 + minor fix for test/ncurses.c, test 'a', in case ncv is not set. 1282 1283990731 pre-release 1284 + minor correction for 'screen' terminfo entry. 1285 + clarify description of errret values for setupterm in manpage. 1286 + modify tput to allow it to emit capabilities for hardcopy terminals 1287 (patch by Goran Uddeborg <goeran@uddeborg.pp.se>). 1288 + modify the 'o' (panel) test in ncurses.c to show the panels in color 1289 or at least in bold, to test Juergen's change to wrefresh(). 1290 > patches by Juergen Pfeifer: 1291 + Fixes a problem using wbkgdset() with panels. It has actually 1292 nothing to with panels but is a problem in the implementation of 1293 wrefresh(). Whenever a window changes its background attribute to 1294 something different than newscr's background attribute, the whole 1295 window is touched to force a copy to newscr. This is an unwanted 1296 side-effect of wrefresh() and it is actually not necessary. A changed 1297 background attribute affects only further outputs of background it 1298 doesn't mean anything to the current content of the window. So there 1299 is no need to force a copy. (reported by Frank Heckenbach 1300 <frank@g-n-u.de>). 1301 + an upward compatible enhancement of the NCursesPad class in the C++ 1302 binding. It allows one to add a "viewport" window to a pad and then 1303 to use panning to view the pad through the viewport window. 1304 1305990724 pre-release 1306 + suppress a call to def_prog_mode() in the SIGTSTP handler if the 1307 signal was received while not in curses mode, e.g., endwin() was 1308 called in preparation for spawning a shell command (reported by Frank 1309 Heckenbach <frank@g-n-u.de>) 1310 + corrected/enhanced xterm-r5, xterm+sl, xterm+sl-twm terminfo entries. 1311 + change test for xterm mouse capability: it now checks only if the 1312 user's $DISPLAY variable is set in conjunction with the kmous 1313 capability being present in the terminfo. Before, it checked if any 1314 of "xterm", "rxvt" or "kterm" were substrings of the terminal name. 1315 However, some emulators which are incompatible with xterm in other 1316 ways do support the xterm mouse capability. 1317 + reviewed and made minor changes in ncurses to quiet g++ warnings 1318 about shadowed or uninitialized variables. g++ incorrectly warns 1319 about uninitialized variables because it does not take into account 1320 short-circuit expression evaluation. 1321 + change ncurses 'b' test to start in color pair 0 and to show in the 1322 right margin those attributes which are suppressed by no_color_video, 1323 i.e., "(NCV)". 1324 + modify ifdef's in curses.h so that __attribute__ is not redefined 1325 when compiling with g++, but instead disabled the macros derived for 1326 __attribute__ since g++ does not consistently recognize the same 1327 keywords as gcc (reported by Stephan K Zitz <zitz@erf.net>). 1328 + update dependencies for term.h in ncurses/modules (reported by 1329 Ilya Zakharevich). 1330 1331990710 pre-release 1332 + modify the form demo in ncurses.c to illustrate how to manipulate the 1333 field appearance, e.g, for highlighting or translating the field 1334 contents. 1335 + correct logic in write_entry from split-out of home_terminfo in 1336 980919, which prevented update of $HOME/.terminfo (reported by Philip 1337 Spencer <pspencer@fields.utoronto.ca>). 1338 1339990703 pre-release 1340 + modify linux terminfo description to make use of kernel 2.2.x mods 1341 that support cursor style, e.g., to implement cvvis (patch by Frank 1342 Heckenbach <frank@g-n-u.de>) 1343 + add special-case in setupterm to retain previously-saved terminal 1344 settings in cur_term, which happens when curses and termcap calls are 1345 mixed (from report by Bjorn Helgaas <helgaas@dhc.net>). 1346 + suppress initialization of key-tries in _nc_keypad() if we are only 1347 disabling keypad mode, e.g., in endwin() called when keypad() was not. 1348 + modify the Ada95 makefile to ensure that always the Ada files from 1349 the development tree are used for building and not the eventually 1350 installed ones (patch by Juergen Pfeifer). 1351 1352990626 pre-release 1353 + use TTY definition in tack/sysdep.c rather than struct termios 1354 (reported by Philippe De Muyter). 1355 + add a fallback for strstr, used in lib_mvcur.c and tack/edit.c, 1356 not present on sysV68 (reported by Philippe De Muyter). 1357 + correct definition in comp_hash.c to build with configure 1358 --with-rcs-ids option. 1359 1360990619 pre-release 1361 + modified ifdef's for sigaction and sigvec to ensure we do not try to 1362 handle SIGTSTP if neither is available (from report by Philippe De 1363 Muyter). 1364 > patch by Philippe De Muyter: 1365 + in tic.c, use `unlink' if `remove' is not available. 1366 + use only `unsigned' as fallback value for `speed_t'. Some files used 1367 `short' instead. 1368 1369990616 pre-release 1370 + fix some compiler warnings in tack. 1371 + add a check for predefined bool type in CC, based on report that 1372 BeOS predefines a bool type. 1373 + correct logic for infocmp -e option (i.e., the configure 1374 --with-fallbacks option), which I'd not updated when implementing 1375 extended names (cf: 990301). The new implementation adds a -E 1376 option to infocmp. 1377 > patch by Juergen Pfeifer: 1378 + introduce the private type Curses_Bool in the Ada95 binding 1379 implementation. This is to clearly represent the use of "bool" also 1380 in the binding. It should have no effect on the generated code. 1381 + improve the man page for field_buffer() to tell the people, that the 1382 whole buffer including leading/trailing spaces is returned. This is 1383 a common source of confusion, so it's better to document it clearly. 1384 1385990614 pre-release 1386 > patch by Juergen Pfeifer: 1387 + use pragma PreElaborate in several places. 1388 + change a few System.Address uses to more specific types. 1389 + change interface version-number to 1.0 1390 + regenerate Ada95 HTML files. 1391 1392990612 pre-release 1393 + modify lib_endwin.c to avoid calling reset_shell_mode(), return ERR 1394 if it appears that curses was never initialized, e.g., by initscr(). 1395 For instance, this guards against setting the terminal modes to 1396 strange values if endwin() is called after setupterm(). In the same 1397 context, Solaris curses will dump core. 1398 + modify logic that avoids a conflict in lib_vidattr.c between sgr0 and 1399 equivalent values in rmso or rmul by ensuring we do not modify the 1400 data which would be returned by the terminfo or termcap interfaces 1401 (reported by Brad Pepers <brad@linuxcanada.com>, cf: 960706). 1402 + add a null-pointer check for SP in lib_vidattr.c to logic that checks 1403 for magic cookies. 1404 + improve fallback declaration of 'bool' when the --without-cxx option 1405 is given, by using a 'char' on i386 and related hosts (from discussion 1406 with Alexander Lukyanov). 1407 1408990605 pre-release 1409 + include time.h in lib_napms.c if nanosleep is used (patch by 1410 R Lindsay Todd <toddr@rpi.edu>). 1411 + add an "#undef bool" to curses.h, in case someone tries to define it, 1412 e.g., perl. 1413 + add check to tparm to guard against divide by zero (reported by Aaron 1414 Campbell <aaron@ug.cs.dal.ca>). 1415 1416990516 pre-release 1417 + minor fix to build tack on CLIX (mismatched const). 1418 > patch by Juergen Pfeifer: 1419 + change Juergen's old email address with new one in the files where it 1420 is referenced. The Ada95 HTML pages are regenerated. 1421 + update MANIFEST to list the tack files. 1422 1423990509 pre-release 1424 + minor fixes to make 'tack' build/link on NeXT (reported by Francisco 1425 A. Tomei Torres). 1426 1427990417 pre-release 1428 + add 'tack' program (which is GPL'd), updating it to work with the 1429 modified TERMTYPE struct and making a fix to support setaf/setab 1430 capabilities. Note that the tack program is not part of the 1431 ncurses libraries, but an application which can be distributed with 1432 ncurses. The configure script will ignore the directory if it is 1433 omitted, however. 1434 + modify gpm mouse support so that buttons 2 and 3 are used for 1435 select/paste only when shift key is pressed, making them available 1436 for use by an application (patch by Klaus Weide). 1437 + add complete list of function keys to scoansi terminfo entry - TD 1438 1439990410 pre-release 1440 + add a simple test program cardfile.c to illustrate how to read form 1441 fields, and showing forms within panels. 1442 + change shared-library versioning for the Hurd to be like Linux rather 1443 than *BSD (patch by Mark Kettenis <kettenis@wins.uva.nl>). 1444 + add linux-lat terminfo entry. 1445 + back-out _nc_access check in read_termcap.c (both incorrect and 1446 unnecessary, except to guard against a small window where the file's 1447 ownership may change). 1448 1449990403 pre-release 1450 + remove conflicting _nc_free_termtype() function from test module 1451 lib_freeall.c 1452 + use _nc_access check in read_termcap.c for termpaths[] array (noted 1453 by Jeremy Buhler, indicating that Alan Cox made a similar patch). 1454 > patch by Juergen Pfeifer: 1455 + modify menu creation to not inherit status flag from the default menu 1456 which says that the associated marker string has been allocated and 1457 should be freed (bug reported by Marek Paliwoda" <paliwoda@kki.net.pl>) 1458 1459990327 pre-release (alpha.gnu.org:/gnu/ncurses-5.0-beta1.tar.gz) 1460 + minor fixes to xterm-xfree86 terminfo entry - TD. 1461 + split up an expression in configure script check for ldconfig to 1462 workaround limitation of BSD/OS sh (reported by Jeff Haas 1463 <jmh@mail.msen.com>). 1464 + correct a typo in man/form_hook.3x (Todd C Miller). 1465 1466990318 pre-release 1467 + parenthesize and undef 'index' symbol in c++ binding and demo, to 1468 accommodate its definition on NeXT (reported by Francisco A. Tomei 1469 Torres). 1470 + add sigismember() to base/sigaction.c compatibility to link on NeXT 1471 (reported by Francisco A. Tomei Torres). 1472 + further refinements to inequality in hashmap.c to cover a case with 1473 ^U in nvi (patch by Alexander Lukyanov). 1474 1475990316 pre-release 1476 + add fallback definition for getcwd, to link on NeXT. 1477 + add a copy of cur_term to tic.c to make it link properly on NeXT 1478 (reported by Francisco A. Tomei Torres). 1479 + change inequality in hashmap.c which checks the distance traveled by 1480 a chunk so that ^D command in nvi (scrolls 1/2 screen) will use 1481 scrolling logic (patch by Alexander Lukyanov, reported by Jeffrey 1482 C Honig). 1483 1484990314 pre-release 1485 + modify lib_color.c to handle a special case where the curscr 1486 attributes have been made obsolete (patch by Alexander Lukyanov). 1487 + update BSD/OS console terminfo entries to use klone+sgr and 1488 klone+color (patch by Jeffrey C Honig). 1489 + update glibc addon configure script for extended capabilities. 1490 + correct a couple of warnings in the --enable-const configuration. 1491 + make comp_hash build properly with _nc_strdup(), on NeXT (reported by 1492 Francisco A. Tomei Torres <francisco.tomei@cwix.com>). 1493 1494990313 pre-release 1495 + correct typos in linux-c initc string - TD 1496 + add 'crt' terminfo entry, update xterm-xfree86 entry - TD 1497 + remove a spurious argument to tparm() in lib_sklrefr.c (patch by 1498 Alexander Lukyanov). 1499 1500990307 pre-release 1501 + back-out change to wgetch because it causes a problem with ^Z 1502 handling in lynx (reported by Kim DeVaughn). 1503 1504990306 pre-release 1505 + add -G option to tic and infocmp, to reverse the -g option. 1506 + recode functions in name_match.c to avoid use of strncpy, which 1507 caused a 4-fold slowdown in tic (cf: 980530). 1508 + correct a few warnings about sign-extension in recent changes. 1509 > patch by Juergen Pfeifer: 1510 + fixes suggested by Jeff Bradbury <jibradbury@lucent.com>: 1511 + improved parameter checking in new_fieldtype(). 1512 + fixed a typo in wgetch() timeout handling. 1513 + allow slk_init() to be called per newterm call. The internal SLK 1514 state is stored in the SCREEN struct after every newterm() and then 1515 reset for the next newterm. 1516 + fix the problem that a slk_refresh() refreshes stdscr if the 1517 terminal has true SLKs. 1518 + update HTML documentation for Ada binding. 1519 1520990301 pre-release 1521 + remove 'bool' casts from definitions of TRUE/FALSE so that statements 1522 such as "#if TRUE" work. This was originally done to allow for a C++ 1523 compiler which would warn of implicit conversions between enum and 1524 int, but is not needed for g++ (reported by Kim DeVaughn). 1525 + add use_extended_names() function to allow applications to suppress 1526 read of the extended capabilities. 1527 + add configure option --enable-tcap-names to support logic which 1528 allows ncurses' tic to define new (i.e., extended) terminal 1529 capabilities. This is activated by the tic -x switch. The infocmp 1530 program automatically shows or compares extended capabilities. 1531 Note: This changes the Strings and similar arrays in the TERMTYPE 1532 struct so that applications which manipulate it must be recompiled. 1533 + use macros typeMalloc, typeCalloc and typeRealloc consistently 1534 throughout ncurses library. 1535 + add _nc_strdup() to doalloc.c. 1536 + modify define_key() to allow multiple strings to be bound to the 1537 same keycode. 1538 + correct logic error in _nc_remove_string, from 990220. 1539 > patch by Juergen Pfeifer, for Ada95 binding: 1540 + regenerate some of the html documentation 1541 + minor cleanup in terminal_interface-curses.adb 1542 1543990220 pre-release 1544 + resolve ambiguity of kend/kll/kslt and khome/kfnd/kich1 strings in 1545 xterm and ncsa terminfo entries by removing the unneeded ones. Note 1546 that some entries will return kend & khome versus kslt and kfnd, for 1547 PC-style keyboards versus strict vt220 compatiblity - TD 1548 + add function keybound(), which returns the definition associated with 1549 a given keycode. 1550 + modify define_key() to undefine the given string when no keycode is 1551 given. 1552 + modify keyok() so it works properly if there is more than one string 1553 defined for a keycode. 1554 + add check to tic to warn about terminfo descriptions that contain 1555 more than one key assigned to the same string. This is shown only if 1556 the verbose (-v) option is given. Moved related logic (tic -v) from 1557 comp_parse.c into the tic program. 1558 + add/use _nc_trace_tries() to show the function keys that will be 1559 recognized. 1560 + rename init_acs to _nc_init_acs (request by Alexander Lukyanov). 1561 > patch by Juergen Pfeifer, for Ada95 binding: 1562 + remove all the *_adabind.c from ncurses, menu and form projects. 1563 Those little helper routines have all been implemented in Ada and are 1564 no longer required. 1565 + The option handling routines in menu and form have been made more 1566 save. They now make sure that the unused bits in options are always 1567 zero. 1568 + modify configuration scripts to 1569 + use gnatmake as default compiler name. This is a safer choice than 1570 gcc, because some GNAT implementations use other names for the 1571 compilerdriver to avoid conflicts. 1572 + use new default installation locations for the Ada files according 1573 to the proposed GNU Ada filesystem standard (for Linux). 1574 + simplify the Makefiles for the Ada binding 1575 + rename ada_include directory to src. 1576 1577990213 1578 + enable sigwinch handler by default. 1579 + disable logic that allows setbuf to be turned off/on, because some 1580 implementations will overrun the buffer after it has been disabled 1581 once. 1582 1583990206 1584 + suppress sc/rc capabilities from terminal description if they appear 1585 in smcup/rmcup. This affects only scrolling optimization, to fix a 1586 problem reported by several people with xterm's alternate screen, 1587 though the problem is more general. 1588 > patch by Juergen Pfeifer, for Ada95 binding: 1589 + removed all pragma Preelaborate() stuff, because the just released 1590 gnat-3.11p complains on some constructs. 1591 + fixed some upper/lower case notations because gnat-3.11p found 1592 inconsistent use. 1593 + used a new method to generate the HTML documentation of the Ada95 1594 binding. This invalidates nearly the whole ./Ada95/html subtree. 1595 Nearly all current files in this subtree are removed 1596 1597990130 1598 + cache last result from _nc_baudrate, for performance (suggested by 1599 Alexander Lukyanov). 1600 + modify ClrUpdate() function to workaround a problem in nvi, which 1601 uses redrawwin in SIGTSTP handling. Jeffrey C Honig reported that 1602 ncurses repainted the screen with nulls before resuming normal 1603 operation (patch by Alexander Lukyanov). 1604 + generalize is_xterm() function a little by letting xterm/rxvt/kterm 1605 be any substring rather than the prefix. 1606 + modify lib_data.c to initialize SP. Some linkers, e.g., IBM's, will 1607 not link a module if the only symbols exported from the module are 1608 uninitialized ones (patch by Ilya Zakharevich, who says that he has 1609 seen messages claiming this behaviour conforms to the standard.) 1610 + move call on _nc_signal_handler past _nc_initscr, to avoid a small 1611 window where Nttyb hasn't yet been filled (reported by Klaus Weide). 1612 + modify lib_tstp.c to block SIGTTOU when handling SIGTSTP, fixes a 1613 problem where ncurses applications which were run via a shell script 1614 would hang when given a ^Z. Also, check if the terminal's process 1615 group is consistent, i.e., a shell has not taken ownership of it, 1616 before deciding to save the current terminal settings in the SIGTSTP 1617 handler (patch by Klaus Weide). 1618 + correct spelling of ACS_ names in curs_border.3x (reported by Bob van 1619 der Poel <bvdpoel@kootenay.com>). 1620 + correct a couple of typos in the macros supporting the configure 1621 --with-shlib-version option. 1622 1623990123 1624 + modify fty_regex.c to compile on HAVE_REGEXPR_H_FUNCS machine (patch 1625 by Kimio Ishii <ishii@csl.sony.co.jp>). 1626 + rename BSDI console terminfo entries: bsdos to bsdos-pc-nobold, and 1627 bsdos-bold to bsdos-pc (patch by Jeffrey C Honig). 1628 + modify tput to accept termcap names as an alternative to terminfo 1629 names (patch by Jeffrey C Honig). 1630 + correct a typo in term.7 (Todd C Miller). 1631 + add configure --with-shlib-version option to allow installing shared 1632 libraries named according to release or ABI versions. This 1633 parameterizes some existing logic in the configure script, and is 1634 intended for compatiblity upgrades on Digital Unix, which used 1635 versioned libraries in ncurses 4.2, but no longer does (cf: 980425). 1636 + resync configure script against autoconf 2.13 + patches 1637 + minor improvements for teraterm terminfo entry based on the program's 1638 source distribution. 1639 1640990116 1641 + change default for configure --enable-big-core to assume machines do 1642 have enough memory to resolve terminfo.src in-memory. 1643 + correct name of ncurses library in TEST_ARGS when configuring with 1644 debug library. 1645 + minor fixes to compile ncurses library with broken-linker with g++. 1646 + add --enable-broken-linker configure option, default to environment 1647 variable $BROKEN_LINKER (request by Jeffrey C Honig). 1648 + change key_names[] array to static since it is not part of the curses 1649 interface (reported by Jeffrey C Honig <jch@bsdi.com>). 1650 1651990110 1652 + add Tera Term terminfo entry - TD 1653 1654990109 1655 + reviewed/corrected macros in curses.h as per XSI document. 1656 + provide support for termcap PC variable by copying it from terminfo 1657 data and using it as the padding character in tputs (reported by 1658 Alexander Lukyanov). 1659 + corrected iris-ansi and iris-ansi-ap terminfo entries for kent and 1660 kf9-kf12 capabilities, as well as adding kcbt. 1661 + document the mouse handling mechanism in menu_driver and make a small 1662 change in menu_driver's return codes to provide more consistency 1663 (patch by Juergen Pfeifer). 1664 + add fallback definition for NCURSES_CONST to termcap.h.in (reported 1665 by Uchiyama Yasushi <uch@nop.or.jp>). 1666 + move lib_restart.c to ncurses/base, since it uses curses functions 1667 directly, and therefore cannot be used in libtinfo.so 1668 + rename micro_char_size to micro_col_size, adding #define to retain 1669 old name. 1670 + add set_a_attributes and set_pglen_inch to terminfo structure, as per 1671 XSI and Solaris 2.5. 1672 + minor makefile files to build ncurses test_progs 1673 + update html files in misc directory to reflect changes since 4.2 1674 1675990102 1676 + disable scroll hints when hashmap is enabled (patch by Alexander 1677 Lukyanov). 1678 + move logic for tic's verify of -e option versus -I and -C so that the 1679 terminfo data is not processed if we cannot handle -e (reported by 1680 Steven Schwartz <steves@unitrends.com>. 1681 + add test-driver traces to terminfo and termcap functions. 1682 + provide support for termcap ospeed variable by copying it from the 1683 internal cur_term member, and using ospeed as the baudrate reference 1684 for the delay_output and tputs functions. If an application does not 1685 set ospeed, the library behaves as before, except that _nc_timed_wait 1686 is no longer used, or needed, since ospeed always has a value. But 1687 the application can modify ospeed to adjust the output of padding 1688 characters (from a bug report for screen 3.7.6 and email from Michael 1689 Schroeder <Michael.Schroeder@informatik.uni-erlangen.de>). 1690 + removed some unused ifdef's as part of Alexander's restructuring. 1691 + reviewed/updated curses.h, term.h against X/Open Curses Issue 4 1692 Version 2. This includes making some parameters NCURSES_CONST 1693 rather than const, e.g., in termcap.h. 1694 + change linux terminfo entry to use ncv#2, since underline does not 1695 work with color 1696 1697981226 1698 + miscellaneous corrections for curses.h to match XSI. 1699 + change --enable-no-padding configure option to be normally enabled. 1700 + add section to ncurses manpage for environment variables. 1701 + investigated Debian bug report that pertains to screen 3.7.4/3.7.6 1702 changes, found no sign of problems on Linux (or on SunOS, Solaris) 1703 running screen built with ncurses. 1704 + check if tmp_fp is opened in tic.c before closing it (patch by Pavel 1705 Roskin <pavel_roskin@geocities.com>). 1706 + correct several font specification typos in man-pages. 1707 1708981220 1709 + correct default value for BUILD_CC (reported by Larry Virden). 1710 1711981219 1712 + modify _nc_set_writedir() to set a flag in _nc_tic_dir() to prevent 1713 it from changing the terminfo directory after chdir'ing to it. 1714 Otherwise, a relative path in $TERMINFO would confuse tic (from a 1715 Debian bug report). 1716 + correct/update ncsa terminfo entry (report by Larry Virden). 1717 + update xterm-xfree86 terminfo to current (patch 90), smcur/rmcur changes 1718 + add Mathew Vernon's mach console entries to terminfo.src 1719 + more changes, moving functions, as part of Alexander's restructuring. 1720 + modify configure script for GNU/Hurd share-library support, introduce 1721 BUILD_CC variable for cross compiling (patch by Uchiyama Yasushi 1722 <uch@nop.or.jp>) 1723 1724981212 1725 + add environment variable NCURSES_NO_SETBUF to allow disabling the 1726 setbuf feature, for testing purposes. 1727 + correct ifdef's for termcap.h versus term.h that suppress redundant 1728 declarations of prototypes (reported by H.J.Lu). 1729 + modify Makefile.os2 to add linker flags which allow multiple copies 1730 of an application to coexist (reported by Ilya Zakharevich). 1731 + update Makefile.glibc and associated configure script so that ncurses 1732 builds as a glibc add-on with the new directory configuration 1733 (reported by H.J.Lu). 1734 1735981205 1736 + modify gen_reps() function in gen.c to work properly on SunOS 1737 (sparc), which is a left-to-right architecture. 1738 + modify relative_move and tputs to avoid an interaction with the 1739 BSD-style padding. The relative_move function could produce a string 1740 to replace on the screen which began with a numeric character, which 1741 was then interpreted by tputs as padding. Now relative_move will not 1742 generate a string with a leading digit in that case (overwrite). 1743 Also, tputs will only interpret padding if the string begins with a 1744 digit; as coded it permitted a string to begin with a decimal point 1745 or asterisk (reported by Larry Virden). 1746 > patches by Juergen Pfeifer: 1747 + fix a typo in m_driver.c mouse handling and improves the error 1748 handling. 1749 + fix broken mouse handling in the Ada95 binding 1750 + make the Ada95 sample application menus work with the new menu mouse 1751 support 1752 + improve the mouse handling introduced by Ilya; it now handles menus 1753 with spacing. 1754 + repair a minor bug in the menu_driver code discovered during this 1755 rework. 1756 + add new function wmouse_trafo() to hide implementation details of 1757 _yoffset member of WINDOW struct needed for mouse coordinate 1758 transformation. 1759 1760981128 1761 + modify Ada95/gen/gen.c to avoid using return-value of sprintf, since 1762 some older implementations (e.g., SunOS 4.x) return the buffer 1763 address rather than its length. 1764 > patch by Rick Ohnemus: 1765 + modify demo.cc to get it to compile with newer versions of egcs. 1766 + trim a space that appears at the end of the table preprocessor lines 1767 ('\" t). This space prevents some versions of man from displaying 1768 the pages - changed to remove all trailing whitespace (TD) 1769 + finally, 'make clean' does not remove panel objects. 1770 > patches by Ilya Zakharevich: 1771 + allow remapping of OS/2 mouse buttons using environment variable 1772 MOUSE_BUTTONS_123 with the default value 132. 1773 + add mouse support to ncurses menus. 1774 1775981121 1776 + modify misc/makedef.cmd to report old-style .def file symbols, and to 1777 generate the .def files sorted by increasing names rather than the 1778 reverse. 1779 + add misc/*.ref which are J.J.G.Ripoll's dll definition files (renamed 1780 from misc/*.old), and updated based on the entrypoint coding he used 1781 for an older version of ncurses. 1782 + add README.emx, to document how to build on OS/2 EMX. 1783 + updates for config.guess, config.sub from Lynx 1784 > patches by Ilya Zakharevich: 1785 + minor fixes for mouse handling mode: 1786 a) Do not initialize mouse if the request is to have no mouse; 1787 b) Allow switching of OS/2 VIO mouse on and off. 1788 + modify Makefile.os2 to support alternative means of generating 1789 configure script, by translating Unix script with Perl. 1790 > patches by Juergen Pfeifer: 1791 + Updates MANIFEST to reflect changes in source structure 1792 + Eliminates a problem introduced with my last patch for the C++ 1793 binding in the panels code. It removes the update() call done in the 1794 panel destructor. 1795 + Changes in the Ada95 binding to better support systems where 1796 sizeof(chtype)!=sizeof(int) (e.g. DEC Alpha). 1797 1798981114 1799 + modify install-script for manpages to skip over .orig and .rej files 1800 (request by Larry Virden). 1801 > patches/discussion by Alexander Lukyanov: 1802 + move base-library sources into ncurses/base and tty (serial terminal) 1803 sources into ncurses/tty, as part of Alexander Lukyanov's proposed 1804 changes to ncurses library. 1805 + copy _tracemouse() into ncurses.c so that lib_tracemse.c need not 1806 be linked into the normal ncurses library. 1807 + move macro winch to a function, to hide details of struct ldat 1808 > patches by Juergen Pfeifer: 1809 + fix a potential compile problem in cursesw.cc 1810 + some Ada95 cosmetics 1811 + fix a gen.c problem when compiling on 64-Bit machines 1812 + fix Ada95/gen/Makefile.in "-L" linker switch 1813 + modify Ada95 makefiles to use the INSTALL_PREFIX setting. 1814 1815981107 1816 + ifdef'd out lib_freeall.c when not configured. 1817 + rename _tracebits() to _nc_tracebits(). 1818 + move terminfo-library sources into ncurses/tinfo, and trace-support 1819 functions into ncurses/trace as part of Alexander Lukyanov's proposed 1820 changes to ncurses library. 1821 + modify generated term.h to always specify its own definitions for 1822 HAVE_TERMIOS_H, etc., to guard against inclusion by programs with 1823 broken configure scripts. 1824 1825981031 1826 + modify terminfo parsing to accept octal and hexadecimal constants, 1827 like Solaris. 1828 + remove an autoconf 2.10 artifact from the configure script's check 1829 for "-g" compiler options. (Though harmless, this confused someone 1830 at Debian, who recently issued a patch that results in the opposite 1831 effect). 1832 + add configure option --with-ada-compiler to accommodate installations 1833 that do not use gcc as the driver for GNAT (patch by Juergen 1834 Pfeifer). 1835 1836981017 1837 + ensure ./man exists in configure script, needed when configuring 1838 with --srcdir option. 1839 + modify infocmp "-r" option to remove limit on formatted termcap 1840 output, which makes it more like Solaris' version. 1841 + modify captoinfo to treat no-argument case more like Solaris' version, 1842 which uses the contents of $TERMCAP as the entry to format. 1843 + modify mk-2nd.awk to handle subdirectories, e.g., ncurses/tty 1844 (patch by Alexander V Lukyanov). 1845 1846981010 1847 + modify --with-terminfo-dirs option so that the default value is the 1848 ${datadir} value, unless $TERMINFO_DIRS is already set. This gets 1849 rid of a hardcoded list of candidate directories in the configure 1850 script. 1851 + add some error-checking to _nc_read_file_entry() to ensure that 1852 strings are properly terminated (Todd C Miller). 1853 + rename manpage file curs_scr_dmp.3x to curs_scr_dump.3x, to 1854 correspond with contents (reported by Neil Zanella 1855 <nzanella@cs.mun.ca>). 1856 + remove redundant configure check for C++ which did not work when $CXX 1857 was specified with a full pathname (reported by Andreas Jaeger). 1858 + corrected bcopy/memmove check; the macro was not standalone. 1859 1860981003 1861 + remove unnecessary portion of OS/2 EMX mouse change from 1862 check_pending() (reported by Alexander V Lukyanov). 1863 1864980926 1865 + implement mouse support for OS/2 EMX (adapted from patch against 1866 4.2(?) by Ilya Zakharevich). 1867 + add configure-check for bcopy/memmove, for 980919 changes to hashmap. 1868 + merge Data General terminfo from Hasufin <hasufin@vidnet.net> - TD 1869 + merge AIX 3.2.5 terminfo descriptions for IBM terminals, replaces 1870 some older entries - TD 1871 + modify tic to compile into %'char' form in preference to %{number}, 1872 since that is a little more efficient. 1873 + minor correction to infocmp to avoid displaying "difference" between 1874 two capabilities that are rendered in equivalent forms. 1875 + add -g option to tic/infocmp to force character constants to be 1876 displayed in quoted form. Otherwise their decimal values are shown. 1877 + modify setupterm so that cancelled strings are treated the same as 1878 absent strings, cancelled and absent booleans false (does not affect 1879 tic, infocmp). 1880 + modify tic, infocmp to discard redundant i3, r3 strings when output 1881 to termcap format. 1882 > patch by Alexander V Lukyanov: 1883 + improve performance of tparm, now it takes 19% instead of 25% when 1884 profiling worm. 1885 + rename maxlen/minlen to prec/width for better readability. 1886 + use format string for printing strings. 1887 + use len argument correctly in save_text, and pass it to save_number. 1888 1889980919 1890 + make test_progs compile (but hashmap does not function). 1891 + correct NC_BUFFERED macro, used in lib_mvcur test-driver, modify 1892 associated logic to avoid freeing the SP->_setbuf data. 1893 + add modules home_terminfo and getenv_num to libtinfo. 1894 + move write_entry to libtinfo, to work with termcap caching. 1895 + minor fixes to blue.c to build with atac. 1896 + remove softscroll.c module; no longer needed for testing. 1897 > patches by Todd C Miller: 1898 + use strtol(3) instead of atoi(3) when parsing env variables so we can 1899 detect a bogus (non-numeric) value. 1900 + check for terminal names > MAX_NAME_SIZE in a few more places when 1901 dealing with env variables again. 1902 + fix a MAX_NAME_SIZE that should be MAX_NAME_SIZE+1 1903 + use sizeof instead of strlen(3) on PRIVATE_INFO since it is a fixed 1904 string #define (compile time vs runtime). 1905 + when setting errno to ENOMEM, set it right before the return, not 1906 before code that could, possibly, set errno to a different value. 1907 > patches by Alexander V Lukyanov: 1908 + use default background in update_cost_from_blank() 1909 + disable scroll-hints when hashmap is configured. 1910 + improve integration of hashmap scrolling code, by adding oldhash and 1911 newhash data to SP struct. 1912 + invoke del_curterm from delscreen. 1913 + modify del_curterm to set cur_term to null if it matches the function's 1914 parameter which is deleted. 1915 + modify lib_doupdate to prefer parm_ich to the enter_insert_mode and 1916 exit_insert_mode combination, adjusting InsCharCost to check 1917 enter_insert_mode, exit_insert_mode and insert_padding. Add 1918 insert_padding in insert mode after each char. This adds new costs 1919 to the SP struct. 1920 1921980912 1922 + modify test-driver in lib_mvcur.s to use _nc_setbuffer, for consistent 1923 treatment. 1924 + modify ncurses to restore output to unbuffered on endwin, and resume 1925 buffering in refresh (see lib_set_term.c and NC_BUFFERED macro). 1926 + corrected HTML version numbers (according to the W3C validator, they 1927 never were HTML 2.0-compliant, but are acceptable 3.0). 1928 1929980905 1930 + modify MKterminfo.sh to generate terminfo.5 with tables sorted by 1931 capability name, as in SVr4. 1932 + modified term.h, termcap.h headers to avoid redundant declarations. 1933 + change 'u_int' type in tset.c to unsigned, making this compile on 1934 Sequent PRX 4.1 (reported by Michael Sterrett <msterret@coat.com>). 1935 1936980829 1937 + corrections to mailing addresses, and moving the magic line that 1938 causes the man program to invoke tbl to the first line of each 1939 manpage (patch by Rick Ohnemus <rick@ecompcon.com>). 1940 + add Makefile.os2 and supporting scripts to generate dll's on OS/2 EMX 1941 (from J.J.G.Ripoll, with further integration by TD). 1942 + correct a typo in icl6404 terminfo entry. 1943 + add xtermm and xtermc terminfo entries. 1944 > from esr's terminfo version: 1945 + Added Francesco Potorti's tuned Wyse 99 entries. 1946 + dtterm enacs correction from Alexander V Lukyanov. 1947 + Add ncsa-ns, ncsa-m-ns and ncsa-m entries from esr version. 1948 1949980822 1950 + document AT&T acs characters in terminfo.5 manpage. 1951 + use EMX _scrsize() function if terminfo and environment do not 1952 declare the screen size (reported by Ilya Zakharevich 1953 <ilya@math.ohio-state.edu>). 1954 + remove spurious '\' characters from eterm and osborne terminfo 1955 entries (prompted by an old Debian bug report). 1956 + correct reversed malloc/realloc calls in _nc_doalloc (reported by 1957 Hans-Joachim Widmaier <hjwidmai@foxboro.com>). 1958 + correct misplaced parenthesis which caused file-descriptor from 1959 opening termcap to be lost, from 980725 changes (reported by Andreas 1960 Jaeger). 1961 1962980815 1963 + modify lib_setup.c to eliminate unneeded include of <sys/ioctl.h> when 1964 termios is not used (patch by Todd C Miller). 1965 + add function _nc_doalloc, to ensure that failed realloc calls do not 1966 leak memory (reported by Todd C Miller). 1967 + improved ncsa-telnet terminfo entry. 1968 1969980809 1970 + correct missing braces around a trace statement in read_entry.c, 1971 from 980808 (reported by Kim DeVaughn <kimdv@best.com> and Liviu 1972 Daia). 1973 1974980808 1975 + fix missing include <errno.h> in ditto.c (reported by Bernhard 1976 Rosenkraenzer <bero@k5.sucks.eu.org>) 1977 + add NCSA telnet terminfo entries from Francesco Potorti 1978 <F.Potorti@cnuce.cnr.it>, from Debian bug reports. 1979 + make handling of $LINES and $COLUMNS variables more compatible with 1980 Solaris by allowing them to individually override the window size 1981 as obtained via ioctl. 1982 1983980801 1984 + modify lib_vidattr.c to allow for terminal types (e.g., xterm-color) 1985 which may reset all attributes in the 'op' capability, so that colors 1986 are set before turning on bold and other attributes, but still after 1987 turning attributes off. 1988 + add 'ditto.c' to test directory to illustrate use of newterm for 1989 initializing multiple screens. 1990 + modify _nc_write_entry() to recover from failed attempt to link alias 1991 for a terminfo on a filesystem which does not preserve character case 1992 (reported by Peter L Jordan <PJordan@chla.usc.edu>). 1993 1994980725 1995 + updated versions of config.guess and config.sub based on automake 1.3 1996 + change name-comparisons in lib_termcap to compare no more than 2 1997 characters (gleaned from Debian distribution of 1.9.9g-8.8, verified 1998 with Solaris curses). 1999 + fix typo in curs_insstr.3x (patch by Todd C Miller) 2000 + use 'access()' to check if ncurses library should be permitted to 2001 open or modify files with fopen/open/link/unlink/remove calls, in 2002 case the calling application is running in setuid mode (request by 2003 Cristian Gafton <gafton@redhat.com>, responding to Duncan Simpson 2004 <dps@io.stargate.co.uk>). 2005 + arm100 terminfo entries from Dave Millen <dmill@globalnet.co.uk>). 2006 + qnxt2 and minitel terminfo entries from esr's version. 2007 2008980718 2009 + use -R option with ldconfig on FreeBSD because otherwise it resets 2010 the search path to /usr/lib (reported by Dan Nelson). 2011 + add -soname option when building shared libraries on OpenBSD 2.x 2012 (request by QingLong). 2013 + add configure options --with-manpage-format and --with-manpage-renames 2014 (request by QingLong). 2015 + correct conversion of CANCELLED_NUMERIC in write_object(), which was 2016 omitting the high-order byte, producing a 254 in the compiled 2017 terminfo. 2018 + modify return-values of tgetflag, tgetnum, tgetstr, tigetflag, 2019 tigetnum and tigetstr to be compatible with Solaris (gleaned from 2020 Debian distribution of 1.9.9g-8.8). 2021 + modify _nc_syserr_abort to abort only when compiled for debugging, 2022 otherwise simply exit with an error. 2023 2024980711 2025 + modify Ada95 'gen' program to use appropriate library suffix (e.g., 2026 "_g" for a debug build). 2027 + update Ada95 'make clean' rule to include generics .ali files 2028 + add a configure test to ensure that if GNAT is found, that it can 2029 compile/link working Ada95 program. 2030 + flush output in beep and flash functions, fixing a problem with 2031 getstr (patch by Alexander V Lukyanov) 2032 + fix egcs 1.0.2 warning for etip.h (patch by Chris Johns). 2033 + correct ifdef/brace nesting in lib_sprintf.c (patch by Bernhard 2034 Rosenkraenzer <bero@Pool.Informatik.RWTH-Aachen.DE>). 2035 + correct typo in wattr_get macro from 980509 fixes (patch by Dan 2036 Nelson). 2037 2038980704 2039 + merge changes from current XFree86 xterm terminfo descriptions. 2040 + add configure option '--without-ada'. 2041 + add a smart-default for termcap 'ac' to terminfo 'acs_chars' which 2042 corresponds to vt100. 2043 + change translation for termcap 'rs' to terminfo 'rs2', which is 2044 the documented equivalent, rather than 'rs1'. 2045 2046980627 2047 + slow 'worm' down a little, for very fast machines. 2048 + corrected firstchar/lastchar computation in lib_hline.c 2049 + simplify some expressions with CHANGED_CELL, CHANGED_RANGE and 2050 CHANGED_TO_EOL macros. 2051 + modify init_pair so that if a color-pair is reinitialized, we will 2052 repaint the areas of the screen whose color changes, like SVr4 curses 2053 (reported by Christian Maurer <maurer@inf.fu-berlin.de>). 2054 + modify getsyx/setsyx macros to comply with SVr4 man-page which 2055 says that leaveok() affects their behavior (report by Darryl Miles, 2056 patch by Alexander V Lukyanov). 2057 2058980620 2059 + review terminfo.5 against Solaris 2.6 curses version, corrected 2060 several minor errors/omissions. 2061 + implement tparm %l format. 2062 + implement tparm printf-style width and precision for %s, %d, %x, %o 2063 as per XSI. 2064 + implement tparm dynamic variables (reported by Xiaodan Tang). 2065 2066980613 2067 + update man-page for for wattr_set, wattr_get (cf: 980509) 2068 + correct limits in hashtest, which would cause nonprinting characters 2069 to be written to large screens. 2070 + correct configure script, when --without-cxx was specified: the 2071 wrong variable was used for cf_cv_type_of_bool. Compilers up to gcc 2072 2.8 tolerated the missing 'int'. 2073 + remove the hardcoded name "gcc" for the GNU Ada compiler. The 2074 compiler's name might be something like "egcs" (patch by Juergen 2075 Pfeifer). 2076 + correct curs_addch.3x, which implied that echochar could directly 2077 display control characters (patch by Alexander V Lukyanov). 2078 + fix typos in ncurses-intro.html (patch by Sidik Isani 2079 <isani@cfht.hawaii.edu>) 2080 2081980606 2082 + add configure test for conflicting use of exception in math.h and 2083 other headers. 2084 + minor optimization to 'hash()' function in hashmap.c, reduces its 2085 time by 10%. 2086 + correct form of LD_SHARED_OPTS for HP-UX 10.x (patch by Tim Mooney). 2087 + fix missing quotes for 'print' in MKunctrl.awk script (reported by 2088 Mihai Budiu <mihaib@gs41.sp.cs.cmu.edu>). 2089 > patch by Alexander V Lukyanov: 2090 + correct problem on Solaris (with poll() function) where getch could 2091 hang indefinitely even if timeout(x) was called. This turned out to 2092 be because milliseconds was not updated before 'goto retry' in 2093 _nc_timed_wait. 2094 + simplified the function _nc_timed_wait and fixed another bug, which 2095 was the assumption of !GOOD_SELECT && HAVE_GETTIMEOFDAY in *timeleft 2096 assignment. 2097 + removed the cycle on EINTR, as it seems to be useless. 2098 2099980530 2100 + add makefile-rule for test/keynames 2101 + modify run_tic.sh and shlib to ensure that user's .profile does not 2102 override the $PATH used to run tic (patch by Tim Mooney). 2103 + restore LD_SHARED_OPTS to $(LD_SHARED_FLAGS) when linking programs, 2104 needed for HP-UX shared-library path (recommended by Tim Mooney). 2105 + remove special case of HP-UX -L options, use +b options to embed 2106 $(libdir) in the shared libraries (recommended by Tim Mooney). 2107 + add checks for some possible buffer overflows and unchecked 2108 malloc/realloc/calloc/strdup return values (patch by Todd C Miller 2109 <Todd.Miller@courtesan.com>) 2110 2111980523 2112 + correct maxx/maxy expression for num_columns/num_lines in derwin 2113 (patch by Alexander V Lukyanov). 2114 + add /usr/share/lib/terminfo and /usr/lib/terminfo as compatibilty 2115 fallbacks to _nc_read_entry(), along with --with-terminfo-dirs 2116 configure option (suggested by Mike Hopkirk). 2117 + modify config.guess to recognize Unixware 2.1 and 7 (patch by Mike 2118 Hopkirk <hops@sco.com>). 2119 + suppress definition of CC_SHARED_OPTS in LDFLAGS_SHARED in c++ 2120 Makefile.in, since this conflicts when g++ is used with HP-UX 2121 compiler (reported by Tim Mooney). 2122 + parenthesize 'strcpy' calls in c++ binding to workaround redefinition 2123 in some C++ implementations (reported by several people running 2124 egcs with glibc 2.0.93, analysis by Andreas Jaeger. 2125 2126980516 2127 + modify write_entry.c so that it will not attempt to link aliases 2128 with embedded '/', but give only a warning. 2129 + put -L$(libdir) first when linking programs, except for HP-UX. 2130 + modify comp_scan.c to handle SVr4 terminfo description for att477, 2131 which contains a colon in the description field. 2132 + modify configure script to support SCO osr5.0.5 shared libraries 2133 (from comp.unix.sco.programmer newsgroup item by Mike Hopkirk 2134 <hops@sco.com>). 2135 + eliminate extra GoTo call in lib_doupdate.c (patch by Alexander V. 2136 Lukyanov). 2137 + minor adjustments of const/NCURSES_CONST from IRIX compile. 2138 + add updates based on esr's 980509 version of terminfo.src. 2139 2140980509 2141 + correct macros for wattr_set, wattr_get, separate wattrset macro from 2142 these to preserve behavior that allows attributes to be combined with 2143 color pair numbers. 2144 + add configure option --enable-no-padding, to allow environment 2145 variable $NCURSES_NO_PADDING to eliminate non-mandatory padding, 2146 thereby making terminal emulators (e.g., for vt100) a little more 2147 efficient (request by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>). 2148 + modify configure script to embed ABI in shared libraries for HP-UX 2149 10.x (detailed request by Tim Mooney). 2150 + add test/example of the 'filter()' function. 2151 + add nxterm and xterm-color terminfo description (request by Cristian 2152 Gafton <gafton@redhat.com>). 2153 + modify rxvt terminfo description to clear alternate screen before 2154 switching back to normal screen, for compatibility with applications 2155 which use xterm (reported by Manoj Kasichainula <manojk@io.com>). 2156 + modify linux terminfo description to reset color palette (reported 2157 by Telford Tendys <telford@eng.uts.edu.au>). 2158 + correction to doupdate, for case where terminal does not support 2159 insert/delete character. The logic did not check that there was a 2160 difference in alignment of changes to old/new screens before 2161 repainting the whole non-blank portion of the line. Modified to fall 2162 through into logic that reduces by the portion which does not differ 2163 (reported by Daniel Eisenbud <eisenbud@cs.swarthmore.edu>). 2164 + minor performance improvement to wnoutrefresh by moving some 2165 comparisons out of inner loop. 2166 2167980425 2168 + modify configure script to substitute NCURSES_CONST in curses.h 2169 + updated terminfo entries for xterm-xf86-v40, xterm-16color, 2170 xterm-8bit to correspond to XFree86 3.9Ag. 2171 + remove restriction that forces ncurses to use setaf/setab if the 2172 number of colors is greater than 8. (see 970524 for xterm-16color). 2173 + change order of -L options (so that $(libdir) is searched first) when 2174 linking tic and other programs, to workaround HP's linker. 2175 Otherwise, the -L../lib is embedded when linking against shared 2176 libraries and the installed program does not run (reported by Ralf 2177 Hildebrandt). 2178 + modify configuration of shared libraries on Digital Unix so that 2179 versioning is embedded in the library, rather than implied by 2180 links (patch by Tim Mooney). 2181 2182980418 2183 + modify etip.h to avoid conflict with math.h on HP-UX 9.03 with gcc 2184 2.8.1 which redefines 'exception' (reported by Ralf Hildebrandt 2185 <R.Hildebrandt@tu-bs.de>). 2186 + correct configure tests in CF_SHARED_OPTS which used $CC value to 2187 check for gcc, rather than autoconf's $GCC value. This did not 2188 work properly if the full pathname of the compiler were given 2189 (reported by Michael Yount <yount@csf.Colorado.edu>). 2190 + revise check for compiler options to force ANSI mode since repeating 2191 an option such as -Aa causes HP's compiler to fail on its own headers 2192 (reported by Clint Olsen <olsenc@ichips.intel.com>). 2193 2194980411 2195 + ifdef'd has_key() and mcprint() as extended functions. 2196 + modified several prototypes to correspond with 1997 version of 2197 X/Open Curses (affects ABI since developers have used attr_get). 2198 + remove spurious trailing blanks in glibc addon-scripts (patch by 2199 H.J.Lu). 2200 + insert a few braces at locations where gcc-2.8.x asks to use them to 2201 avoid ambigous else's, use -fpic rather than -fPIC for Linux (patch 2202 by Juergen Pfeifer). 2203 2204980404 2205 + split SHLIB_LIST into SHLIB_DIRS/SHLIB_LIST to keep -L options 2206 before -l to accommodate Solaris' linker (reported by Larry Virden). 2207 2208980328 2209 + modify lib_color.c to eliminate dependency on orig_colors and 2210 orig_pair, since SVr4 curses does not require these either, but 2211 uses them when they are available. 2212 + add detailed usage-message to infocmp. 2213 + correct a typo in att6386 entry (a "%?" which was "?"). 2214 + add -f option to infocmp and tic, which formats the terminfo 2215 if/then/else/endif so that they are readable (with newlines and 2216 tabs). 2217 + fixes for glibc addon scripts (patch by H.J.Lu). 2218 2219980321 2220 + revise configure macro CF_SPEED_TYPE so that termcap.h has speed_t 2221 declared (from Adam J. Richter <adam@yggdrasil.com>) 2222 + remove spurious curs_set() call from leaveok() (J.T.Conklin). 2223 + corrected handling leaveok() in doupdate() (patch by Alexander V. 2224 Lukyanov). 2225 + improved version of wredrawln (patch by Alexander V. Lukyanov). 2226 + correct c++/Makefile.in so install target do not have embedded ../lib 2227 to confuse it (patch by Thomas Graf <graf@essi.fr>). 2228 + add warning to preinstall rule which checks if the installer would 2229 overwrite a curses.h or termcap.h that is not derived from ncurses. 2230 (The recommended configuration for developers who need both is to 2231 use --disable-overwrite). 2232 + modify preinstall rule in top-level Makefile to avoid implicit 2233 use of 'sh', to accommodate Ultrix 4.4 (reported by Joao Palhoto 2234 Matos <jmatos@math.ist.utl.pt>, patch by Thomas Esser 2235 <te@informatik.uni-hannover.de>) 2236 + refine ifdef's for TRACE so that libncurses has fewer dependencies 2237 on libtinfo when TRACE is disabled. 2238 + modify configure script so that if the --with-termlib option is used 2239 to generate a separate terminfo library, we chain it to the ncurses 2240 library with a "-l" option (reported by Darryl Miles and Ian T. 2241 Zimmerman). 2242 2243980314 2244 + correct limits and window in wredrawln function (reported/analysis by 2245 Alexander V. Lukyanov). 2246 + correct sed expression in configure script for --with-fallback 2247 option (patch by Jesse Thilo). 2248 + correct some places in configure script where $enableval was used 2249 rather than $withval (patch by Darryl Miles <dlm@g7led.demon.co.uk>). 2250 + modify some man-pages so no '.' or '..' falls between TH and SH 2251 macros, to accommodate man_db program (reported by Ian T. Zimmerman 2252 <itz@rahul.net>). 2253 + terminfo.src 10.2.1 from Eric's webpage. 2254 > several changes by Juergen Pfeifer: 2255 + add copyright notices (and rcs id's) on remaining man-pages. 2256 + corrected prototypes for slk_* functions, using chtype rather than 2257 attr_t. 2258 + implemented the wcolor_set() and slk_color() functions 2259 + the slk_attr_{set,off,on} functions need an additional void* 2260 parameter according to XSI. 2261 + fix the C++ and Ada95 binding as well as the man pages to 2262 reflect above enhancements. 2263 2264980307 2265 + use 'stat()' rather than 'access()' in toe.c to check for the 2266 existence of $HOME/.terminfo, since it may be a file. 2267 + suppress configure CF_CXX_LIBRARY check if we are not using g++ 2268 2.7.x, since this is not needed with g++ 2.8 or egcs (patch by 2269 Juergen Pfeifer). 2270 + turn on hashmap scrolling code by default, intend to remedy defects 2271 by 4.3 release. 2272 + minor corrections to terminfo.src changelog. 2273 2274980302 4.2 release for upload to prep.ai.mit.edu 2275 + correct Florian's email address in ncurses-intro.html 2276 + terminfo.src 10.2.0 from Eric. 2277 2278980228 pre-release 2279 + add linux-koi8r replace linux-koi8, which is not KOI8 (patch by 2280 QingLong <qinglong@Bolizm.ihep.su>). 2281 + minor documentation fixes (patch by Juergen Pfeifer). 2282 + add setlocale() call to ncurses.c (reported by Claes G. Lindblad 2283 <claesg@algonet.se>). 2284 + correct sign-extension in lib_insstr.c (reported by Sotiris 2285 Vassilopoulos <svas@leon.nrcps.ariadne-t.gr>) 2286 2287980221 pre-release 2288 + regenerated some documentation overlooked in 980214 patch 2289 (ncurses-intro.doc, curs_outopts.3x.html) 2290 + minor ifdef change to C++ binding to work with gcc 2.8.0 (patch by 2291 Juergen Pfeifer). 2292 + change maintainer's mailing address to florian@gnu.org, change 2293 tentative mailing list address to bug-ncurses-request@gnu.org (patch 2294 by Florian La Roche). 2295 + add definition of $(REL_VERSION) to c++/Makefile.in (reported by Gran 2296 Hasse <gh@raditex.se>). 2297 + restore version numbers to Ada95 binding, accidentally deleted by 2298 copyright patch (patch by Juergen Pfeifer). 2299 2300980214 pre-release 2301 + remove ncurses.lsm from MANIFEST so that it won't be used in FSF 2302 distributions, though it is retained in development. 2303 + correct scaling of milliseconds to nanoseconds in lib_napms.c (patch 2304 by Jeremy Buhler). 2305 + update mailing-list information (bug-ncurses@gnu.org). 2306 + update announcement for upcoming 4.2 release. 2307 + modify -lm test to check for 'sin()' rather than 'floor()' 2308 + remove spurious commas from terminfo.src descriptions. 2309 + change copyright notices to Free Software Foundation 2310 2311980207 2312 + minor fixes for autoconf macros CF_ERRNO, CF_HELP_MESSAGE and 2313 CF_SIZECHANGE 2314 + modify Makefile.glibc so that $(objpfx) is defined (H.J.Lu). 2315 + ifdef-out true-return from _nc_mouse_inline() which depends on 2316 merge of QNX patch (pending 4.2 release). 2317 > patch by J.T.Conklin, to split off seldom-used modules in ncurses 2318 (reduces size by up to 2.6kb): 2319 + move functionality of _nc_usleep into napms, add configuration case 2320 for nanosleep(). 2321 + moved wchgat() from lib_addch.c to lib_chgat.c 2322 + moved clearok(), immedok(), leaveok(), and scrollok() from 2323 lib_options.c to lib_clearok.c, lib_immedok.c, lib_leaveok.c and 2324 lib_scrollok.c. 2325 + moved napms() from lib_kernel.c to lib_napms.c 2326 + moved echo() and noecho() from lib_raw.c to lib_echo.c 2327 + moved nl() and nonl() from lib_raw.c to lib_nl.c 2328 2329980131 2330 + corrected conversion in tclock.c (cf: 971018). 2331 + updates to Makefile.glibc and associated Linux configure script 2332 (patch by H.J.Lu). 2333 + workaround a quoting problem on SunOS with tar-copy.sh 2334 + correct init_pair() calls in worm.c to work when use_default_colors() 2335 is not available. 2336 + include <sys/types.h> in CF_SYS_TIME_SELECT to work with FreeBSD 2.1.5 2337 + add ncv capability to FreeBSD console (cons25w), making reverse 2338 work with color. 2339 + correct sense of configure-test for sys/time.h inclusion with 2340 sys/select.h 2341 + fixes for Ada95/ada_include/Makefile.in to work with --srcdir option. 2342 + remove unused/obsolete test-program rules from progs/Makefile.in 2343 (the rules in ncurses/Makefile.in work). 2344 + remove shared-library loader flags from test/Makefile.in, etc. 2345 + simplify test/configure.in using new version of autoconf to create 2346 test/ncurses_cfg.h 2347 + suppress suffix rules in test/Makefile.in, provide explicit dependency 2348 to work with --srcdir option and less capable 'make' programs. 2349 > adapted from patch for QNX by Xiaodan Tang: 2350 + initialize %P and %g variables set/used in tparm, and also ensure 2351 that empty strings don't return a null result from tparam_internal 2352 + add QNX-specific prototype for vsscanf() 2353 + move initialization of SP->_keytry from init_keytry() to newterm() to 2354 avoid resetting it via a keyok() call by mouse_activate(). 2355 + reorganized some functions in lib_mouse() to use case-statements. 2356 + remove sgr string from qnx terminfo entry since it is reported to 2357 turn off attributes inconsistently. 2358 2359980124 2360 + add f/F/b/B commands to ncurses 'b' test to toggle colors, providing 2361 test for no_color_video. 2362 + adjusted emx.src to use no_color_video, now works with ncurses 'b' 2363 and 'k' tests. 2364 + implement no_color_video attribute, and as a special case, reverse 2365 colors when the reverse attribute cannot be combined with color. 2366 + check for empty string in $TERM variable (reported by Brett Michaels 2367 <brett@xylan.com>). 2368 > from reports by Fred Fish: 2369 + add configure-test for isascii 2370 + add configure-test for -lm library. 2371 + modify CF_BOOL_SIZE to check if C++ bool types are unsigned. 2372 > patches by J.J.G.Ripoll 2373 + add configure/makefile variables to support .exe extension on 2374 OS/2 EMX (requires additional autoconf patches). 2375 + explicitly initialize variables in lib_data.c to appease OS/2 linker 2376 > patches by Fred Fish <fnf@ninemoons.com> 2377 + misc/Makefile.in (install.data): Avoid trying to install the CVS 2378 directory. 2379 + aclocal.m4 (install.includes): Remove files in the include directory 2380 where we are going to install new ones, not the original source 2381 files. 2382 + misc/terminfo.src: Add entry for "beterm", derived from termcap 2383 distributed with BeOS PR2 using captoinfo. 2384 + aclocal.m4: Wrap $cf_cv_type_of_bool with quotes (contains space) 2385 + aclocal.m4: Assume bool types are unsigned. 2386 + progs/infocmp.c: workaround mwcc 32k function data limit 2387 2388980117 2389 + correct initialization of color-pair (from 970524) in xmas.c, which 2390 was using only one color-pair for all colors (reported by 2391 J.J.G.Ripoll). 2392 + add multithread options for objects build on EMX, for compatibility 2393 with XFree86. 2394 + split up an expression in MKlib_gen.sh to work around a problem on 2395 OS/2 EMX, with 'ash' (patch by J.J.G.Ripoll). 2396 + change terminfo entries xterm (xterm-xf86-v40), xterm-8bit rs1 to use 2397 hard reset. 2398 + rename terminfo entry xterm-xf86-v39t to xterm-xf86-v40 2399 + remove bold/underline from sun console entries since they're not 2400 implemented. 2401 + correct _tracef calls in _tracedump(), which did not separate format 2402 from parameters. 2403 + correct getopt string for tic "-o" option, and add it to man-page 2404 synopsis (reported by Darren Hiebert <darren@hmi.com>). 2405 + correct typo in panel/Makefile.in, reversed if-statement in scrolling 2406 optimization (Alexander V. Lukyanov). 2407 + test for 'remove()', use 'unlink() if not found (patch by Philippe De 2408 Muyter <phdm@macqel.be>). 2409 > patches by Juergen Pfeifer: 2410 + Improve a feature of the forms driver. For invisible fields 2411 (O_VISIBLE off) only the contents but not the attributes are cleared. 2412 We now clear both. (Reported by Javier Kohan 2413 <jkohan@adan.fceia.unr.edu.ar>) 2414 + The man page form_field_opts.3x makes now clear, that invisible 2415 fields are also always inactive. 2416 + adjust ifdef's to compile the C++ binding with the just released 2417 gcc-2.8.0 c++ and the corresponding new C++ libraries. 2418 2419980110 2420 + correct "?" command in ncurses.c; it was performing non-screen writes 2421 while the program was in screen mode. (It "worked" in 1.9.9e because 2422 that version sets OPOST and OCRNL incorrectly). 2423 + return error from functions in lib_kernel, lib_raw and lib_ti if 2424 cur_term is null, or if underlying I/O fails. 2425 + amend change to tputs() so that it does not return an error if 2426 cur_term is null, since some applications depend on being able to use 2427 tputs without initializing the terminal (reported by Christian J. 2428 Robinson <infynity@cyberhighway.net>). 2429 2430980103 2431 + add a copy of emx.src from J.J.G.Ripoll's OS/2 EMX version of ncurses 2432 1.9.9e, together with fixes/additions for the "ansi" terminal type. 2433 + add tic check for save/restore cursor if change_scroll_region is 2434 defined (from O'Reilly book). 2435 + modify read_termcap.c to handle EMX-style pathnames (reported by 2436 J.J.G.Ripoll). 2437 + modify lib_raw.c to use EMX's setmode (from J.J.G.Ripoll, who says 2438 EMX's curses does this). 2439 + modify _nc_tic_expand() to generate \0 rather than \200. 2440 + move/revise 'expand()' from dump_entry.c to ncurses library as 2441 _nc_tic_expand(), for use by tack. 2442 + decode \a as \007 for terminfo, as per XSI. 2443 + correct translation of terminfo "^@", to \200, like \0. 2444 + modify next_char() to treat <cr><lf> the same as <newline>, for 2445 cross-platform compatibility. 2446 + use new version of autoconf (971230) to work around limited 2447 environment on CLIX, due to the way autoconf builds --help message. 2448 > patch by Juergen Pfeifer: 2449 + check that the Ada95 binding runs against the correct version of 2450 ncurses. 2451 + insert constants about the library version into the main spec-file of 2452 the Ada95 binding. 2453 2454971227 2455 + modify open/fopen calls to use binary mode, needed for EMX. 2456 + modify configure script to work with autoconf 2.10 mods for OS/2 2457 EMX from J.J.G.Ripoll. 2458 + generated ncurses_cfg.h with patch (971222) to autoconf 2.12 which 2459 bypasses limited sed buffer length. 2460 > several changes from Juan Jose Garcia Ripoll <worm@arrakis.es> 2461 (J.J.G.Ripoll) to support OS/2 EMX: 2462 + add a _scrolling flag to SP, to set when we encounter a terminal 2463 that simply cannot scroll. 2464 + corrected logic in _nc_add_to_try(), by ensuring that strings with 2465 embedded \200 characters are matched. 2466 + don't assume the host has 'link()' function, for linking terminfo 2467 entries. 2468 2469971220 2470 + if there's no ioctl's to support sigwinch handler, disable it. 2471 + add configure option --disable-ext-funcs to remove the extended 2472 functions from the build. 2473 + add configure option --with-termlib to generate the terminfo 2474 functions as a separate library. 2475 + add 'sources' rule to facilitate cross-compiling. 2476 + review/fix order of mostlyclean/clean/distclean rules. 2477 + modify install-rule for headers to first remove old header, in 2478 case there was a symbolic link that confuses the install script. 2479 + corrected substitution for NCURSES_CONST in term.h (cf: 971108) 2480 + add null pointer checks in wnoutrefresh(), overlap() (patch by 2481 Xiaodan Tang <xtang@qnx.com>) 2482 + correct tputs(), which could dereference a null cur_term if invoked 2483 before terminal is initialized (patch by Christopher Seawood 2484 <cls@seawood.org>) 2485 > patch by Juergen Pfeifer: 2486 + makes better use of "pragma Inline" in the Ada95 binding 2487 + resynchronizes the generated html manpages 2488 2489971213 2490 + additional fixes for man-pages section-references 2491 + add (for debugging) a check for ich/ich1 conflict with smir/rmir 2492 to tic, etc. 2493 + remove hpa/vpa from rxvt terminal description because they are not 2494 implemented correctly, added sgr0. 2495 + change ncurses 's' to use raw mode, so ^Q works (reported by Rudolf 2496 Leitgeb <leitgeb@leland.stanford.edu>) 2497 2498971206 2499 + modify protection when installing libraries to (normally) not 2500 executable. HP-UX shared libraries are an exception. 2501 + add configure check for 'tack'. 2502 + implement script for renaming section-references in man-page install, 2503 for Debian configuration. 2504 + add validity-check for SP in trace code in baudrate() (reported by 2505 Daniel Weaver). 2506 > patch by Alexander V. Lukyanov (fixes to match sol25 curses) 2507 + modify 'overlay()' so that copy applies target window background to 2508 characters. 2509 + correct 'mvwin()' so that it does not clear the previous locations. 2510 + correct lib_acs.c so that 8-bit character is not sign expanded in 2511 case of wide characters in chtype. 2512 + correct control-char test in lib_addch.c for use with wide chars 2513 + use attribute in the chtype when adding a control character in 2514 lib_addch.c control char was added with current attribute 2515 2516971129 2517 + save/restore errno in _tracef() function 2518 + change treatment of initialize_color to use a range of 0..1000 2519 (recommended by Daniel Weaver). 2520 + set umask in mkinstalldirs, fixing problems reported by users who 2521 have set root's umask to 077. 2522 + correct bug in tic that caused capabilities to be reprinted at the 2523 end of output when they had embedded comments. 2524 + rewrote wredrawln to correspond to XSI, and split-out since it is 2525 not often used (from report by Alexander V. Lukyanov, 970825) 2526 + rewrote Dan Nelson's change to make it portable, as well as to 2527 correct logic for handling backslashes. 2528 + add code to _nc_tgetent() to make it work more like a real tgetent(). 2529 It removes all empty fields, and removes all but the first in a group 2530 of duplicate caps. The code was pulled from the BSD libtermcap code 2531 in termcap.c (patch by Dan Nelson <dnelson@emsphone.com> 2532 + don't include --enable-widec in the --with-develop configure option, 2533 since it is not binary-compatible with 4.1 (noted by Alexander V. 2534 Lukyanov) 2535 > patch by Juergen Pfeifer: 2536 + further improvements of the usage of elaboration pragmas in the Ada95 2537 binding 2538 + enhanced Ada95 sample to use the user_data mechanism for panels. 2539 + a fix for the configuration script to make gnat-3.10 the required 2540 version. 2541 + resync of the html version of the manpages 2542 2543971122 2544 > fixes/updates for terminfo.src: 2545 + add vt220-js, pilot, rbcomm, datapoint entries from esr's 27-jun-97 2546 version. 2547 + add hds200 description (Walter Skorski) 2548 + add EMX 0.9b descriptions 2549 + correct rmso/smso capabilities in wy30-mc and wy50-mc (Daniel Weaver) 2550 + rename xhpterm back to hpterm. 2551 > patch by Juergen Pfeifer: 2552 + Improves the usage of elaboration pragmas for the Ada95 binding. 2553 + Adds a translation of the test/rain.c into Ada95 to the samples. 2554 This has been contributed to the project by Laurent Pautet 2555 (pautet@gnat.com) 2556 2557971115 2558 + increase MAX_NAME_SIZE to 512 to handle extremely long alias list 2559 in HP-UX terminfo. 2560 + correction & simplification of delay computation in tputs, based on 2561 comments from Daniel Weaver. 2562 + replace test for SCO with more precise header tests. 2563 + add configure test for unsigned literals, use in NCURSES_BITS macro. 2564 + comment-out the -PIC, etc., flags from c++, progs and test makefiles 2565 since they probably are not needed, and are less efficient (noted by. 2566 Ju"rgen Fluk) 2567 + add -L$(libdir) to loader options, after -L../lib so that loaders 2568 that record this information will tend to do the right thing if 2569 the programs are moved around after installing them (suggested by. 2570 Ju"rgen Fluk). 2571 + add -R option to loader options for programs for Solaris if the 2572 --enable-rpath option is specified for the libraries. 2573 2574971112 2575 + correct installed filename for shared libraries on *BSD (reported by 2576 Ju"rgen Fluk). 2577 2578971108 2579 + cleanup logic for deciding when tputs() should call delay_output(), 2580 based on comments from Daniel Weaver. 2581 + modified tputs() to avoid use of float. 2582 + correct use of trailpad in tputs(), which used the wrong variable 2583 in call to delay_output(). 2584 + correct inverted expression for null-count in delay_output() 2585 (analysis by Daniel Weaver). 2586 + apply --enable-rpath option to Solaris (requested by Larry Virden). 2587 + correct substitution of EXTRA_CFLAGS for gcc 2.6.3 2588 + correct check for error-return by _nc_tgetent(), which returns 0 2589 for success. 2590 + add configure test for BSD 4.4 cgetent() function, modify 2591 read_termcap.c to use the host's version of that if found, using the 2592 terminal database on FreeBSD (reported by Peter Wemm). 2593 + add u8, u9 strings to sun-il description for Daniel Weaver. 2594 + use NCURSES_CONST in panel's user-pointer. 2595 + modify edit_cfg.sh and MKterm.h.awk.in to substitute NCURSES_CONST 2596 so that will work on NeXT. 2597 + use _nc_set_screen() rather than assignments to SP to fix port to 2598 NeXT (reported by Francisco A. Tomei Torres). 2599 2600971101 2601 + force mandatory padding in bell and flash_screen, as specified in XSI. 2602 + don't allow padding_baud_rate to override mandatory delays (reported 2603 by Daniel Weaver). 2604 + modify delay_output() to use _nc_timed_wait() if no baudrate has been 2605 defined, or if the cur_term pointer is not initialized. XSI treats 2606 this as unspecified. (requested by Daniel Weaver). 2607 + change getcap-cache ifdef's to eliminate unnecessary chdir/mkdir 2608 when that feature is not configured. 2609 + remove _nc_err_abort() calls when write_entry.c finds a directory but 2610 cannot write to it, e.g., when translating part/all of /etc/termcap 2611 (reported by Andreas Jaeger <aj@arthur.rhein-neckar.de>). 2612 (this dates back to 951102, in 1.9.7a). 2613 + minor ifdef fixes to compile with atac and glibc 2.0.5c 2614 + add check for -lgen when configuring regexpr.h 2615 + modify Solaris shared-library option "-d y" to "-dy" to workaround 2616 incompatibility of gcc 2.7.2 vs vendor's tools. 2617 2618971026 2619 + correct ifdef's for struct winsize vs struct ttysize in lib_setup.c 2620 to compile on SCO. 2621 + remove dangling backslash in panel/Makefile.in 2622 + modify MKkeyname.awk to work with SCO's nawk, which dumps core in the 2623 length() function. 2624 + correct length of allocation in _nc_add_to_try(), to allow for 2625 trailing null. 2626 + correct logic in _nc_remove_key(), which was discarding too many 2627 nodes (patch by Alexander V. Lukyanov) 2628 2629971025 2630 + add definition for $(REL_VERSION) to test/Makefile.in, so *BSD 2631 shared libraries link properly (see 970524). 2632 + modify Linux shared-library generation to include library 2633 dependencies (e.g., -lncurses and -lgpm) in the forms, menu and 2634 panel libraries (suggested by Juergen Pfeifer). 2635 + modify configure script to use config.guess and config.sub rather 2636 than uname, which is unreliable on some systems. 2637 + updated Makefile.glibc, test-built with glibc 2.0.5c 2638 + modify keyname() to return values consistent with SVr4 curses (patch 2639 by Ju"rgen Fluk). 2640 > changes requested by Daniel Weaver: 2641 + modify delay_output() so that it uses the same output function as 2642 tputs() if called from that function. 2643 + move _baudrate from SCREEN to TERMINAL so that low-level use of 2644 tputs works when SP is not set. 2645 > patch by Juergen Pfeifer: 2646 + factor lib_menu and lib_form into smaller modules 2647 + clean up the interface between panel and SCREEN 2648 + minor changes to the Ada95 mouse support implemenation 2649 + minor bugfix in C++ binding to ripoff windows 2650 + fix a few Ada95 html documentation pages 2651 2652971018 2653 + split-out lib_ungetch.c, make runtime link to resizeterm() to 2654 decouple those modules from lib_restart.c 2655 + add xterm-xf86-v39t description to terminfo.src 2656 + reset SP->_endwin in lib_tstp.c cleanup() function after calling 2657 endwin() to avoid unnecessary repainting if the application has 2658 established an atexit function, etc. Encountered this problem in 2659 the c++ demo, whose destructors repaint the screen. 2660 + combine _nc_get_screensize() and resizeterm() calls as new function 2661 _nc_update_screensize(). 2662 + minor fixes to allow compile with g++ (suggested by Nelson H. F. 2663 Beebe). 2664 + implement install-rules for Ada95 makefiles. 2665 + use screen_lines or MAXLINES as needed where LINES was coded, 2666 as well as screen_columns for COLS, in the ncurses library. 2667 > patch by Alexander V. Lukyanov: 2668 + modify logic for ripped-off lines to handle several SCREENs. 2669 > patch by Juergen Pfeifer: 2670 + factors lib_slk.c into some smaller modules 2671 + factors panel.c into some smaller modules 2672 + puts the static information about the current panel stack into the 2673 SCREEN structure to allow different panel stacks on different 2674 screens. 2675 + preliminary fix for an error adjusting LINES to account for 2676 ripped-off lines. 2677 2678971011 2679 + move _nc_max_click_interval and other mouse interface items to SCREEN 2680 struct so that they are associated with a single terminal, and also 2681 save memory when the application does not need a mouse (roughly 3k vs 2682 0.5k on Linux). 2683 + modify mouseinterval() so that a negative parameter queries the 2684 click-interval without modifying it. 2685 + modify ncurses 'i' test to work with ncurses' apparent extension from 2686 SVr4, i.e., allows nocbreak+noecho (analysis by Alexander V. 2687 Lukyanov). 2688 + add configure options --with-ada-includes and --with-ada-objects, 2689 to drive Ada95 binding install (not yet implemented). 2690 + install C++ binding as -lncurses++ and associated headers with the 2691 other ncurses headers. 2692 + fix header uninstall if configure --srcdir is used. 2693 > minor interface changes (request by Daniel Weaver <danw@znyx.com>, 2694 to support 'tack' program): 2695 + export functions _nc_trans_string() and _nc_msec_cost(). 2696 + add variable _nc_nulls_sent, to record the number of padding 2697 characters output in delay_output(). 2698 + move tests for generic_type and hard_copy terminals in setupterm() 2699 to the end of that function so that the library will still be 2700 initialized, though not generally useful for curses programs. 2701 > patches by Alexander V. Lukyanov: 2702 + modify ClrBottom() to avoid using clr_eos if there is only one line 2703 to erase. 2704 + typo in configure --help. 2705 > patch by J.T.Conklin (with minor resync against Juergen's changes) 2706 + split-out lib_flash.c from lib_beep.c 2707 + split-out lib_hline.c and lib_vline.c from lib_box.c 2708 + split-out lib_wattron.c, lib_wattroff.c from lib_addch.c 2709 2710971005 2711 > patch by Juergen Pfeifer: 2712 + correct source/target of c++/edit_cfg.sh 2713 2714971004 2715 + add color, mouse support to kterm terminfo entry. 2716 + modify lib_mouse.c to recognize rxvt, kterm, color_xterm also as 2717 providing "xterm"-style mouse. 2718 + updated rxvt's terminfo description to correspond to 2.21b, with 2719 fixes for the acsc (the box1 capability is incorrect, ech1 does not 2720 work). 2721 + fix logic in parse_entry.c that discarded acsc when 'synthesizing' 2722 an entry from equivalents in XENIX or AIX. This lets ncurses handle 2723 the distribution copy of rxvt's terminfo. 2724 + modify acsc capability for linux and linux-koi8 terminfo descriptions 2725 (from Pavel Roskin <pavel@absolute.spb.su>). 2726 + corrected definition in curses.h for ACS_LANTERN, which was 'I' 2727 rather than 'i' (see 970802). 2728 + updated terminfo.src with reformatted acsc entries, and repaired the 2729 trashed entries with spurious '\' characters that this exposed. 2730 + add logic to dump_entry.c to reformat acsc entries into canonical 2731 form (sorted, unique mapping). 2732 + add configure script to generate c++/etip.h 2733 + add configure --with-develop option, to enable by default most of the 2734 experimental options (requested by Alexander V. Lukyanov). 2735 + rename 'deinstall' to 'uninstall', following GNU convention (suggested 2736 by Alexander V. Lukyanov). 2737 > patches by Alexander V. Lukyanov: 2738 + modify tactics 2 and 5 in onscreen_mvcur(), to allow them on the last 2739 line of the screen, since carriage return will not cause a newline. 2740 + remove clause from PutCharLR() that would try to use 2741 eat_newline_glitch since that apparently does not work on some 2742 terminals (e.g., M$ telnet). 2743 + correct a limit check in scroll_csr_backward() 2744 > patches by Juergen Pfeifer: 2745 + adds dummy implementations of methods above() and below() to the 2746 NCursesPanel class. 2747 + fixes missing returncode in NCursesWindow::ripoffline() 2748 + fixes missing returncode in TestApplication::run() in demo.cc 2749 + We should at least give a comment in etip.h why it is currently a 2750 problem to install the C++ binding somewhere 2751 + makes the WINDOW* argument of wenclose() a const. 2752 + modifies several of the routines in lib_adabind.c to use a const 2753 WINDOW* argument. 2754 2755970927 2756 + add 'deinstall' rules. 2757 + use explicit assignments in configure --without-progs option to 2758 work around autoconf bug which doesn't always set $withval. 2759 + check for ldconfig, don't try to run it if not found. 2760 + implement simple/unoptimized case in lib_doupdate.c to handle 2761 display with magic cookie glitch, tested with ncurses.c program. 2762 + correct missing _tracef in getmouse(), to balance the returnCode 2763 macro. 2764 + simplify show_attr() in ncurses.c using termattrs(). 2765 > patches by Juergen Pfeifer: 2766 + provides missing inlines for mvw[hv]line in cursesw.h of the C++ 2767 binding 2768 + fixes a typo in a comment of frm_driver.c 2769 + Enhances Ada95 Makefiles to fulfill the requirement of GNAT-3.10 that 2770 generics should be compiled. Proper fixes to the configuration 2771 scripts are also provided. 2772 2773970920 2774 + several modifications to the configure script (requested by Ward 2775 Horner): 2776 + add configure options --without-progs, to suppress the build of the 2777 utility programs, e.g., for cross-compiling. 2778 + add $(HOSTCCFLAGS) and $(HOSTLDFLAGS) symbols to ncurses 2779 Makefile.in, to simplify setup for cross compiling. 2780 + add logic in configure script to recognize "--target=vxworks", and 2781 generate load/install actions for VxWorks objects. 2782 + move typedef for sigaction_t into SigAction.h to work around problem 2783 generating lint library. 2784 + modify fty_regex.c to reflect renaming of ifdef's for regular 2785 expressions. 2786 + simplify ifdef in lib_setup.c for TIOCGWINSZ since that symbol may 2787 reside in <sys/ioctl.h>. 2788 + merge testcurs.c with version from PDCurses 2.3, clarifying some of 2789 the more obscure tests, which rely upon color. 2790 + use macros getbegyx() and getmaxyx() in newdemo.c and testcurs.c 2791 + modify ncurses.c to use getbegyx() and getmaxyx() macros to cover up 2792 implementation difference wrt SVr4 curses, allow 's' test to work. 2793 + add missing endwin() to testscanw.c program (reported by Fausto 2794 Saporito <fausap@itb.it>). 2795 + fixes/updates for Makefile.glibc and related files under sysdeps 2796 (patch by H.J.Lu). 2797 > patches by Juergen Pfeifer: 2798 + add checks for null pointers, especially WINDOW's throughout the 2799 ncurses library. 2800 + solve a problem with wrong calculation of panel overlapping (reported 2801 by Ward Horner): 2802 + make sure that a panel's window isn't a pad. 2803 + do more error checking in module lib_touch.c 2804 + missing files for Ada95 binding from the last patch 2805 + synch. of generated html pages (RCS-Id's were wrong in html files) 2806 + support for Key_Resize in Ada binding 2807 + changed documentation style in ./c++/cursesm.h 2808 > patches by Alexander V. Lukyanov: 2809 + undo attempt to do recursive inlining for PutChar(), noting that it 2810 did not improve timing measurably, but inflated the size of 2811 lib_doupdate.o 2812 2813970913 2814 + modify rain.c to use color. 2815 + correct scroll_csr_backward() to match scroll_csr_forward(). 2816 + minor adjustment to llib-lncurses, to work with Solaris 2.5.1 2817 + minor fixes to sysdeps/unix/sysv/linux/configure to reflect renaming 2818 of configure cache variables in 970906. 2819 + correct logic involving changes to O_VISIBLE option in 2820 Synchronize_Options function in frm_driver.c (Tony Hoffmann 2821 <Tony.Hoffmann@hia.nrc.ca>) 2822 + add $(HOSTCC) symbol to ncurses Makefile.in, to simplify setup for 2823 cross compiling (suggested by Chris Johns). 2824 + modify ifdef in lib_setup.c to only include <sys/ioctl.h> if we can 2825 use it to support screen-size calculation (reported by Chris Johns). 2826 + #undef unctrl to avoid symbol conflict in port to RTEMS (reported by 2827 Chris Johns <cjohns@plessey.com.au>) 2828 > patches by Juergen Pfeifer: 2829 + simplified, made minor corrections to Ada95 binding to form fieldtype. 2830 + The C++ binding has been enhanced: 2831 + Improve NCursesWindow class: added additional methods to cover 2832 more ncurses functionality. Make refresh() and noutrefresh() 2833 virtual members to allow different implementation in the 2834 NCursesPanel class. 2835 + CAUTION: changed order of parameters in vline() and hline() of 2836 NCursesWindow class. 2837 + Make refresh() in NCursesPanel non-static, it is now a 2838 reimplementation of refresh() in the base class. Added 2839 noutrefresh() to NCursesPanel. 2840 + Added NCursesForm and related classes to support libform 2841 functionality. 2842 + Moved most of configuration related stuff from cursesw.h to etip.h 2843 + Added NCursesApplication class to support easy configuration of 2844 menu and forms related attributes as well as ripped of title lines 2845 and Soft-Label-Keys for an application. 2846 + Support of Auto-Cleanup for a menu's fieldlist. 2847 + Change of return type for current_item() and operator[] for menus. 2848 + Enhanced demo. 2849 + Fixed a bug in form/fld_def.c: take into account that copyarg and 2850 freearg for a fieldtype may be NULL, makearg must not be NULL 2851 + Fixed a bug in form/fld_type.c: in set_fieldtype_arg() makearg must 2852 not be NULL, copyarg and freearg may be NULL. 2853 + Fixed a bug in form/frm_def.c: Allow Disconnect_Fields() if it is 2854 already disconnected. 2855 + Enhance form/frm_driver.c: Allow growth of dynamic fields also on 2856 navigation requests. 2857 + Fixed a bug in form/fty_enum.c: wrong position of postincrement in 2858 case-insensitiva comparision routine. 2859 + Enhanced form/lib_adabind.c with function _nc_get_field() to get a 2860 forms field by index. 2861 + Enhanced menu/m_adabind.c with function _nc_get_item() to get a menus 2862 item by index. 2863 + Fixed in curses.h.in: make chtype argument for pechochar() constant. 2864 Mark wbkgdset() as implemented, remove wbkgdset macro, because it was 2865 broken (didn't handle colors correctly). 2866 + Enhanced lib_mouse.c: added _nc_has_mouse() function 2867 + Added _nc_has_mouse() prototype to curses.priv.h 2868 + Modified lib_bkgd.c: hopefully correct implementation of wbkgdset(); 2869 streamlined implementation of wbkgd() 2870 + Modified lib_mvwin.c: Disable move of a pad. Implement (costly) 2871 move of subwindows. Fixed update behaviour of movements of regular 2872 windows. 2873 + Fixed lib_pad.c: make chtype argument of pechochar() const. 2874 + Fixed lib_window.c: dupwin() is not(!) in every bit a really clone 2875 of the original. Subwindows become regular windows by doing a 2876 dupwin(). 2877 + Improved manpage form_fieldtype.3x 2878 > patches by Alexander V. Lukyanov: 2879 + simplify the PutChar() handling of exit_am_mode, because we already 2880 know that auto_right_margin is true. 2881 + add a check in PutChar() for ability to insert to the case of 2882 shifting character to LR corner. 2883 + in terminal initialization by _nc_screen_resume(), make sure that 2884 terminal right margin mode is known. 2885 + move logic that invokes touchline(), or does the equivalent, into 2886 _nc_scroll_window(). 2887 + modify scrolling logic use of insert/delete line capability, assuming 2888 that they affect the screen contents only within the current 2889 scrolling region. 2890 + modify rain.c to demonstrate SIGWINCH handler. 2891 + remove logic from getch() that would return an ERR if the application 2892 called getch() when the cursor was at the lower-right corner of the 2893 physical screen, and the terminal does not have insert-character 2894 ability. 2895 + change view.c so that it breaks out of getch() loop if a KEY_RESIZE 2896 is read, and modify logic in getch() so this fix will yield the 2897 desired behavior, i.e., the screen is repainted automatically when 2898 the terminal window is resized. 2899 2900970906 2901 + add configure option --enable-sigwinch 2902 + modify view.c to test KEY_RESIZE logic, with "-r" option. 2903 + modify testcurs.c to eliminate misleading display wrt cursor type 2904 by testing if the terminal supports cnorm, civis, cvvis. 2905 + several fixes for m68k/NeXT 4.0, to bring cur_term, _nc_curr_line and 2906 _nc_curr_col variables into linked programs: move these variables, 2907 making new modules lib_cur_term and trace_buf (reported by Francisco 2908 Alberto Tomei Torres <fatomei@sandburg.unm.edu>). 2909 > patches by Alexander V. Lukyanov: 2910 + add pseudo-functionkey KEY_RESIZE which is returned by getch() when 2911 the SIGWINCH handler has been called since the last call to 2912 doupdate(). 2913 + modify lib_twait.c to hide EINTR only if HIDE_EINTR is defined. 2914 + add SIGWINCH handler to ncurses library which is used if there is no 2915 application SIGWINCH handler in effect when the screen is 2916 initialized. 2917 + make linked list of all SCREEN structures. 2918 + move curses.h include before definition of SCREEN to use types in 2919 that structure. 2920 + correction to ensure that wgetstr uses only a newline to force a 2921 scroll (970831). 2922 2923970831 2924 + add experimental configure option --enable-safe-sprintf; the normal 2925 mode now allocates a buffer as large as the screen for the 2926 lib_printw.c functions. 2927 + modify wgetch to refresh screen when reading ungetch'd characters, 2928 since the application may require this - SVr4 does this. 2929 + refine treatment of newline in wgetstr to echo only when this would 2930 force the screen to scroll. 2931 2932970830 2933 + remove override in wgetstr() that forces keypad(), since SVr4 does 2934 not do this. 2935 + correct y-reference for erasure in wgetstr() when a wrap forces a 2936 scroll. 2937 + correct x-position in waddch() after a wrap forces a scroll. 2938 + echo newline in wgetstr(), making testscanw.c scroll properly when 2939 scanw is done. 2940 + modify vwscanw() to avoid potential buffer overflow. 2941 + rewrote lib_printw.c to eliminate fixed-buffer limits. 2942 > patches by Alexander V. Lukyanov: 2943 + correct an error in handling cooked mode in wgetch(); processing 2944 was in the wrong order. 2945 + simplified logic in wgetch() that handles backspace, etc., by using 2946 wechochar(). 2947 + correct wechochar() so that it interprets the output character as 2948 in waddch(). 2949 + modify pechochar() to use prefresh() rather than doupdate(), since 2950 the latter does not guarantee immediate refresh of the pad. 2951 + modify pechochar() so that if called with a non-pad WINDOW, will 2952 invoke wechochar() instead. 2953 + modify fifo indices to allow fifo to be longer than 127 bytes. 2954 2955970823 2956 + add xterm-8bit to terminfo.src 2957 + moved logic for SP->_fifohold inside check_pending() to make it 2958 work properly when we add calls to that function. 2959 + ensure that bool functions return only TRUE or FALSE, and TRUE/FALSE 2960 are assigned to bool values (patch by H.J.Lu). 2961 > patches by Alexander V. Lukyanov: 2962 + several fixes to getch: 2963 1. Separate cooked and raw keys in fifo 2964 2. Fix the case of ungetch'ed KEY_MOUSE 2965 3. wrap the code for hiding EINTR with ifdef HIDE_EINTR 2966 4. correctly handle input errors (i.e., EINTR) without loss of raw 2967 keys 2968 5. recognize ESC KEY_LEFT and similar 2969 6. correctly handle the case of receiption of KEY_MOUSE from gpm 2970 + correct off-by-one indexing error in _nc_mouse_parse(), that caused 2971 single mouse events (press/release) to be ignored in favor of 2972 composed events (click). Improves on a fix from integrating gpm 2973 support in 961229. 2974 + add another call to check_pending, before scrolling, for 2975 line-breakout optimization 2976 + improve hashmap.c by 2977 1. fixed loop condition in grow_hunks() 2978 2. not marking lines with offset 0 2979 3. fixed condition of 'too far' criteria, thus one-line hunks are 2980 ignored and two lines interchanged won't pass. 2981 + rewrote/simplified _nc_scroll_optimize() by separating into two 2982 passes, forward/backward, looking for chunks moving only in the given 2983 direction. 2984 + move logic that emits sgr0 when initializing the screen to 2985 _nc_screen_init(), now invoked from newterm. 2986 + move cursor-movement cleanup from endwin() into _nc_mvcur_wrap() 2987 function and screen cleanup (i.e., color) into _nc_screen_wrap() 2988 function. 2989 + add new functions _nc_screen_init(), _nc_screen_resume() and 2990 _nc_screen_wrap(). 2991 + rename _nc_mvcur_scrolln() to _nc_scrolln(). 2992 + add a copy of acs_map[] to the SCREEN structure, where it can be 2993 stored/retrieved via set_term(). 2994 + move variables _nc_idcok, _nc_idlok, _nc_windows into the SCREEN 2995 structure. 2996 2997970816 2998 + implement experimental _nc_perform_scroll(). 2999 + modify newterm (actually _nc_setupscreen()) to emit an sgr0 when 3000 initializing the screen, as does SVr4 (reported by Alexander V. 3001 Lukyanov). 3002 + added test_progs rule to ncurses/Makefile. 3003 + modify test/configure.in to check if initscr is already in $LIBS 3004 before looking for (n)curses library. 3005 + correct version-number in configure script for OSF1 shared-library 3006 options (patch by Tim Mooney). 3007 + add -DNDEBUG to CPPFLAGS for --enable-assertions (as Juergen 3008 originally patched) since the c++ demo files do not necessarily 3009 include ncurses_cfg.h 3010 + supply default value for --enable-assertions option in configure 3011 script (reported by Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>). 3012 > patches by Alexander V. Lukyanov: 3013 + correct/simplify logic of werase(), wclrtoeol() and wclrbot(). See 3014 example firstlast.c 3015 + optimize waddch_literal() and waddch_nosync() by factoring out 3016 common subexpressions. 3017 + correct sense of NDEBUG ifdef for CHECK_POSITION macro. 3018 + corrections to render_char(), to make handling of colored blanks 3019 match SVr4 curses, as well as to correct a bug that xor'd space 3020 against the background character. 3021 + replaced hash function with a faster one (timed it) 3022 + rewrote the hashmap algorithm to be one-pass, this avoids multiple 3023 cost_effective() calls on the same lines. 3024 + modified cost_effective() so it is now slightly more precise. 3025 > patches by H.J.Lu for glibc integration: 3026 + add modules define_key, keyok, name_match, tries 3027 + add makefile rules for some of the unit tests in ncurses (mvcur, 3028 captoinfo, hardscroll, hashmap). 3029 + update Linux configure-script for wide-character definitions. 3030 3031970809 3032 + modify _tracebits() to show the character size (e.g., CS8). 3033 + modify tparm() to emit '\200' where the generated string would have a 3034 null (reported by From: Ian Dall <Ian.Dall@dsto.defence.gov.au> for 3035 terminal type ncr7900). 3036 + modify install process so that ldconfig is not invoked if the 3037 package is built with an install-prefix. 3038 + correct test program for chtype size (reported by Tim Mooney). 3039 + add configure option --disable-scroll-hints, using this to ifdef the 3040 logic that computes indices for _nc_scroll_optimize(). 3041 + add module ncurses/softscroll.c, to perform single-stage computation 3042 of scroll indices used in _nc_scroll_optimize(). This is faster than 3043 the existing scrolling algorithm, but tends to make too-small hunks. 3044 + eliminate fixed buffer size in _nc_linedump(). 3045 + minor fixes to lib_doupdate.c to add tradeoff between clr_eol (el) 3046 and clr_bol (el1), refine logic in ClrUpdate() and ClrBottom() (patch 3047 by Alexander V. Lukyanov). 3048 + add test/testaddch.c, from a pending patch by Alexander V. Lukyanov. 3049 + correct processing of "configure --enable-assertions" option (patch 3050 by Juergen Pfeifer). 3051 3052970802 3053 + add '-s' (single-step) option too test/hashtest.c, correct an error 3054 in loop limit for '-f' (footer option), toggle scrollok() when 3055 writing footer to avoid wrap at lower-right corner. 3056 + correct behavior of clrtoeol() immediately after wrapping cursor, 3057 which was not clearing the line at the cursor position (reported by 3058 Liviu Daia <daia@stoilow.imar.ro>). 3059 + corrected mapping for ACS_LANTERN, which was 'I' rather than 'i' 3060 (reported by Klaus Weide <kweide@tezcat.com>). 3061 + many corrections to make progs/capconvert work, as well as make it 3062 reasonably portable and integrated with ncurses 4.1 (reported by Dave 3063 Furstenau <df@ravine.binary.net>). 3064 3065970726 3066 + add flag SP->_fifohold, corresponding logic to modify the behavior of 3067 the line breakout logic so that if the application does not read 3068 input, refreshes will not be stopped, but only slowed. 3069 + generate slk_attr_off(), slk_attr_on(), slk_attr_set(), vid_attr(), 3070 ifdef'd for wide-character support, since ncurses' WA_xxx attribute 3071 masks are identical with the A_xxx masks. 3072 + modify MKlib_gen.sh to generate ifdef'd functions to support optional 3073 configuration of wide-characters. 3074 + modify tset to behave more like SVr4's tset, which does not modify 3075 the settings of intr, quit or erase unless they are given as command 3076 options (reported by Nelson H. F. Beebe <beebe@math.utah.edu>). 3077 + modify tset to look in /etc/ttys or /etc/ttytype if the configuration 3078 does not have getttynam(). 3079 + extend baudrate table in tset.c to match baudrate() function. 3080 + add table entries for 230400 and 460800 bd to baudrate() function. 3081 + improve breakout logic by allowing it before the first line updated, 3082 which is what SVr4 curses does (patch by Alexander V. Lukyanov). 3083 + correct initialization of vcost in relative_move(), for cursor-down 3084 case (patch by Alexander V. Lukyanov). 3085 > nits gleaned from Debian distribution of 1.9.9g-3: 3086 + install symbolic link for intotocap. 3087 + reference libc directly when making shared libraries. 3088 + correct renaming of curs_scr_dmp.3x in man_db.renames. 3089 + guard tgetflag() and other termcap functions against null cur_term 3090 pointer. 3091 3092970719 3093 + corrected initial state of software echo (error in 970405, reported 3094 by Alexander V. Lukyanov). 3095 + reviewed/added messages to configure script, so that all non-test 3096 options should be accompanied by a message. 3097 + add configure check for long filenames, using this to determine if 3098 it is safe to allow long aliases for terminal descriptions as does 3099 SVr4. 3100 + add configure options for widec (wide character), hashmap (both 3101 experimental). 3102 > patch by Alexander V. Lukyanov: 3103 + hashmap.c - improved by heuristic, so that scroll test works much 3104 better when csr is not available. 3105 + hardscroll.c - patched so that it continues to scroll other chunks 3106 after failure to scroll one. 3107 + lib_doupdate.c - _nc_mvcur_scrolln extended to handle more cases; csr 3108 is avoided as it is relative costly. Fixed wrong coordinates in one 3109 case and wrong string in TRACE. 3110 > patch by Juergen Pfeifer: 3111 + modify C++ binding to compile on AIX 4.x with the IBM C-SET++ 3112 compiler. 3113 3114970712 3115 + remove alternate character set from kterm terminfo entry; it uses the 3116 shift-out control for a purpose incompatible with curses, i.e., font 3117 switching. 3118 + disentangle 'xterm' terminfo entry from some derived entries that 3119 should be based on xterm-r6 instead. 3120 + add cbt to xterm-xf86-xv32 terminfo entry; I added the emulation for 3121 XFree86 3.1.2F, but overlooked its use in terminfo then - T.Dickey. 3122 + correct logic in lib_mvcur.c that uses back_tab. 3123 3124970706 3125 + correct change from 970628 to ClrUpdate() in lib_doupdate.c so that 3126 contents of curscr are saved in newscr before clearing the screen. 3127 This is needed to make repainting work with the present logic of 3128 TransformLine(). 3129 + use napms() rather than sleep() in tset.c to avoid interrupting I/O. 3130 3131970705 3132 + add limit checks to _nc_read_file_entry() to guard against overflow 3133 of buffer when reading incompatible terminfo format, e.g, from OSF/1. 3134 + correct some loop-variable errors in xmc support in lib_doupdate.c 3135 + modify ncurses 'b' test to add gaps, specified by user, to allow 3136 investigation of interaction with xmc (magic cookie) code. 3137 + correct typo in 970524 mods to xmas.c, had omitted empty parameter 3138 list from has_colors(), which gcc ignores, but SVr4 does not 3139 (reported by Larry Virden). 3140 + correct rmso capability in wy50-mc description. 3141 + add configure option "--enable-hard-tabs", renamed TABS_OK ifdef to 3142 USE_HARD_TABS. 3143 > patch by Juergen Pfeifer: 3144 + Add bindings for keyok() and define_key() to the Ada95 packages. 3145 + Improve man pages menu_post.3x and menu_format.3x 3146 + Fix the HTML pages in the Ada95/html directory to reflect the above 3147 changes. 3148 3149970628 3150 + modify change from 970101 to ClrUpdate() in lib_doupdate.c so that 3151 pending changes to both curscr and newscr are flushed properly. 3152 This fixes a case where the first scrolling operation in nvi would 3153 cause the screen to be cleared unnecessarily and repainted before 3154 doing the indexing, i.e., by repeatedly pressing 'j' (reported by 3155 Juergen Pfeifer). 3156 + correct error in trans_string() which added embedded newlines in a 3157 terminfo description to the stored strings. 3158 + remove spurious newlines from sgr in wyse50 (and several other) 3159 terminfo descriptions. 3160 + add configure option for experimental xmc (magic cookie) code, 3161 "--enable-xmc-glitch". When disabled (the default), attributes that 3162 would store a magic cookie are suppressed in vidputs(). The magic 3163 cookie code is far from workable at this stage; the configuration 3164 option is a stopgap. 3165 + move _nc_initscr() from lib_initscr.c to lib_newterm.c 3166 + correct path for invoking make_keys (a missing "./"). 3167 3168970621 3169 + correct sign-extension problem with "infocmp -e", which corrupted 3170 acsc values computed for linux fallback data. 3171 + correct dependency on ncurses/names.c (a missing "./"). 3172 + modify configure script to use '&&' even for cd'ing to existing 3173 directories to work around broken shell interpreters. 3174 + correct a loop-limit in _nc_hash_map() (patch by Alexander V. 3175 Lukyanov). 3176 3177970615 3178 + restore logic in _nc_scroll_optimize() which marks as touched the 3179 lines in curscr that are shifted. 3180 + add new utility 'make_keys' to compute keys.tries as a table rather 3181 than a series of function calls. 3182 + correct include-dependency for tic.h used by name_match 3183 + removed buffer-allocation for name and description from m_item_new.c, 3184 since this might result in incompatibilities with SVr4. Also fixed 3185 the corresponding Ada95 binding module (patch by Juergen Pfeifer, 3186 from report by Avery Pennarun <apenwarr@foxnet.net>) 3187 + removed the mechanism to timestamp the generated Ada95 sources. This 3188 resulted always in generating patches for the HTML doc, even when 3189 nothing really changed (patch by Juergen Pfeifer). 3190 + improve man page mitem_new.3x (patch by Juergen Pfeifer). 3191 3192970614 3193 + remove ech capability from rxvt description because it does not work. 3194 + add missing case logic for infocmp -I option (reported by Lorenzo M. 3195 Catucci <lorenzo@argon.roma2.infn.it>) 3196 + correct old bug in pnoutrefresh() unmasked by fix in 970531; this 3197 caused glitches in the ncurses 'p' test since the area outside the 3198 pad was not compared when setting up indices for _nc_scroll_optimize. 3199 + rewrote tracebits() to workaround misdefinition of TOSTOP on Ultrix 3200 4.4, as well as to eliminate fixed-size buffer (reported by Chris 3201 Tanner <tannerc@aecl.ca>) 3202 + correct prototype for termattrs() as per XPG4 version 2. 3203 + add placeholder prototypes for color_set(), erasewchar(), 3204 term_attrs(), wcolor_set() as per XPG4 version 2. 3205 + correct attribution for progs/progs.priv.h and lib_twait.c 3206 + improve line-breakout logic by checking based on changed lines rather 3207 than total lines (patch by Alexander V. Lukyanov). 3208 + correct loop limits for table-lookup of enumerated value in form 3209 (patch by Juergen Pfeifer). 3210 + improve threshhold computation for determining when to call ClrToEOL 3211 (patch by Alexander V. Lukyanov). 3212 3213970531 3214 + add configure option --disable-database to force the library to 3215 use only the fallback data. 3216 + add configure option --with-fallbacks, to specify list of fallback 3217 terminal descriptions. 3218 + add a symbolic link for ncurses.h during install; too many programs 3219 still assume there's an ncurses.h 3220 + add new terminfo.src entry for xterm-xf86-v33. 3221 + restore terminfo.src entry for emu to using setf/setb, since it is 3222 not, after all, generating ANSI sequences. Corrected missing comma 3223 that caused setf/setb entries to merge. 3224 + modify mousemask() to use keyok() to enable/disable KEY_MOUSE, so 3225 that applications can disable ncurses' mouse and supply their own 3226 handler. 3227 + add extensions keyok() and define_key(). These are designed to allow 3228 the user's application better control over the use of function keys, 3229 e.g., disabling the ncurses KEY_MOUSE. (The define_key idea was from 3230 a mailing-list thread started by kjahds@kjahds.com Nov'1995). 3231 + restore original behavior in ncurses 'g' test, i.e., explicitly 3232 set the keypad mode rather than use the default, since it confuses 3233 people. 3234 + rewrote the newdemo banner so it's readable (reported by Hugh Daniel). 3235 + tidy up exit from hashtest (reported by Hugh Daniel). 3236 + restore check for ^Q in ncurses 'g' test broken in 970510 (reported 3237 by Hugh Daniel) 3238 + correct tput program, checking return-value of setupterm (patch by 3239 Florian La Roche). 3240 + correct logic in pnoutrefresh() and pechochar() functions (reported 3241 by Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>). The computation 3242 of 'wide' date to eric's #283 (1.9.9), and the pechochar bug to the 3243 original implementation (1.9.6). 3244 + correct typo in vt102-w terminfo.src entry (patch by Robert Wuest 3245 <rwuest@sire.vt.com>) 3246 + move calls of _nc_background() out of various loops, as its return 3247 value will be the same for the whole window being operated on (patch 3248 by J.T.Conklin). 3249 + add macros getcur[xy] getbeg[xy] getpar[xy], which are defined in 3250 SVr4 headers (patch by J.T.Conklin <jtc@NetBSD.ORG>) 3251 + modify glibc addon-configure scripts (patch by H.J.Lu). 3252 + correct a bug in hashmap.c: the size used for clearing the hashmap 3253 table was incorrect, causing stack corruption for large values of 3254 LINES, e.g., >MAXLINES/2 (patch by Alexander V. Lukyanov). 3255 + eric's terminfo 9.13.23 & 9.13.24 changes: replaced minitel-2 entry, 3256 added MGR, ansi-nt (note: the changes described for 9.13.24 have not 3257 been applied). 3258 > several changes by Juergen Pfeifer: 3259 + correct a missing error-return in form_driver.c when wrapping of a 3260 field is not possible. 3261 + correct logic in form_driver.c for configurations that do not have 3262 memccpy() (reported by Sidik Isani <isani@cfht.hawaii.edu>) 3263 + change several c++ binding functions to inline. 3264 + modify c++ menu binding to inherit from panels, for proper 3265 initialization. 3266 + correct freeing of menu items in c++ binding. 3267 + modify c++ binding to reflect removal of const from user data pointer 3268 in forms/menus libraries. 3269 3270970524 3271 + add description of xterm-16color. 3272 + modify name of shared-library on *BSD to end with $(REL_VERSION) 3273 rather than $(ABI_VERSION) to match actual convention on FreeBSD 3274 (cf: 960713). 3275 + add OpenBSD to shared-library case, same as NetBSD and FreeBSD 3276 (reported by Hugh Daniel <hugh@rat.toad.com>). 3277 + corrected include-dependency in menu/Makefile so that "make install" 3278 works properly w/o first doing "make". 3279 + add fallback definition for isascii, used in infocmp. 3280 + modify xmas to use color, and to exit right away when a key is 3281 pressed. 3282 + modify gdc so that the scrolled digits function as described (there 3283 was no time delay between the stages, and the digits overwrote the 3284 bounding box without tidying up). 3285 + modify lib_color.c to use setaf/setab only for the ANSI color codes 3286 0 through 7. Using 16 colors requires setf/setb. 3287 + modify ncurses 'c' test to work with 16 colors, as well as the normal 3288 8 colors. 3289 + remove const qualifier from user data pointer in forms and menus 3290 libraries (patch by Juergen Pfeifer). 3291 + rewrote 'waddchnstr()' to avoid using the _nc_waddch_nosync() 3292 function, thereby not interpreting tabs, etc., as per spec (patch by 3293 Alexander V. Lukyanov). 3294 3295970517 3296 + suppress check for pre-existing ncurses header if the --prefix 3297 option is specified. 3298 + add configure options "--with-system-type" and "--with-system-release" 3299 to assist in checking the generated makefiles. 3300 + add configure option "--enable-rpath" to allow installers to specify 3301 that programs linked against shared libraries will have their library 3302 path embedded, allowing installs into nonstandard locations. 3303 + add flags to OSF1 shared-library options to specify version and 3304 symbol file (patch by Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>) 3305 + add missing definition for ABI_VERSION to c++/Makefile.in (reported 3306 by Satoshi Adachi <adachi@wisdom.aa.ap.titech.ac.jp>). 3307 + modify link flags to accommodate HP-UX linker which embeds absolute 3308 pathnames in executables linked against shared libraries (reported by 3309 Jason Evans <jasone@mrc.uidaho.edu>, solved by Alan Shutko 3310 <ats@hubert.wustl.edu>). 3311 + drop unnecessary check for attribute-change in onscreen_mvcur() since 3312 mvcur() is the only caller within the library, and that check in turn 3313 is exercised only from lib_doupdate.c (patch by Alexander V. 3314 Lukyanov). 3315 + add 'blank' parameter to _nc_scroll_window() so _nc_mvcur_scrolln() 3316 can use the background of stdscr as a parameter to that function 3317 (patch by Alexander V. Lukyanov). 3318 + moved _nc_mvcur_scrolln() from lib_mvcur.c to lib_doupdate.c, to use 3319 the latter's internal functions, as well as to eliminate unnecessary 3320 cursor save/restore operations (patch by Alexander V. Lukyanov). 3321 + omit parameter of ClrUpdate(), since it is called only for newscr, 3322 further optimized/reduced by using ClearScreen() and TransformLine() 3323 to get rid of duplicate code (patch by Alexander V. Lukyanov). 3324 + modify scrolling algorithm in _nc_scroll_optimize() to reject hunks 3325 that are smaller than the distance to be moved (patch by Alexander V. 3326 Lukyanov). 3327 + correct a place where the panel library was not ifdef'd in ncurses.c 3328 (Juergen Pfeifer) 3329 + documentation fixes (Juergen Pfeifer) 3330 3331970515 4.1 release for upload to prep.ai.mit.edu 3332 + re-tag changes since 970505 as 4.1 release. 3333 3334970510 3335 + modify ncurses 'g' test to allow mouse input 3336 + modify default xterm description to include mouse. 3337 + modify configure script to add -Wwrite-strings if gcc warnings are 3338 enabled while configuring --enable-const (and fixed related warnings). 3339 + add toggle, status display for keypad mode to ncurses 'g' test to 3340 verify that keypad and scrollok are not inherited from parent window 3341 during a call to newwin. 3342 + correction to MKexpanded.sh to make it work when configure --srcdir is 3343 used (reported by H.J.Lu). 3344 + revise test for bool-type, ensuring that it checks if builtin.h is 3345 available before including it, adding test for sizeof(bool) equal 3346 to sizeof(short), and warning user if the size cannot be determined 3347 (reported by Alexander V. Lukyanov). 3348 + add files to support configuration of ncurses as an add-on library 3349 for GNU libc (patch by H.J.Lu <hjl@lucon.org>) 3350 3351970506 3352 + correct buffer overrun in lib_traceatr.c 3353 + modify change to lib_vidattr.c to avoid redundant orig_pair. 3354 + turn on 'echo()' in hanoi.c, since it is initially off. 3355 + rename local 'errno' variable in etip.h to avoid conflict with global 3356 (H.J.Lu). 3357 + modify configure script to cache LD, AR, AR_OPTS (patch by H.J.Lu 3358 <hjl@lucon.org>) 3359 3360970505 4.1 pre-release 3361 + regenerate the misc directory html dumps without the link list, which 3362 is not useful. 3363 + correct dependency in form directory makefile which caused unnecessary 3364 recompiles. 3365 + correct substitution for ABI_VERSION in test-makefile 3366 + modify install rules for shared-library targets to remove the target 3367 before installing, since some install programs do not properly handle 3368 overwrite of symbolic links. 3369 + change order of top-level targets so that 'include' immediate 3370 precedes the 'ncurses' directory, reducing the time between new 3371 headers and new libraries (requested by Larry Virden). 3372 + modify lib_vidattr.c so that colors are turned off only before 3373 modifying other attributes, turned on after others. This makes the 3374 hanoi.c program display correctly on FreeBSD console. 3375 + modify debug code in panel library to print user-data addresses 3376 rather than the strings which they (may) point to. 3377 + add check to ensure that C++ binding and demo are not built with g++ 3378 versions below 2.7, since the binding uses templates. 3379 + modify c++ binding and demo to build and run with SGI's c++ compiler. 3380 (It also compiles with the Sun SparcWorks compiler, but the demo does 3381 not link, due to a vtbl problem). 3382 + corrections to demo.cc, to fix out-of-scope variables (Juergen 3383 Pfeifer). 3384 3385970503 3386 + correct memory leak in _nc_trace_buf(). 3387 + add configure test for regexpr.h, for Unixware 1.x. 3388 + correct missing "./" prefixing names of generated files in ncurses 3389 directory. 3390 + use single-quotes in configure scripts assignments for MK_SHARED_LIB 3391 to workaround shell bug on FreeBSD 2.1.5 3392 + remove tabs from intermediate #define's for GCC_PRINTF, GCC_SCANF 3393 that caused incorrect result in ncurses_cfg.h 3394 + correct initialization in lib_trace.c, which omitted version info. 3395 + remove ech, el1 attributes from cons25w description; they appear to 3396 malfunction in FreeBSD 2.1.5 3397 + correct color attributes in terminfo.src and lib_color.c to match 3398 SVr4 behavior by interchanging codes 1,4, 3,6 in the setf/setb 3399 capabilities. 3400 + use curs_set() rather than checks via tigetstr() for test programs 3401 that hide the cursor: firework, rain, worm. 3402 + ensure that if the terminal lacks change_scroll_region, parm_index 3403 and parm_rindex are used only to scroll the whole screen (patch by 3404 Peter Wemm). 3405 + correct curs_set() logic, which did not return ERR if the requested 3406 attributes did not exist, nor did it assume an unknown initial state 3407 for the cursor (patch by Alexander V. Lukyanov). 3408 + combine IDcTransformLine and NoIDcTransformLine to new TransformLine 3409 function in lib_doupdate.c (patch by Alexander V. Lukyanov). 3410 + correct hashmap.c, which did not update index information (patch by 3411 Alexander V. Lukyanov). 3412 + patch by Juergen Pfeifer for C++ binding and demo (see c++/NEWS) 3413 + correct index in lib_instr.c (Juergen Pfeifer). 3414 + correct typo in 970426 patch from Tom's cleanup of lib_overlay.c 3415 (Juergen Pfeifer). 3416 3417970426 3418 + corrected cost computation in PutRange(), which was using 3419 milliseconds compared to characters by adding two new members to the 3420 SCREEN struct, _hpa_ch_cost and _cup_ch_cost. 3421 + drop ncurses/lib_unctrl.c, add ncurses/MKunctrl.awk to generate a 3422 const array of strings (suggested by Alexander V. Lukyanov, though 3423 with a perl script 970118). 3424 + rewrote ncurses 'b' test to better exercise magic-cookie (xmc), as 3425 well as noting the attributes that are not supported by a terminal. 3426 + trace the computation of cost values in lib_mvcur.c 3427 + modify _nc_visbuf() to use octal rather than hex, corrected sign 3428 extension bug in that function that caused buffer overflow. 3429 + modify trace in lib_acs.c to use _nc_visbuf(). 3430 + suppress trace within _traceattr2(). 3431 + correct logic of _tracechtype2(), which did not account for repeats 3432 or redefinition within an acsc string. 3433 + modify debug-library version baudrate() to use environment variable 3434 $BAUDRATE to override speed computation. This is needed for 3435 regression testing. 3436 + correct problems shown by "weblint -pedantic". 3437 + update mailing-list information (now ncurses@bsdi.com). 3438 3439970419 3440 + Improve form_field_validation.3x manpage to better describe the 3441 precision parameter for TYPE_NUMERIC and TYPE_INTEGER. Provide more 3442 precise information how the range checking can be avoided. (patch by 3443 Juergen Pfeifer, reported by Bryan Henderson) 3444 + change type of min/max value of form types TYPE_INTEGER to long to 3445 match SVr4 documentation. 3446 + set the form window to stdscr in set_form_win() so that form_win() 3447 won't return null (patch by Juergen Pfeifer, reported by Bryan 3448 Henderson <bryanh@giraffe.netgate.net>). 3449 3450970412 3451 + corrected ifdef'ing of inline (from 970321) for TRACE vs C++. 3452 + corrected toggle_attr_off() macro (patch by Andries.Brouwer). 3453 + modify treatment of empty token in $MANPATH to /usr/man (reported by 3454 <Andries.Brouwer@cwi.nl>) 3455 + modify traces that record functions-called so that chtype and attr_t 3456 values are expressed symbolically, to simplify reuse of generated 3457 test-scripts on SVr4 regression testing. 3458 + add new trace functions _traceattr2() and _tracechtype2() 3459 3460970405 3461 + add configure option --enable-const, to support the use of 'const' 3462 where XSI should have, but did not, specify. This defines 3463 NCURSES_CONST, which is an empty token otherwise, for strict 3464 compatibility. 3465 + make processing of configure options more verbose by echoing the 3466 --enable/--with values. 3467 + add configure option --enable-big-core 3468 + set initial state of software echo off as per XSI. 3469 + check for C++ builtin.h header 3470 + correct computation of absolute-path for $INSTALL that dropped "-c" 3471 parameter from the expression. 3472 + rename config.h to ncurses_cfg.h to avoid naming-conflict when ncurses 3473 is integrated into larger systems (from diffs by H.J.Lu for libc). 3474 + correct inequality in lib_doupdate.c that caused a single-char to not 3475 be updated when the char on the right-margin was not blank, idcok() 3476 was true (patch by Alexander V. Lukyanov 970124, also reported by 3477 Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu> 970329). 3478 + modify 'clean' rule in include/Makefile so that files created by 3479 configure script are removed in 'distclean' rule instead. 3480 3481970328 3482 + correct array limit in tparam_internal(), add case to interpret "%x" 3483 (patch by Andreas Schwab) 3484 + rewrote number-parsing in ncurses.c 'd' test; it did not reset the 3485 value properly when non-numeric characters were given (reported by 3486 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>) 3487 3488970321 3489 + move definition of __INTERNAL_CAPS_VISIBLE before include for 3490 progs.priv.h (patch by David MacKenzie). 3491 + add configuration summary, reordered check for default include 3492 directory to better accommodate a case where installer is configuring 3493 a second copy of ncurses (reported by Klaus Weide 3494 <kweide@tezcat.com>) 3495 + moved the #define for 'inline' as an empty token from the 3496 $(CFLAGS_DEBUG) symbol into config.h, to avoid redefinition warning 3497 (reported by Ward Horner). 3498 + modify test for bool builtin type to use 'unsigned' rather than 3499 'unknown' when cross-compiling (reported by Ward Horner). 3500 3501970315 3502 + add header dependencies so that "make install.libs" will succeed 3503 even if "make all" is not done first. 3504 + moved some macros from lib_doupdate.c to curses.priv.h to use in 3505 expanded functions with ATAC. 3506 + correct implementation of lib_instr.c; both XSI and SVr4 agree that 3507 the winnstr functions can return more characters than will fit on one 3508 line. 3509 3510970308 3511 + modify script that generates lib_gen.c to support traces of called & 3512 return. 3513 + add new configure option "--disable-macros", for testing calls within 3514 lib_gen.c 3515 + corrected logic that screens level-checking of called/return traces. 3516 3517970301 3518 + use new configure macro NC_SUBST to replace AC_PATH_PROG, better 3519 addressing request by Ward Horner. 3520 + check for cross-compiling before trying to invoke the autoconf 3521 AC_FUNC_SETVBUF_REVERSED macro (reported by Ward Horner) 3522 + correct/simplify loop in _nc_visbuf(), 970201 changes omitted 3523 a pointer-increment. 3524 + eliminate obsolete symbol SHARED_ABI from dist.mk (noted by 3525 Florian La Roche). 3526 3527970215 3528 + add configure option --enable-expanded, together with code that 3529 implements an expanded form of certain complex macros, for testing 3530 with ATAC. 3531 + disable CHECK_POSITION unless --with-assertions is configured 3532 (Alexander Lukyanov pointed out that this is redundant). 3533 + use keyname() to show traced chtype values where applicable rather 3534 than _tracechar(), which truncates the value to 8-bits. 3535 + minor fixes to TRACE_ICALLS, added T_CREATE, TRACE_CCALLS macros. 3536 + modify makefiles in progs and test directories to avoid using C 3537 preprocessor options on link commands (reported by Ward Horner) 3538 + correct ifdef/include-order for nc_alloc.h vs lib_freeall.c (reported 3539 by Ward Horner) 3540 + modify ifdef's to use configure-defined symbols consistently 3541 (reported by Ward Horner) 3542 + add/use new makefile symbols AR, AR_OPTS and LD to assist in non-UNIX 3543 ports (reported by Ward Horner <whorner@tsi-telsys.com>) 3544 + rename struct try to struct tries, to avoid name conflict with C++ 3545 (reported by Gary Johnson). 3546 + modify worm.c to hide cursor while running. 3547 + add -Wcast-qual to gcc warnings, fix accordingly. 3548 + use PutChar rather than PutAttrChar in ClrToEOL to properly handle 3549 wrapping (Alexander Lukyanov). 3550 + correct spurious echoing of input in hanoi.c from eric's #291 & #292 3551 patches (reported by Vernon C. Hoxie <vern@zebra.alphacdc.com>). 3552 + extend IRIX configuration to IRIX64 3553 + supply missing install.libs rule needed after restructuring 3554 test/Makefile.in 3555 3556970208 3557 + modify "make mostlyclean" to leave automatically-generated source 3558 in the ncurses directory, for use in cross-compiles. 3559 + autogenerated object-dependencies for test directory 3560 + add configure option --with-rcs-ids 3561 + modify configuration scripts to generate major/minor/patch versions 3562 (suggested by Alexander Lukyanov). 3563 + supply missing va_end's in lib_scanw.c 3564 + use stream I/O for trace-output, to eliminate fixed-size buffer 3565 + add TRACE_ICALLS definition/support to lib_trace.c 3566 + modify Ada95 binding to work with GNAT 3.09 (Juergen Pfeifer). 3567 3568970201 3569 + add/modify traces for called/return values to simplify extraction 3570 for test scripts. 3571 + changed _nc_visbuf to quote its result, and to dynamically allocate 3572 the returned buffer. 3573 + invoke ldconfig after installing shared library 3574 + modify install so that overwrite applies to shared library -lcurses 3575 in preference to static library (reported by Zeyd 960928). 3576 + correct missing ';' in 961221 mod to overwrite option use of $(LN_S). 3577 + fixes to allow "make install" to work without first doing a "make 3578 all" (suggested by Larry Virden). 3579 3580970125 3581 + correct order of #ifdef for TABS_OK. 3582 + instrumented toe.c to test memory-leaks. 3583 + correct memory-deallocation in toe.c (patch by Jesse Thilo). 3584 + include <sys/types.h> in configuration test for regex.h (patch by 3585 Andreas Schwab) 3586 + make infocmp recognize -I option, for SVr4 compatibility (reported by 3587 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>) 3588 3589970118 3590 + add extension 'use_default_colors()', modified test applications that 3591 use default background (firework, gdc, hanoi, knight, worm) to 3592 demonstrate. 3593 + correct some limit checks in lib_doupdate.c exposed while running 3594 worm. 3595 + use typeCalloc macro for readability. 3596 + add/use definition for CONST to accommodate testing with Solaris 3597 (SVr4) curses, which doesn't use 'const' in its prototypes. 3598 + modify ifdef's in test/hashtest.c and test/view.c to compile with 3599 Solaris curses. 3600 + modify _tracedump() to pad pad colors & attrs lines to match change 3601 in 970101 showing first/last changes. 3602 + corrected location of terminating null on dynamically allocated forms 3603 fields (patch by Per Foreby). 3604 3605970111 3606 + added headers to make view.c compile on SCO with the resizeterm() 3607 code (i.e., struct winsize) - though this compiles, I don't have a 3608 suitable test configuration since SIGWINCH doesn't pass my network to 3609 that machine - T.Dickey. 3610 + update test/configure.in to supply some default substitutions. 3611 + modify configure script to add -lncurses after -lgpm to fix problem 3612 linking against static libraries. 3613 + add a missing noraw() to test/ncurses.c (places noted by Jeremy 3614 Buhler) 3615 + add a missing wclear() to test/testcurs.c (patch by Jeremy Buhler 3616 <jbuhler@cs.washington.edu>) 3617 + modify headers to accommodate compilers that don't allow duplicate 3618 "#define" lines for NCURSES_VERSION (reported by Larry W. Virden 3619 <lvirden@cas.org>) 3620 + fix formatting glitch in curs_getch.3x (patch by Jesse Thilo). 3621 + modify lib_doupdate to make el, el1 and ed optimization use the 3622 can_clear_with macro, and change EmitRange to allow leaving cursor at 3623 the middle of interval, rather than always at the end (patch by 3624 Alexander Lukyanov originally 960929, resync 970106). 3625 3626970104 3627 + workaround defect in autoconf 2.12 (which terminates configuration 3628 if no C++ compiler is found) by adding an option --without-cxx. 3629 + modify several man-pages to use tbl, where .nf/.fi was used (reported 3630 by Jesse Thilo). 3631 + correct font-codes in some man-pages (patch by Jesse Thilo 3632 <Jesse.Thilo@pobox.com>) 3633 + use configure script's knowledge of existence of g++ library for the 3634 c++ Makefile (reported by Paul Jackson). 3635 + correct misleading description of --datadir configuration option 3636 (reported by Paul Jackson <pj@sam.engr.sgi.com>) 3637 3638970101 3639 + several corrections to _nc_mvcur_scrolln(), prompted by a bug report 3640 from Peter Wemm: 3641 > the logic for non_dest_scroll_region was interchanged between the 3642 forward & reverse scrolling cases. 3643 > multiple returns from the function allowed certain conditions to do 3644 part of an operation before discovering that it couldn't be 3645 completed, returning an error without restoring the cursor. 3646 > some returns were ERR, where the function had completed the 3647 operation, because the insert/delete line logic was improperly 3648 tested (this was probably the case Peter saw). 3649 > contrary to comments, some scrolling cases were tested after the 3650 insert/delete line method. 3651 + modify _tracedump() to show first/last changes. 3652 + modify param of ClrUpdate() in lib_doupdate.c to 'newscr', fixes 3653 refresh problem (reported by Peter Wemm) that caused nvi to not show 3654 result of ":r !ls" until a ^L was typed. 3655 3656961229 (internal alpha) 3657 + correct some of the writable-strings warnings (reported by Gary 3658 Johnson <gjohnson@season.com>). Note that most of the remaining ones 3659 are part of the XSI specification, and can't be "fixed". 3660 + improve include-dependencies in form, menu, panel directories. 3661 + correct logic of delay_output(), which would return early if 3662 there is data on stdin. 3663 + modify interface & logic of _nc_timed_wait() to support 2 file 3664 descriptors, needed for GPM. 3665 + integrate patch by Andrew Kuchling <amk@magnet.com> for GPM (mouse) 3666 support, correcting logic in wgetch() and _nc_mouse_parse() which 3667 prevented patch from working properly. 3668 + improve performance of panel algorithm (Juergen Pfeifer 961203). 3669 + strip RCS id's from generated .html files in Ada95 subtree. 3670 + resync with generated .html files (Juergen Pfeifer 961223). 3671 + terminfo.src 10.1.0 from Eric. 3672 3673961224 4.0 release 3674 + release as 4.0 to accommodate Linux ld.so.1.8.5 3675 + correct syntax/spelling, regenerated .doc files from .html using 3676 lynx 2.5 3677 + refined forms/menus makefiles (Juergen Pfeifer 961223). 3678 3679961221 - snapshot 3680 + remove logic in read_entry.c that attempts to refine errno by using 3681 'access()' for the directory (from patch by Florian La Roche). 3682 + correct configure test/substitution that inhibits generating 3683 include-path to /usr/include if gcc is used (reported by Florian La 3684 Roche). 3685 + modify setupterm() to allocate new TERMINAL for each call, just as 3686 solaris' curses does (Alexander Lukyanov 960829). 3687 + corrected memory leaks in read_entry.c 3688 + add configure options --with-dbmalloc, --with-dmalloc, and 3689 --disable-leaks, tested by instrumenting infocmp, ncurses programs. 3690 + move #include's for stdlib.h and string.h to *.priv.h to accommodate 3691 use of dbmalloc. 3692 + modify use of $(LN_S) to follow recommendation in autoconf 2.12, 3693 i.e., set current directory before linking. 3694 + split-out panel.priv.h, improve dependencies for forms, menus 3695 (Juergen Pfeifer 961204). 3696 + modify _nc_freewin() to reset globals curscr/newscr/stdscr when 3697 freeing the corresponding WINDOW (Purify). 3698 + modify delwin() to return ERR if the window to be deleted has 3699 subwindows, needed as a side-effect of resizeterm() (Purify). Tested 3700 and found that SVr4 curses behaves this way. 3701 + implement logic for _nc_freeall(), bringing stub up to date. 3702 3703961215 3704 + modify wbkgd() so that it doesn't set nulls in the rendered text, 3705 even if its argument doesn't specify a character (fixes test case by 3706 Juergen Pfeifer for bug-report). 3707 + set window-attributes in wbkgd(), to simplify comparison against 3708 Solaris curses, which does this. 3709 3710961214 - snapshot 3711 + replace most constants in ncurses 'o' test by expressions, making it 3712 work with wider range of screen sizes. 3713 + add options to ncurses.c to specify 'e' test softkey format, and the 3714 number of header/footer lines to rip-off. 3715 + add ^R (repaint after resize), ^L (refresh) commands to ncurses 'p' 3716 test. 3717 + add shell-out (!) command to ncurses 'p' test to allow test of 3718 resize between endwin/refresh. 3719 + correct line-wrap case in mvcur() by emitting carriage return, 3720 overlooked in 960928, but needed due to SVr4 compatibility changes to 3721 terminal modes in 960907. 3722 + correct logic in wresize that causes new lines to be allocated, 3723 broken for the special case of increasing rows only in 960907's fix 3724 for subwindows. 3725 + modify configure script to generate $(LDFLAGS) with -L and -l options 3726 in preference to explicit library filenames. (NOTE: this may 3727 require further amending, since I vaguely recall a dynamic loader 3728 that did not work properly without the full names, but it should be 3729 handled as an exception to the rule, since some linkers do bulk 3730 inclusion of libraries when given the full name - T.Dickey). 3731 + modify configure script to allow user-supplied $CFLAGS to set the 3732 debug-option in all libraries (requested by lots of people). 3733 + use return consistently from main(), rather than exit (reported by 3734 Florian La Roche). 3735 + add --enable-getcap-cache option to configure, normally disabled 3736 (requested by Florian La Roche). 3737 + make configure test for gettimeofday() and possibly -lbsd more 3738 efficient (requested by Florian La Roche florian@knorke.saar.de) 3739 + minor adjustments to Ada95 binding (patches by Juergen Pfeifer) 3740 + correct attributes after emitting orig_pair in lib_vidattr.c (patch 3741 by lav@yars.free.net). 3742 3743961208 3744 + corrected README wrt Ada95 (Juergen Pfeifer) 3745 3746961207 - snapshot 3747 + integrate resizeterm() into doupdate(), so that if screen size 3748 changes between endwin/refresh, ncurses will resize windows to fit 3749 (this needs additional testing with pads and softkeys). 3750 + add, for memory-leak testing, _nc_freeall() entrypoint to free all 3751 data used in ncurses library. 3752 + initialize _nc_idcok, _nc_idlok statically to resolve discrepancy 3753 between initscr() and newwin() initialization (reported by 3754 lav@yars.free.net). 3755 + test built VERSION=4.0, SHARED_ABI=4 with Linux ld.so.1.8.5 3756 (set beta versions to those values -- NOTE that subsequent pre-4.0 3757 beta may not be interchangeable). 3758 + modify configure script to work with autoconf 2.12 3759 3760961130 1.9.9g release 3761 + add copyright notices to configuration scripts (written by Thomas 3762 Dickey). 3763 3764961127 3765 > patch by Juergen Pfeifer (mostly for panel): 3766 + cosmetic improvement for a few routines in the ncurses core library 3767 to avoid warning messages. 3768 + the panel overlap detection was broken 3769 + the panel_window() function was not fool-proof. 3770 + Some inlining... 3771 + Cosmetic changes (also to avoid warning messages when compiling with 3772 -DTRACE). 3773 3774961126 3775 > patch by Juergen Pfeifer: 3776 + eliminates warning messages for the compile of libform. 3777 + inserts Per Foreby's new field type TYPE_IPV4 into libform. 3778 + Updates man page and the Ada95 binding to reflect this. 3779 + Improves inlining in libmenu and libform. 3780 3781961120 3782 + improve the use of the "const" qualifier in the 3783 panel library (Juergen Pfeifer) 3784 + change set_panel_userptr() and panel_userptr() to use void* 3785 (Juergen Pfeifer) 3786 3787961119 3788 + change ABI to 3.4 3789 + package with 961119 version of Ada95 binding (fixes for gnat-3.07). 3790 (Juergen Pfeifer) 3791 + correct initialization of the stdscr pseudo panel in panel library 3792 (Juergen Pfeifer) 3793 + use MODULE_ID (rcs keywords) in forms and menus libraries (Juergen 3794 Pfeifer). 3795 > patch #324 by Eric. 3796 + typo in curs_termcap man page (reported by Hendrik Reichel 3797 <106065.2344@compuserve.com>) 3798 + change default xterm entry to xterm-r6. 3799 + add entry for color_xterm 3800 3801961116 - snapshot 3802 + lint found several functions that had only #define implementations 3803 (e.g., attr_off), modified curses.h.in to generate them as per XSI 3804 Curses requirement that every macro be available as a function. 3805 + add check in infocmp.c to guard against string compare of 3806 CANCELLED_STRING values. 3807 + modify firework.c, rain.c to hide cursor while running. 3808 + correct missing va_end in lib_tparm.c 3809 + modify hanoi.c to work on non-color terminals, and to use timing 3810 delays when in autoplay mode. 3811 + correct 'echochar()' to refresh immediately (reported by Adrian 3812 Garside 94ajg2@eng.cam.ac.uk) 3813 > patch #322 by eric: 3814 + reorganize terminfo.src entries for xterm. 3815 3816961109 - snapshot 3817 + corrected error in line-breakout logic (lib_doupdate.c) 3818 + modified newdemo to use wgetch(win) rather than getch() to eliminate 3819 a spurious clear-screen. 3820 + corrected ifdef's for 'poll()' configuration. 3821 + added modules to ncurses, form, menu for Ada95 binding (Juergen 3822 Pfeifer). 3823 + modify set_field_buffer() to allow assignment of string longer than 3824 the initial buffer length, and to return the complete string rather 3825 than only the initial size (Juergen Pfeifer and Per Foreby 3826 <perf@efd.lth.se>). 3827 3828961102 - snapshot 3829 + configure for 'poll()' in preference to 'select()', since older 3830 systems are more likely to have a broken 'select()'. 3831 + modified render_char() to avoid OR'ing colors. 3832 + minor fixes to testcurs.c, newdemo.c test programs: ifdef'd out the 3833 resize test, use wbkgd and corrected box() parameters. 3834 + make flushinp() test work in ncurses.c by using napms() instead of 3835 sleep(). 3836 + undo Eric's changes to xterm-x11r6 (it no longer matched the X11R6.1 3837 distribution, as stated) 3838 + terminfo 9.13.18 (resync by Eric) 3839 + check for getenv("HOME") returning null (Eric). 3840 + change buffer used to decode xterm-mouse commands to unsigned to 3841 handle displays wider than 128 chars (Juergen Pfeifer). 3842 + correct typo curs_outopts.3x (Juergen Pfeifer). 3843 + correct limit-checking in wenclose() (Juergen Pfeifer). 3844 + correction to Peter Wemm's newwin change (Thomas Fehr <fehr@suse.de>). 3845 + corrections to logic that combines colors and attributes; they must 3846 not be OR'd (Juergen Pfeifer, extending from report/patch by Rick 3847 Marshall). 3848 3849961026 - snapshot 3850 + reset flags in 'getwin()' that might cause refresh to attempt to 3851 manipulate the non-existent parent of a window that is read from a 3852 file (lib_screen.c). 3853 + restructure _nc_timed_wait() to log more information, and to try to 3854 recover from badly-behaved 'select()' calls (still testing this). 3855 + move define for GOOD_SELECT into configure script. 3856 + corrected extra '\' character inserted before ',' in comp_scan.c 3857 + corrected expansion of %-format characters in dump_entry.c; some were 3858 rendered as octal constants. 3859 + modify dump_entry.c to make terminfo output more readable and like 3860 SVr4, by using "\s" for spaces (leading/trailing only), "\," for 3861 comma, "\^" and "\:" as well. 3862 + corrected some memory leaks in ncurses.c, and a minor logic error 3863 in the top-level command-parser. 3864 + correction for label format 4 (PC style with info line), a 3865 slk_clear(), slk_restore() sequence didn't redraw the info line 3866 (Juergen Pfeifer). 3867 + modified the slk window (if simulated) to inherit the background and 3868 default character attributes from stdscr (Juergen Pfeifer). 3869 + corrected limit-check in set_top_row (Juergen Pfeifer). 3870 3871961019 - snapshot 3872 + correct loop-limit in wnoutrefresh(), bug exposed during pipe-testing 3873 had '.lastchar' entry one beyond '._maxx'. 3874 + modify ncurses test-program to work with data piped to it. 3875 + corrected pathname computation in run_tic.sh, removing extra "../" 3876 (reported by Tim Mooney). 3877 + modified configure script to use previous install's location for 3878 curses.h 3879 + added NetBSD and FreeBSD to platforms that use --prefix=/usr as 3880 a default. 3881 3882961013 3883 + revised xterm terminfo descriptions to reflect the several versions 3884 that are available. 3885 + corrected a pointer reference in dump_entry.c that didn't test if 3886 the pointer was -1. 3887 3888961005 - snapshot 3889 + correct _nc_mvcur_scrolln for terminals w/o scrolling region. 3890 + add -x option to hashtest to control whether it allows writes to the 3891 lower-right corner. 3892 + ifdef'd (NCURSES_TEST) the logic for _nc_optimize_enable to make it 3893 simpler to construct tests (for double-check of _nc_hash_map tests). 3894 + correct ifdef's for c++ in curses.h 3895 + change default xterm type to xterm-x11r6. 3896 + correct quoting in configure that made man-pages installed with 3897 $datadir instead of actual terminfo path. 3898 + correct whitespace in include/Caps, which caused kf11, clr_eol and 3899 clr_end to be omitted from terminfo.5 3900 + fix memory leaks in delscreen() (adapted from Alexander Lukyanov). 3901 + improve appearance of marker in multi-selection menu (Juergen 3902 Pfeifer) 3903 + fix behaviour for forms with all fields inactive (Juergen 3904 Pfeifer) 3905 + document 'field_index()' (Juergen Pfeifer) 3906 > patch #321 by eric: 3907 + add some more XENIX keycap translations to include/Caps. 3908 + modify newwin to set initial state of each line to 'touched' 3909 (from patch by Peter Wemm <peter@spinner.dialix.com>) 3910 + in SET_TTY, replace TCSANOW with TCSADRAIN (Alexander Lukyanov). 3911 3912960928 - snapshot 3913 + ifdef'd out _nc_hash_map (still slower) 3914 + add graphic characters to vt52 description. 3915 + use PutAttrChar in ClrToEOL to ensure proper background, position. 3916 + simplify/correct logic in 'mvcur()' that does wrapping; it was 3917 updating the position w/o actually moving the cursor, which broke 3918 relative moves. 3919 + ensure that 'doupdate()' sets the .oldindex values back to a sane 3920 state; this was causing a spurious refresh in ncurses 'r'. 3921 + add logic to configure (from vile) to guard against builders who 3922 don't remove config.cache & config.status when doing new builds. 3923 + corrected logic for 'repeat_char' in EmitRange (from #317), which 3924 did not follow the 2-parameter scheme specified in XSI. 3925 + corrected logic of wrefresh, wnoutrefresh broken in #319, making 3926 clearok work properly (from report by Michael Elkins). 3927 + corrected problem with endwin introduced by #314 (removing the 3928 scrolling-region reset) that broke ncurses.c tests. 3929 + corrected order of args in AC_CHECK_LIB (from report by Ami Fischman 3930 <fischman@math.ucla.edu>). 3931 + corrected formatting of terminfo.5 tables (Juergen Ehling) 3932 > patch 320 by eric: 3933 + change ABI to 3.3 3934 + emit a carriage-return in 'endwin()' to workaround a kernel bug in 3935 BSDI. (requested by Mike Karels <karels@redrock.bsdi.com>) 3936 + reverse the default o configure --enable-termcap (consensus). 3937 > patch 319 by eric: 3938 + modified logic for clearok and related functions (from report by 3939 Michael Elkins) - untested 3940 > patch 318 by eric: 3941 + correction to #317. 3942 > patch 317 by eric: 3943 + re-add _nc_hash_map 3944 + modify EmitRange to maintain position as per original design. 3945 + add hashtest.c, program to time the hashmap optimization. 3946 > patch 316 by eric: 3947 + add logic to deal with magic-cookie (how was this tested?) 3948 (lib_doupdate.c). 3949 + add ncurses.c driver for magic-cookie, some fixes to ncurses.c 3950 > patch 315 by eric: 3951 + merged A. Lukyanov's patch to use ech and rep - untested 3952 (lib_doupdate.c). 3953 + modified handling of interrupted system calls - untested 3954 (lib_getch.c, lib_twait.c). 3955 + new function _nc_mvcur_resume() 3956 + fix return value for 'overlay()', 'overwrite()' 3957 3958960914 - snapshot 3959 + implement subwindow-logic in wresize, minor fixes to ncurses 'g' 3960 test. 3961 + corrected bracketing of fallback.c (reported/suggested fix by Juergen 3962 Ehling <eh@eclipse.aball.de>). 3963 + update xterm-color to reflect XFree86 3.1.3G release. 3964 + correct broken dtterm description from #314 patch (e.g., spurious 3965 newline. The 'pairs' change might work, but no one's tested it 3966 either ;-) 3967 + clarify the documentation for the builtin form fieldtypes (Juergen 3968 Pfeifer) 3969 > patch 314 by eric: 3970 + Enhancement suggested by A. Lukyanov -- reset scroll region on 3971 startup rather than at wrapup time. 3972 + Fix suggested by A. Lukyanov, make storage of palette tables 3973 and their size counts per-screen for multi-terminal applications. 3974 + Improved error reporting for infotocap translation errors. 3975 + Update terminfo.src to 9.13.14. 3976 3977960907 - snapshot 3978 + rewrote wgetstr to make it erase control chars and also fix bogus use 3979 of _nc_outstr which caused the display to not wrap properly (display 3980 problem reported by John M. Flinchbaugh <glynis@netrax.net>) 3981 + modify ncurses 'f' test to accommodate terminal responses to C1 codes 3982 (and split up this screen to accommodate non-ANSI terminals). 3983 + test enter_insert_mode and exit_insert_mode in has_ic(). 3984 + removed bogus logic in mvcur that assumes nl/nonl set output modes 3985 (XSI says they are input modes; SVr4 implements this). 3986 + added macros SET_TTY, GET_TTY to term.h 3987 + correct getstr() logic that altered terminal modes w/o restoring. 3988 + disable ICRNL, etc., during initialization to match SVr4, removing 3989 the corresponding logic from raw, cbreak, etc. 3990 + disable ONLCR during initialization, to match SVr4 (this is needed 3991 for cursor optimization when the cursor-down is a newline). 3992 + replaced Eric's imitation of wresize with my original (his didn't 3993 work). 3994 3995960831 - snapshot 3996 + memory leaks (Alexander V. Lukyanov). 3997 + modified pnoutrefresh() to be more tolerant of too-large screen 3998 size (reported by Michael Elkins). 3999 + correct handling of terminfo files with no strings (Philippe De 4000 Muyter) 4001 + correct "tic -s" to take into account -I, -C options. 4002 + modify ncurses 'f' test to not print codes 80 through 9F, since they 4003 are considered control codes by ANSI terminals. 4004 4005960824 - snapshot 4006 + correct speed variable-type in 'tgetent()' (reported by Peter Wemm) 4007 + make "--enable-getcap" configuration-option work (reported by 4008 Peter Wemm <peter@spinner.DIALix.COM>) 4009 4010960820 4011 + correct err in 960817 that changed return-value of tigetflag() 4012 (reported by Alexander V. Lukyanov). 4013 + modify infocmp to use library default search-path for terminfo 4014 directory (Alexander V. Lukyanov). 4015 4016960817 - snapshot 4017 + corrected an err in mvcur that broke resizing-behavior. 4018 + correct fall-thru behavior of _nc_read_entry(), which was not finding 4019 descriptions that existed in directories past the first one searched 4020 (reported by Alexander V. Lukyanov) 4021 + corrected typo in dtterm description. 4022 > patch 313 by eric: 4023 + add dtterm description 4024 + clarify ncurses 'i' test (drop vscanf subtest) 4025 4026960810 - snapshot 4027 + correct nl()/nonl() to work as per SVr4 & XSI. 4028 + minor fixes to ncurses.c (use 'noraw()', mvscanw return-code) 4029 + refine configure-test for -g option (Tim Mooney). 4030 + correct interaction between O_BLANK and NEW_LINE request in form 4031 library (Juergen Pfeifer) 4032 4033960804 4034 + revised fix to tparm; previous fix reversed parameter order. 4035 > patch 312 by eric: 4036 correct terminfo.src corrupted by #310 4037 > patch 311 by eric: 4038 + fix idlok() and idcok() and the default of the idlok switch. 4039 4040960803 - snapshot 4041 + corrected tparm to handle capability strings without explicit pop 4042 (reported by William P Setzer) 4043 + add fallback def for GCC_NORETURN, GCC_UNUSED for termcap users 4044 (reported by Tim Mooney). 4045 > patch 310 by eric: 4046 + documentation and prototyping errors for has_color, immedok and idcok 4047 (reported by William P Setzer <wsetzer@pams.ncsu.edu>) 4048 + updated qnx terminfo entry (by Michael Hunter) 4049 4050960730 4051 + eliminate quoted includes in ncurses subdirectory, ensure config.h 4052 is included first. 4053 + newterm initializes terminal settings the same as initscr (reported 4054 by Tim Mooney). 4055 4056960727 - snapshot 4057 + call cbreak() in initscr(), as per XSI & SVr4. 4058 + turn off hardware echo in initscr() as per XSI & SVr4 4059 > patch 309 by eric: 4060 + terminfo changes (9.3.10), from BRL 4061 + add more checks to terminfo parser. 4062 + add more symbols to infocmp. 4063 4064960720 - snapshot 4065 + save previous-attribute in lib_vidattr.c if SP is null (reported by 4066 Ju"rgen Fluk <louis@dachau.marco.de>) 4067 + corrected calls on _nc_render so that background character is set 4068 as per XSI. 4069 + corrected wbkgdset macro (XSI allows background character to be null), 4070 and tests that use it. 4071 + more corrections to terminfo (xterm & rxvt) 4072 + undid change to mcprint prototype (cannot use size_t in curses.h 4073 because not all systems declare it in the headers that we can safely 4074 include therein). 4075 + move the ifdefs for errno into curses.priv.h 4076 > patch 308 by eric: 4077 + terminfo changes (9.3.8) 4078 + modified logic of error-reporting in terminfo parser 4079 4080960713 - snapshot 4081 + always check for <sys/bsdtypes.h> since ISC needs it to declare 4082 fd_set (Juergen Pfeifer) 4083 + install shared-libraries on NetBSD/FreeBSD with ABI-version (reported 4084 by several people: Juergen Pfeifer, Mike Long) 4085 + add LOCAL_LDFLAGS2 symbol (Juergen Pfeifer) 4086 + corrected prototype for delay_output() -- bump ABI to 3.2 4087 + terminfo patches #306/307 from Eric. 4088 + moved logic that filters out rmul and rmso from setupterm to newterm 4089 where it is less likely to interfere with termcap applications. 4090 4091960707 4092 + rollback Eric's #305 change to terminfo.src (it breaks existing 4093 applications, e.g., 'less 290'). 4094 + correct path of edit_man.sh, and fix typo that made all man-pages 4095 preformatted. 4096 + restore man/menu_requestname.3x omitted in Zeyd's resync (oops). 4097 + auto-configure the GCC_PRINTFLIKE/GCC_SCANFLIKE macros (reported by 4098 Philippe De Muyter). 4099 4100960706 - snapshot 4101 + make lib_vidattr.c more readable using macros. 4102 + filter out rmul, rmso that conflict with sgr0 when reading terminal 4103 descriptions. 4104 + added sanity-checking of various paired string attributes (Eric). 4105 + work around autoconf bug, force $INSTALL to absolute path. 4106 (reported by Zeyd). 4107 + modify man-page install for BSDI to install preformatted .0 files 4108 (reported by David MacKenzie). 4109 + add/use gcc __attribute__ for printf and scanf in curses.h 4110 + added SGR attributes test-case to ncurses 4111 + revised ncurses 't' logic to show trace-disable effect in the menu. 4112 + use getopt in ncurses program to process -s and -t options. 4113 + make ncurses 'p' legend toggle with '?' 4114 + disable scrollok during the ncurses 'p' test; if it is enabled the 4115 stdscr will scroll when putting the box-corners in the lower-right 4116 of the screen. 4117 4118960629 - snapshot 4119 + check return code of _nc_mvcur_scrolln() in _nc_scroll_optimize() for 4120 terminals with no scrolling-support (reported by Nikolay Shadrin 4121 <queen@qh.mirea.ac.ru>) 4122 + added ^S scrollok-toggle to ncurses 'g' test. 4123 + added ^T trace-toggle to ncurses tests. 4124 + modified ncurses test program to use ^Q or ESC consistently for 4125 terminating tests (rather than ^D), and to use control keys rather 4126 than function keys in 'g' test. 4127 + corrected misplaced wclrtoeol calls in addch to accommodate wrapping 4128 (reported by Philippe De Muyter). 4129 + modify lib_doupdate.c to use effective costs to tradeoff between 4130 delete-character/insert-character vs normal updating (reported by 4131 David MacKenzie). 4132 + compute effective costs for screen update operations (e.g., clr_eos, 4133 delete_character). 4134 + corrected error in knight.c exposed by wrap fixes in 960622; the 4135 msgwin needed scrollok set. 4136 + corrected last change to IDcTransformLine logic to avoid conflict 4137 between PutRange and InsStr 4138 + modified run_tic.sh to not use /usr/tmp (reported by David MacKenzie), 4139 and further revised it and aclocal.m4 to use $TMPDIR if set. 4140 + corrected off-by-one in RoomFor call in read_entry.c 4141 4142960622 - snapshot 4143 + modified logic that wraps cursor in addch to follow the XSI spec, 4144 (implemented in SVr4) which states that the cursor position is 4145 updated when wrapping. Renamed _NEED_WRAP to _WRAPPED to reflect the 4146 actual semantics. 4147 + added -s option to tic, to provide better diagnostics in run_tic.sh 4148 + improved error-recovery for tabset install. 4149 + change ABI to 3.1 (dropped tparam, corrected getbkgd(), added 4150 _yoffset to WINDOW). 4151 + modified initialization of SP->_ofp so that init_acs() is called with 4152 the "right" file pointer (reported by Rick Marshall <rjm@nlc.net.au> 4153 + documentation fixes (Juergen Pfeifer). 4154 + corrected, using new SCREEN and WINDOW members, the behavior of 4155 ncurses if one uses ripoffline() to remove a line from the top of the 4156 screen (Juergen Pfeifer). 4157 + modified autoconf scripts to prepare for Ada95 (GNAT) binding to 4158 ncurses (Juergen Pfeifer). 4159 + incorrect buffer-size in _nc_read_entry, reported by Eric Raymond. 4160 4161960617 4162 + corrected two logic errors in read_entry.c, write_entry.c (called by 4163 tic, the write/read of terminfo entries used inconsistent rules for 4164 locating the entries; the $TERMINFO_DIRS code would find only the 4165 first entry in a list). 4166 + refined pathname computation in run_tic.sh and shlib. 4167 + corrected initialization of $IP in misc/run_tic.sh 4168 4169960615 - snapshot 4170 + ifdef'd out _nc_hash_map() call because it does not improve speed. 4171 + display version of gcc if configure script identifies it. 4172 + modify configure script to use /usr as Linux's default prefix. 4173 + modify run_tic.sh to use shlib script, fixes some problems installing 4174 with a shared-library configuration. 4175 + adjusted configure script so that it doesn't run tests with the 4176 warnings turned on, which makes config.log hard to read. 4177 + added 'lint' rule to top-level Makefile. 4178 + added configure option '--with-install-prefix' for use by system 4179 builders to install into staging locations (from request by 4180 charles@comm.polymtl.ca) 4181 + corrected autoconfigure for Debian man program; it's not installed 4182 as "man_db". 4183 + set noecho in 'worm'; it was ifdef'd for debug only 4184 + updated test/configure.in for timing-display in ncurses 'p' test 4185 + corrected misspelled 'getbkgd()'. 4186 + corrected wbkgdset to work like observed syvr4 (sets A_CHARTEXT part 4187 to blank if no character given, copies attributes to window's 4188 attributes). 4189 + modified lib_doupdate.c to use lower-level SP's current_attr state 4190 instead of curscr's state, since it is redundant. 4191 + correction to IDcTransformLine logic which controls where InsStr is 4192 invoked (refined by lav@yars.free.net). 4193 > patches 303 by eric 4194 + conditionally include Chris Torek's hash function _nc_hash_map(). 4195 + better fix for nvi refresh-bug (Rick Marshall) 4196 + fix for bug in handling of interrupted keystroke waits, 4197 (Werner Fleck). 4198 4199960601 - snapshot 4200 + auto-configure man-page compression-format and renames for Debian. 4201 + corrected several typos in curses.h.in (i.e., the mvXXXX macros). 4202 + re-order curses.priv.h for lint. 4203 + added rules for lintlib, lint 4204 + corrected ifdef for BROKEN_LINKER in MKnames.awk.in 4205 + corrected missing INSTALL_DATA in misc/Makefile.in 4206 + flush output when changing cursor-visibility (Rick Marshall) 4207 + fix a minor bug in the _nc_ripoff() routine and improve error checking 4208 when creating the label window (Juergen Pfeifer). 4209 + enhancement to the control over the new PC-style soft key format. 4210 allow caller now to select whether or not one wants to have 4211 the index-line; see curs_slk.3x for documentation (Juergen Pfeifer). 4212 + typos, don't use inline with -g (Philippe De Muyter) 4213 + fixes for menus & wattr-, slk-functions (Juergen Pfeifer) 4214 4215960526 - snapshot 4216 + removed --with-ticdir option altogether, maintain compatibility with 4217 existing applications via symbolic link in run_tic.sh 4218 + patch for termio.h, signal (Philippe De Muyter) 4219 + auto-configure gcc warning options rather than infer from version. 4220 + auto-configure __attribute__ for different gcc versions. 4221 + corrected special use of clearok() in hardscroll.c by resetting flag 4222 in wrefresh(). 4223 + include stdlib.h before defs for EXIT_SUCCESS, for OSF/1. 4224 + include sys/types.h in case stdlib.h does not declare size_t. 4225 + fixes for makefile (Tim Mooney) 4226 + fixes for menus & forms (Juergen.Pfeifer@T-Online.de) 4227 4228960518 - snapshot 4229 + revised ncurses.c panner test, let pad abut all 4 sides of screen. 4230 + refined case in lib_doupdate.c for ClrToEOL(). 4231 + corrected prior change for PutRange (Alexander V. Lukyanov: 4232 lav@yars.free.net). 4233 + autoconf mods (Tim Mooney: mooney@dogbert.cc.ndsu.NoDak.edu). 4234 + locale fix for forms (Philippe De Muyter: phdemuyt@ulb.ac.be) 4235 + renamed "--with-datadir" option to "--with-ticdir" to avoid 4236 confusion, and made this check for the /usr/lib/terminfo pre-existing 4237 directory. 4238 > patches 299-301 by eric: 4239 + added hashmap.c 4240 + mods to tracing, especially for ACS chars. 4241 + corrected off-by-one in IDCtransform. 4242 + corrected intermittent mouse bug by using return-value from read(). 4243 + mods to parse_entry.c, for smarter defaults. 4244 4245960512 4246 + use getopt in 'tic'; added -L option and modified -e option to allow 4247 list from a file. 4248 4249960511 4250 + don't use fixed buffer-size in tparm(). 4251 + modified tic to create terminfo directory if it doesn't exist. 4252 + added -T options to tic and infocmp (for testing/analysis) 4253 + refined the length criteria for termcap and terminfo 4254 + optimize lib_doupdate with memcpy, PutRange 4255 > patches 297, 298 by eric 4256 + implement TERMINFO_DIRS, and -o option of tic 4257 + added TRACE_IEVENT 4258 + removed boolean version of 'getm' 4259 + added lib_print.c (for Rick Marshall) 4260 + added has_key() 4261 + added 't' to ncurses.c test. 4262 + moved delay_output() to lib_tputs.c 4263 + removed tparam(). 4264 + misc cursor & optimization fixes. 4265 4266960504 - snapshot 4267 + modified ncurses 'p' test to allow full-screen range for panner size. 4268 + fixes for locale (phdm@labauto1.ulb.ac.be) 4269 + don't use fixed buffer-size in fmt_entry(). 4270 + added usage-message to 'infocmp'. 4271 + modified install.includes rules to prepend subdirectory-name to 4272 "#include" if needed. 4273 4274960430 4275 + protect wrefresh, wnoutrefresh from invocation with pad argument. 4276 + corrected default CCFLAGS in test/Makefile. 4277 4278960428 - snapshot 4279 + implemented logic to support terminals with background color erase 4280 (e.g., rxvt and the newer color xterm). 4281 + improved screen update logic (off-by-one logic error; use clr_eos if 4282 possible) 4283 4284960426 - snapshot 4285 + change ncurses 'a' test to run in raw mode. 4286 + make TIOCGWINSZ configure test less stringent, in case user 4287 configures via terminal that cannot get screen size. 4288 > patches 295, 296 by eric: 4289 + new "-e" option of tic. 4290 + fix for "infocmp -e". 4291 + restore working-directory in read_termcap.c 4292 + split lib_kernel.c, lib_setup.c and names.c in order to reduce 4293 overhead for programs that use only termcap features. 4294 4295960418 - snapshot 4296 + use autoconf 2.9 4297 + fix for AIX 3.2.5 (must define _POSIX_SOURCE to get termios struct 4298 definitions via <termios.h>, modified macros in lib_raw.c to avoid 4299 K&R-style substitution) 4300 > patches 293, 294 by eric: 4301 + mods to wgetch() in cooked mode 4302 + corrected askuser() logic in tset 4303 + correct interaction of endwin() with mouse processing 4304 + added trace support for TTY flags 4305 4306960406 4307 + fixes for NeXT, ISC and HPUX auto-configure 4308 + autogenerate development header-dependencies (config.h, *.priv.h) 4309 + corrected single-column formatting of "use=" (e.g., in tic) 4310 + modify tic to read full terminfo-names 4311 + corrected divide-by-zero that caused hang (or worse) when redirecting output 4312 + modify tic to generate directories only as-needed (and corrected 4313 instance of use of data from function that had already returned). 4314 4315### ncurses-1.9.8a -> 1.9.9e 4316 4317* fixed broken wsyncup()/wysncdown(), as a result wnoutrefresh() now has 4318 copy-changed-lines behavior. 4319* added and documented wresize() function. 4320* more fixes to LOWER-RIGHT corner handling. 4321* changed the line-breakout optimization code to allow some lines to be 4322 emitted before the first check. 4323* added option for tic to use symbolic instead of hard links (for AFS) 4324* fix to restore auto-wrap mode. 4325* trace level can be controlled by environment variable. 4326* better handling of NULs in terminal descriptions. 4327* improved compatibility with observed SVR4 behavior. 4328* the refresh behavior of over-lapping windows is now more efficient and 4329 behaves like SVR4. 4330* use autoconf 2.7, which results in a working setup for SCO 5.0. 4331* support for ESCDELAY. 4332* small fixes for menu/form code. 4333* the test directory has its own configure. 4334* fixes to pads when optimizing scrolling. 4335* fixed several off-by-one bugs. 4336* fixes for termcap->terminfo translation; less restrictions more correct 4337 behavior. 4338 4339### ncurses-1.9.7 -> 1.9.8a 4340 4341* teach infocmp -i to recognize ECMA highlight sequences 4342* infocmp now dumps all SVr4 termcaps (not just the SVr4 ones) on -C 4343* support infocmp -RBSD. 4344* satisfy XSI Curses requirement that every macro be available as a function. 4345* This represents the last big change to the public interface of ncurses. The 4346 ABI_VERSION has now been set at 3.0 and should stay there barring any great 4347 catastrophies or acts of God. 4348* The C++ has been cleaned up in reaction to the changes to satisfy XSI's 4349 requirements. 4350* libncurses now gets linked to libcurses to help seamless emulation 4351 (replacement) of a vendor's curses. --disable-overwrite turns this behavior 4352 off. 4353 4354### ncurses-1.9.6 -> 1.9.7 4355 4356* corrected return values of setupterm() 4357* Fixed some bugs in tput (it does padding now) 4358* fixed a bug in tic that made it do the wrong thing on entries with more than 4359 one `use' capability. 4360* corrected the screen-size calculation at startup time to alter the 4361 numeric capabilities as per SVr4, not just LINES and COLS. 4362* toe(1) introduced; does what infocmp -T used to. 4363* tic(1) can now translate AIX box1 and font[0123] capabilities. 4364* tic uses much less core, the dotic.sh kluge can go away now. 4365* fix read_entry() and write_entry() to pass through cancelled capabilities OK. 4366* Add $HOME/.terminfo as source/target directory for terminfo entries. 4367* termcap compilation now automatically dumps an entry to $HOME/.terminfo. 4368* added -h option to toe(1). 4369* added -R option to tic(1) and infocmp(1). 4370* added fallback-entry-list feature. 4371* added -i option to infocmp(1). 4372* do a better job at detecting if we're on SCO. 4373 4374### ncurses-1.9.5 -> 1.9.6 4375 4376* handling of TERMCAP environment variables now works correctly. 4377* various changes to shorten termcap translations to less that 1024 chars. 4378* tset(1) added 4379* mouse support for xterm. 4380* most data tables are now const and accordingly live in shareable text space. 4381* Obey the XPG4/SVr4 practice that echo() is initally off. 4382* tic is much better at translating XENIX and AIX termcap entries now. 4383* tic can interpret ko capabilities now. 4384* integrated Juergen Pfeifer's forms library. 4385* taught write_entry() how not to write more than it needs to; this change 4386 reduces the size of the terminfo tree by a full 26%! 4387* infocmp -T option added. 4388* better warnings about historical tic quirks from tic. 4389 4390### ncurses 1.9.4 -> 1.9.5 4391 4392* menus library is now included with documentation. 4393* lib_mvcur has been carefully profiled and tuned. 4394* Fixed a ^Z-handling bug that was tanking lynx(1). 4395* HJ Lu's patches for ELF shared libraries under Linux 4396* terminfo.src 9.8.2 4397* tweaks for compiling in seperate directories. 4398* Thomas Dickey's patches to support NeXT's brain-dead linker 4399* Eric Raymond's patches to fix problems with long termcap entries. 4400* more support for shared libraries under SunOS and IRIX. 4401 4402### ncurses 1.9.3 -> 1.9.4 4403 4404* fixed an undefined-order-of-evaluation bug in lib_acs.c 4405* systematically gave non-API public functions and data an _nc_ prefix. 4406* integrated Juergen Pfeifer's menu code into the distribution. 4407* totally rewrote the knight test game's interface 4408 4409### ncurses 1.9.2c -> 1.9.3 4410 4411* fixed the TERMCAP_FILE Support. 4412* fixed off-by-one errors in scrolling code 4413* added tracemunch to the test tools 4414* took steps to cut the running time of make install.data 4415 4416### ncurses 1.9.2c -> 1.9.2d 4417 4418* revised 'configure' script to produce libraries for normal, debug, 4419 profile and shared object models. 4420 4421### ncurses 1.9.1 -> 1.9.2 4422 4423* use 'autoconf' to implement 'configure' script. 4424* panels support added 4425* tic now checks for excessively long termcap entries when doing translation 4426* first cut at eliminating namespace pollution. 4427 4428### ncurses 1.8.9 -> 1.9 4429 4430* cleanup gcc warnings for the following: use size_t where 'int' is not 4431 appropriate, fixed some shadowed variables, change attr_t to compatible with 4432 chtype, use attr_t in some places where it was confused with 'int'. 4433* use chtype/attr_t casts as appropriate to ensure portability of masking 4434 operations. 4435* added-back waddchnstr() to lib_addstr.c (it had been deleted). 4436* supplied missing prototypes in curses.h 4437* include <termcap.h> in lib_termcap.c to ensure that the prototypes 4438 are consistent (they weren't). 4439* corrected prototype of tputs in <termcap.h> 4440* rewrote varargs parsing in lib_tparm.c (to avoid referencing memory 4441 that may be out of bounds on the stack) -- Purify found this. 4442* ensure that TRACE is defined in lib_trace.c (to solve prototype 4443 warnings from gcc). 4444* corrected scrolling-region size in 'mvcur_wrap()' 4445* more spelling fixes 4446* use 'calloc()' to allocate WINDOW struct in lib_newwin.c (Purify). 4447* set default value for SP->_ofp in lib_set_term.c (otherwise SunOS dumps 4448 core in init_acs()). 4449* include <errno.h> in write_entry.c (most "braindead" includes declare errno 4450 in that file). 4451 4452### ncurses 1.8.8 -> 1.8.9 4453 4454* compile (mostly) clean with gcc 2.5.8 -Wall -Wstrict-prototypes 4455 -Wmissing-prototypes -Wconversion and using __attribute__ to flush out 4456 non-portable use of "%x" for pointers, or for chtype data (which is declared 4457 as a long). 4458* modified doupdate to ensure that typahead was turned on before attempting 4459 select-call (otherwise, some implementations hang). 4460* added trace mask TRACE_FIFO, use this in lib_getch.c to allow finer 4461 resolution of traces. 4462* improved bounds checking on several critical functions. 4463* the data directory has been replaced by the new master terminfo file. 4464* -F file-comparison option added to infocmp. 4465* compatibility with XSI Curses is now documented in the man bages. 4466* wsyncup/wsyncdown functions are reliable now; subwindow code in general 4467 is much less flaky. 4468* capabilities ~msgr, tilde_glitch, insert_padding, generic_type, no_pad_char, 4469 memory_above, memory_below, and hard_copy are now used properly. 4470* cursor-movement optimization has been completely rewritten. 4471* vertical-movement optimization now uses hardware scrolling, il, dl. 4472 4473### ncurses 1.8.7 -> 1.8.8 4474* untic no longer exists, infocmp replaces it. 4475* tic can understand termcap now, especially if it is called captoinfo. 4476* The Linux Standard Console terminfo entry is called linux insead of console. 4477 It also uses the kernel's new method of changing charsets. 4478* initscr() will EXIT upon error (as the docs say) This wil mostly happen if 4479 you try to run on an undefined terminal. 4480* I can get things running on AIX but tic can't compile terminfo. I have to 4481 compile entries on another machine. Volunteers to hunt this bug are welcome. 4482* wbkgd() and wbkgdset() can be used to set a windows background to color. 4483 wclear()/werase() DO NOT use the current attribute to clear the screen. 4484 This is the way SVR4 curses works. PDCurses 2.1 is broken in this respect, 4485 though PDCurses 2.2 has been fixed. 4486* cleaned up the test/ directory. 4487* test/worm will segfault after quite a while. 4488* many spelling corrections courtesy of Thomas E. Dickey 4489 4490### ncurses 1.8.6 -> 1.8.7 4491* cleaned up programs in test/ directory. 4492* fixed wbkgdset() macro. 4493* modified getstr() to stop it from advancing cursor in noecho mode. 4494* modified linux terminfo entry to work with the latest kernel to get 4495 the correct alternate character set. 4496* also added a linux-mono entry for those running on monochrome screens. 4497* changed initscr() so that it behaves like the man page says it does. 4498 this fixes the problem with programs in test/ crashing with SIGSEV if 4499 a terminal is undefined. 4500* modified addch() to avoid using any term.h #define's 4501* removed duplicate tgoto() in lib_tparm.c 4502* modified dump_entry.c so that infocmp deals correctly with ',' in acsc 4503* modified delwin() to correctly handle deleting subwindows. 4504* fixed Makefile.dist to stop installing an empty curses.h 4505* fixed a couple of out-of-date notes in man pages. 4506 4507### ncurses 1.8.5 -> 1.8.6 4508* Implemented wbkgd(), bkgd(), bkgdset(), and wbkgdset(). 4509* The handling of attributes has been improved and now does not turn off color 4510 if other attributes are turned off. 4511* scrolling code is improved. Scrolling in subwindows is still broken. 4512* Fixes to several bugs that manifest them on platforms other than Linux. 4513* The default to meta now depends on the status of the terminal when ncurses 4514 is started. 4515* The interface to the tracing facility has changed. Instead of the pair of 4516 functions traceon() and traceoff(), there is just one function trace() which 4517 takes a trace mask argument. The trace masks, defined in curses.h, are 4518 as follows: 4519 4520 #define TRACE_DISABLE 0x00 /* turn off tracing */ 4521 #define TRACE_ORDINARY 0x01 /* ordinary trace mode */ 4522 #define TRACE_CHARPUT 0x02 /* also trace all character outputs */ 4523 #define TRACE_MAXIMUM 0x0f /* maximum trace level */ 4524 4525 More trace masks may be added, or these may be changed, in future releases. 4526* The pad code has been improved and the pad test code in test/ncurses.c has 4527 been improved. 4528* The prototype ansi entry has been changed to work with a wider variety 4529 of emulators. 4530* Fix to the prototype ansi entry that enables it to work with PC emulators 4531 that treat trailing ";m" in a highlight sequence as ";0m"; this doesn't 4532 break operation with any emulators. 4533* There are now working infocmp, captoinfo, tput, and tclear utilities. 4534* tic can now compile entries in termcap syntax. 4535* Core-dump bug in pnoutrefresh fixed. 4536* We now recognize and compile all the nonstandard capabilities in Ross 4537 Ridge's mytinfo package (rendering it obsolete). 4538* General cleanup and documentation improvements. 4539* Fixes and additions to the installation-documentation files. 4540* Take cursor to normal mode on endwin. 4541 4542### ncurses 1.8.4 -> 1.8.5 4543* serious bugs in updating screen which caused erratic non-display, 4544 fixed. 4545* fixed initialization for getch() related variable which cause 4546 unpredictable results. 4547* fixed another doupdate bug which only appeared if you have 4548 parm_char. 4549* implemented redrawln() and redrawwin(). 4550* implemented winsnstr() and related functions. 4551* cleaned up insertln() and deleteln() and implemented (w)insdeln(). 4552* changed Makefile.dist so that installation of man pages will 4553 take note of the terminfo directory. 4554* fixed Configure (removed the mysterious 'X'). 4555* Eric S. Raymond fixed the script.* files so that they work with 4556 stock awk. 4557 4558#### ncurses 1.8.3 -> 1.8.4 #### #### 4559* fixed bug in refreshing the screen after return from shell_mode. 4560 There are still problems but they don't manifest themselves on 4561 my machine (Linux 0.99.14f). 4562* added wgetnstr() and modified things accordingly. 4563* fixed the script.src script.test to work with awk not just gawk. 4564* Configure can now take an argument of the target system. 4565* added test/ncurses.c which replaces several other programs and 4566 performs more testing. 4567[Thanks to Eric S Raymond for the last 4] 4568* more fixes to lib_overlay.c and added test/over.c to illustrate 4569 how it works. 4570* fixed ungetch() to take int instead of ch. 4571* fixes to cure wgetch() if flushinp() is called. 4572 4573One note I forgot to mention in 1.8.3 is that tracing is off by 4574default starting in the version. If you want tracing output, put 4575traceon(); in your code and link with -ldcurses. 4576 4577#### ncurses 1.8.2 -> ncurses 1.8.3 #### #### 4578MAJOR CHANGES: 45791) The order of capabilities has been changed in order to achieve 4580binary compatibility with SVR4 terminfo database. This has the 4581unfortunate effect of breaking application currently linked with 4582ncurses. To ensure correct behavior, recompile all such programs. 4583Most programs using color or newer capabilities will break, others 4584will probably continue to work ok. 4585 45862) Pavel Curtis has renounced his copyright to the public domain. 4587This means that his original sources (posted to comp.sources.unix, 4588volume 1) are now in the public domain. The current sources are 4589NOT in the public domain, they are copyrighted by me. I'm 4590entertaining ideas on what the new terms ncurses is released under. 4591 45923) Eric S. Raymond has supplied a complete set of man pages for 4593ncurses in ?roff format. They will eventually replace most of the 4594current docs. Both sets are included in this release. 4595 4596Other changes and notes from 1.8.2 include: 4597* SIGSEGV during scrolling no longer occurs. 4598* Other problems with scrolling and use of idl have been corrected. 4599* lib_getch.c has been re-written and should perform flawlessly. 4600 please use test/getch.c and any other programs to test this. 4601* ripoffline() is implemented (Thanks to Eric) and slk_ functions 4602 changed accordingly. 4603* I've added support for terminals that scroll if you write in the 4604 bottom-right corner. 4605* fixed more bugs in pads code. If anybody has a program that uses 4606 pads I'd love a copy. 4607* correct handling for terminal with back_color_erase capability 4608 (such as Linux console, and most PC terminals) 4609* ^Z handling apparently didn't work (I should never trust code 4610 sent me to me without extensive testing). It now seems to be 4611 fixed. Let me know if you have problems. 4612* I've added support for Apollo and NeXT, but it may still be 4613 incomplete, especially when dealing with the lack of POSIX 4614 features. 4615* scrolling should be more efficient on terminals with idl 4616 capabilities. Please see src/lib_scroll.c for more notes. 4617* The line drawing routines were offset by 1 at both ends. This 4618 is now fixed. 4619* added a few missing prototypes and macros (e.g. setterm()) 4620* fixed code in src/lib_overlay.c which used to crash. 4621* added a few more programs in test/ The ones from the PDCurses 4622 package are useful, especially if you have SVR4 proper. I'm 4623 interested in the results you get on such a systems (Eric? ;-). 4624 They already exposed certain bugs in ncurses. 4625* See src/README for porting notes. 4626* The C++ code should really replace ncurses.h instead of working 4627 around it. It should avoid name-space clashes with nterm.h (use 4628 rows instead of lines, etc.) 4629* The C++ should compile ok. I've added explicit rules to the 4630 Makefile because no C++ defaults are documented on the suns. 4631* The docs say that echo() and nocbreak() are mutually exclusive. 4632 At the moment ncurses will switch to cbreak() if the case above 4633 occurs. Should it continue to do so? How about echo() and noraw()? 4634* PDCurses seem to assume that wclear() will use current attribute 4635 when clearing the screen. According to Eric this is not the case 4636 with SVR4. 4637* I have discovered, to my chagrin, SunOS 4.x (and probably other systems) 4638 * doesn't have vsscanf and God knows what else! I've will do a vsscanf(). 4639* I've also found out that the src/script.* rely on gawk and will not 4640 work with stock awk or even with nawk. Any changes are welcome. 4641* Linux is more tolerant of NULL dereferences than most systems. This 4642 fact was exposed by hanoi. 4643* ncurses still seems inefficient in drawing the screen on a serial 4644 link between Linux and suns. The padding may be the culprit. 4645* There seems to be one lingering problem with doupdate() after shelling 4646 out. Despite the fact the it is sending out the correct information 4647 to the terminal, nothing takes effect until you press ^L or another 4648 refresh takes place. And yes, output does get flushed. 4649 4650#### ncurses 1.8.1 -> ncurses 1.8.2 #### Nov 28, 1993 #### 4651 4652* added support for SVR4 and BSDI's BSD/386. 4653* major update and fix to scrolling routine. 4654* MORE fixes to stuff in lib_getch.c. 4655* cleaned-up configuration options and can now generate 4656 Config.* files through an awk script. 4657* changed setupterm() so it can be called more than once, 4658 add added set_curterm(), del_curterm(). 4659* a few minor cleanups. 4660* added more prototypes in curses.h 4661 4662#### ncurses 1.8 -> ncurses 1.8.1 #### Nov 4, 1993 #### 4663 4664* added support for NeXTStep 3.0 4665* added termcap emulation (not well tested). 4666* more complete C++ interface to ncurses. 4667* fixed overlay(), overwrite(), and added copywin(). 4668* a couple of bug fixes. 4669* a few code cleanups. 4670 4671#### ncurses 0.7.2/0.7.3 -> ncurses 1.8 #### Aug 31, 1993 #### 4672 4673* The annoying message "can't open file." was due to missing 4674 terminfo entry for the used terminal. It has now been 4675 replaced by a hopefully more helpful message. 4676* Problems with running on serial lines are now fixed. 4677* Added configuration files for SunOS, Linux, HP/UX, Ultrix, 4678 386bsd/BSDI (if you have others send'em to me) 4679* Cleaner Makefile. 4680* The documentation in manual.doc is now more uptodate. 4681* update optimization and support for hp terminals, and 386bsd 4682 console driver(s). 4683* mvcur optimization for terminals without cursor addressing 4684 (doesn't work on Linux) 4685* if cursor moved since last update, getch() will refresh the 4686 screen before working. 4687* getch() & alarm() can now live together. in 0.7.3 a signal 4688 interrupted getch() (bug or feature?) now the getch is 4689 restarted. 4690* scanw() et all were sick, now fixed. 4691* support for 8-bit input (use meta()). 4692* added default screen size to all terminfos. 4693* added c++ Ncursesw class. 4694* several minor bug fixes. 4695 4696#### ncurses 0.7.2 -> ncurses 0.7.3 #### May 27, 1993 #### 4697 4698* Config file to cope with different platforms (386BSD, BSDI, Ultrix, SunOS) 4699* more fixes to lib_getch.c 4700* changes related to Config 4701 4702#### ncurses 0.7 -> ncurses 0.7.2 #### May 22, 1993 #### 4703 4704* docs updated slightly (color usage is now documented). 4705* yet another fix for getch(), this one fixes problems with ESC being swallowed 4706 if another character is typed before the 1 second timeout. 4707* Hopefully, addstr() and addch() are 8-bit clean. 4708* fixed lib_tparm.c to use stdarg.h (should run on suns now) 4709* order of capabilities changed to reflect that specified in SYSV 4710 this will allow for binary-compatibility with existing terminfo dbs. 4711* added halfdelay() 4712* fixed problems with asc_init() 4713* added A_PROTECT and A_INVIS 4714* cleaned up vidputs() 4715* general cleanup of the code 4716* more attention to portability to other systems 4717* added terminfos for hp70092 (wont work until changes to lib_update.c are 4718 made) and 386BSD pcvt drivers. 4719 4720Thanks to Hellmuth Michaelis for his help. 4721optimization code is slated for the next major release, stay tuned! 4722 4723#### ncurses 0.6/0.61 -> ncurses 0.7 #### April 1, 1993 4724Please note that the next release will be called 1.8. If you want to know about 4725the rationale drop me a line. 4726 4727Included are several test programs in test/. 4728I've split up the panels library, reversi, tetris, sokoban. They are now 4729available separately from netcom.com:pub/zmbenhal/ 4730 4731* color and ACS support is now fully compatible with SYSV at the terminfo 4732 level. 4733* Capabilities now includes as many SYSV caps I could find. 4734* tigetflag,tigetnum,tigetstr functions added. 4735* boolnames, boolfnames, boolcodes numnames, numfnames, numcodes, 4736 strnames, strfnames, strcodes arrays are now added. 4737* keyname() is added. 4738* All function keys can be defined in terminfo entries. 4739* fixed lin_tparm.c to behave properly. 4740* terminfo entries for vt* and xterm are included (improvements are welcome) 4741* more automation in handling caps and keys. 4742* included fixes from 0.6.1 4743* added a few more missing functions. 4744* fixed a couple of minor bugs. 4745* updated docs JUST a little (still miles behind in documenting the newer 4746 features). 4747 4748#### ncurses 0.6 -> ncurses 0.61 #### 4749 47501) Included the missing data/console. 4751 47522) allow attributes when drawing boxes. 4753 47543) corrected usage of win->_delay value. 4755 47564) fixed a bug in lib_getch.c. if it didn't recognize a sequence it would 4757 simply return the last character in the sequence. The correct 4758 behavior is to return the entire sequence one character at a time. 4759 4760#### ncurses0.5 -> ncurses0.6 #### March 1, 1993 #### 4761* removed _numchngd from struct _win_st and made appropriate changes. 4762* rewritten kgetch() to remove problems with interaction between alarm and 4763 read(). It caused SIGSEGV every now and then. 4764* fixed a bug that miscounted the numbers of columns when updating. 4765 (in lib_doupdate.c(ClrUpdate() -- iterate to columns not columns-1) 4766* fixed a bug that cause the lower-right corner to be incorrect. 4767 (in lib_doupdate.c(putChar() -- check against columns not columns-1) 4768* made resize() and cleanup() static to lib_newterm.c 4769* added notimeout(). 4770* added timeout() define in curses.h 4771* added more function prototypes and fixed napms. 4772* added use_env(). 4773* moved screen size detection to lib_setup.c. 4774* fixed newterm() to confirm to prototype. 4775* removed SIGWINCH support as SYSV does not define its semantics. 4776* cleaned-up lib_touch.c 4777* added waddnstr() and relatives. 4778* added slk_* support. 4779* fixed a bug in wdeleteln(). 4780* added PANEL library. 4781* modified Makefile for smoother installation. 4782* terminfo.h is really term.h 4783 4784#### ncurses 0.4 -> ncurses 0.5 #### Feb 14, 1993 #### 4785* changed _win_st structure to allow support for missing functionality. 4786* Addition of terminfo support for all KEY_*. 4787* Support for nodelay(), timeout(), notimeout(). 4788* fixed a bug with the keypad char reading that did not return ESC until 4789 another key is pressed. 4790* nl mapping no longer occur on output (as should be) 4791 fixed bug '\n' no causing a LF. 4792* fixed bug that reset terminal colors regardless of whether we use color 4793 or not. 4794* Better support for ACS (not quite complete). 4795* fixed bug in wvline(). 4796* added curs_set(). 4797* changed from signal() to sigaction(). 4798* re-included the contents of important.patch into source. 4799 4800#### ncurses 0.3 -> ncurses 0.4 #### Feb 3, 1993 #### 4801* Addition of more KEY_* definitions. 4802* Addition of function prototypes. 4803* Addition of several missing functions. 4804* No more crashes if screen size is undefined (use SIGWINCH handler). 4805* added a handler to cleanup after SIGSEGV (hopefully never needed). 4806* changed SRCDIR from /etc/term to /usr/lib/terminfo. 4807* renamed compile/dump to tic/untic. 4808* New scrolling code. 4809* fixed bug that reversed the sense of nl() and nonl(). 4810 4811#### ncurses 0.2 -> ncurses 0.3 #### Jan 20, 1993 #### 4812* more support for color and graphics see test/ for examples. 4813* fixed various files to allow correct update after shelling out. 4814* more fixes for updates. 4815* no more core dumps if you don't have a terminfo entry. 4816* support for LINES and COLUMNS environment variables. 4817* support for SIGWINCH signal. 4818* added a handler for SIGINT for clean exits. 4819 4820#### ncurses 0.1 -> ncurses 0.2 #### Aug 14, 1992 #### 4821* support for color. 4822* support for PC graphic characters. 4823* lib_trace.c updated to use stdarg.h and vprintf routines. 4824* added gdc.c (Great Digital Clock) as an example of using color. 4825 4826#### ncurses -> ncurses 0.1 #### Jul 31, 1992 #### 4827* replacing sgtty stuff by termios stuff. 4828* ANSIfication of some functions. 4829* Disabling cost analysis 'cause it's incorrect. 4830* A quick hack for a terminfo entry. 4831