+
+ * rltty.c (outchar): Provide prototype for outchar, to silence
+ type warnings in passing outchar to tputs on systems like Linux
+ that have full prototypes.
+
+ * signals.c (_rl_output_character_function): Provide prototype to
+ silence type warnings.
+
+Sun Jan 15 14:10:37 1995 Steve Chamberlain <sac@splat>
+
+ * rldefs.h: Define MINIMAL for __GO32__ and WIN32.
+ * complete.c, display.c, readline.c, rltty.c: Test MINIMAL
+ instead of __GO32__.
+
+
+ * configure.in: Change i[34]86 to i[345]86.
+
+
+ * configure.in (m88*-harris-cxux7*): Recognize.
+ * sysdep-cxux7.h: New file.
+
+
+ * rttty.c (control_meta_key_on): Remove superfluous testing of
+ __GO32__.
+
+
+ * rltty.c (control_meta_key_on): Don't compile if __GO32__ is
+ defined.
+ (rltty_set_default_bindings): Likewise.
+ * display.c (insert_some_chars, delete_chars): row_start should be
+ a short.
+ * parens.c (rl_insert_close): No FD_SET if using __GO32__.
+ * readline.c (rl_gather_tyi): Strip off spurious high bits.
+
+
+ * history.c: Swap inclusion of rldefs.h and chardefs.h to avoid
+ CTRL macro redefinition.
+
+
+ * readline.c (readline_default_bindings): Don't compile if
+ __GO32__ is defined.
+ (_rl_set_screen_size): Likewise.
+ * rltty.c (rltty_set_default_bindings): Likewise.
+ (control_meta_key): Likewise.
+ * display.c: If __GO32__ is defined, include <sys/pc.h>.
+ * parens.c: If __GO32__ is defined, undefine FD_SET.
+ * signals.c: Include SIGWINCH handling in the set of things which
+ is not done if HANDLE_SIGNALS is not set.
+
+
+ * config/mh-go32: New fragment.
+ * configure.in (host==go32): Use go32 fragment.
+
+
+ * chardefs.h, rldefs.h: Move decls of string funcs from chardefs.h
+ to rldefs.h so that they don't pollute apps that include
+ readline.h.
+ * history.c: include rldefs.h to get decls of string funcs.
+
+
+ * configure.in (rs6000-bull-bosx*): New configuration, RS/6000
+ variant.
+
+
+ * configure.in: Use mh-posix for sunos4.1*.
+
+
+ * rltty.c (set_tty_settings): Don't set readline_echoing_p.
+ (rl_deprep_terminal) [NEW_TTY_DRIVER]: Set readline_echoing_p.
+
+
+ * Makefile.in: Add TAGS target.
+
+
+ * isearch.c, search.c: Include sysdep.h.
+
+
+ * configure.in: For ISC, use mh-sysv, not mh-isc.
+
+
+ * Merge in changes from bash-1.13.5. Merge changes from glob/tilde.c
+ into tilde.c and use it. Add system function declarations where
+ necessary. Check for __GO32__, not _GO32_ consistently.
+ * Makefile.in: Update dependencies.
+ * rltty.c: Include <sys/file.h> to match include file setup
+ in readline.c for rldefs.h. Otherwise we get inconsistent
+ TTY_DRIVER definitions in readline.c and rltty.c.
+ * bind.c, complete.c: Do not include <sys/types.h>, it is already
+ included via sysdep.h, which causes problems if <sys/types.h> has
+ no multiple inclusion protection.
+ * readline.c (_rl_set_screen_size): Reestablish test for
+ TIOCGWINSZ_BROKEN.
+ * rldefs.h: Define S_ISREG if necessary.
+
+
+ * Makefile.in: Add search.o rule for Sun make.
+
+
+ * rltty.c: #if out some code if __GO32__.
+
+
+ * readline.c (_rl_output_character_function), display.c:
+ Return int, not void, to conform with the expected arg of tputs.
+ * readline.c (init_terminal_io): tgetflag only takes 1 arg.
+ * readline.c (_rl_savestring): New function.
+ * chardefs.h: To avoid conflicts and/or warnings, define
+ savestring as a macro wrapper for _rl_savestring.
+ * display.c (extern term_xn): It's an int flag, not a string.
+ * charsdefs.h, rldefs.h: Remove HAVE_STRING_H-related junk.
+
+
+ * Makefile.in: Remove obsolete rules for history.info and
+ readline.info.
+
+
+ * chardefs.h: Only declare strrchr if it is not #define'd.
+
+
+ * rldefs.h: Accept __hpux as well as hpux for HP compiler in ANSI mode.
+
+
+ * chardefs.h, tilde.c: Just declare strrchr rather than trying to
+ include a system header.
+
+
+ * Makefile.in (distclean, realclean): Expand local-distclean
+ inline after doing recursion. You can't recurse after removing
+ Makefile. Make them depend on local-clean.
+ * Makefile.in (local-distclean): Remove now superfluous target.
+
+
+ * readline.c (doing_an_undo): Delete second declaration, since it
+ confuses the alpha-osf1 native compiler.
+
+
+ * complete.c, bind.c: Include <sys/stat.h>.
+ * complete.c: Define X_OK if not defined by a system header.
+
+ * chardefs.h: Don't declare xmalloc.
+
+ * keymaps.h: Include "chardefs.h" not <readline/chardefs.h>.
+
+ * Makefile.in (clean mostlyclean distclean realclean): Recurse
+ into subdirectories as well as doing this directory. Add clean-dvi
+ target.
+
+
+ * readline.c, display.c: Patches to allow use of all 80
+ columns on most terminals (those with am and xn).
+
+ Merge in changes from bash-1.13. The most obvious one is
+ that the file readline.c has been split into multiple files.
+ * bind.c, complete.c, dispay.c, isearch.c, parens.c, rldefs.h,
+ rltty.c, search.c signals.c, tilde.c, tilde.h, xmalloc.c: New files.
+
+
+ * readline.c (rl_getc): If GO32, trim high bit from getkey,
+ otherwise fancy PC keys cause grief.
+
+
+ * configure.in: Add doc to configdirs.
+ * Makefile.in (info dvi install-info clean-info): Recurse into doc.
+
+
+ * configure.in: Add * to end of all OS names.
+
+
+ * readline.c: Add stuff for HIUX to place where we detect termio
+ vs. sgtty (ugh, but I don't see a simple better way).
+
+
+ * readline.c (parser_if): Free tname when done with it (change
+ imported from from bash 1.12 readline).
+
+
+ * configure.in (m88k-*-sysvr4*): Comment out previous change.
+
* configure.in (*-*-riscos*): New entry; use mh-sysv.