diff --git a/CHANGES b/CHANGES index 6b7a6d9..af8270f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,11 @@ +The following are the changes from calc version 2.11.5t2 to date: + + Fixed a bug, reported by Ernest Bowen that caused command lines to be echoed in + interactive mode. Fixed a bug that sometimes left the terminal + in a non-echoing state when calc exited. + + The following are the changes from calc version 2.11.5t0 to date: Fixed a compile problem with Linux 2.4 / Debian. Thanks goes @@ -5164,8 +5172,8 @@ Following is a list of visible changes to calc from version 1.24.7 to 1.26.1: ## received a copy with calc; if not, write to Free Software Foundation, Inc. ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## -## @(#) $Revision: 29.26 $ -## @(#) $Id: CHANGES,v 29.26 2001/04/08 11:03:37 chongo Exp $ +## @(#) $Revision: 29.27 $ +## @(#) $Id: CHANGES,v 29.27 2001/04/08 22:05:40 chongo Exp $ ## @(#) $Source: /usr/local/src/cmd/calc/RCS/CHANGES,v $ ## ## Under source code control: 1993/06/02 18:12:57 diff --git a/README.WINDOWS b/README.WINDOWS index 342d712..a473d4b 100644 --- a/README.WINDOWS +++ b/README.WINDOWS @@ -57,8 +57,9 @@ by the make file: You will find generated versions of these files located in the win32 sub-directory. These files may be appropriate for your Cygwin building -needs. Just copy the win32/*.[ch] files up into the mail calc -source directory. +needs. Just copy the win32/*.[ch] files up into the top level calc +source directory, edited (if needed) and build using the Cygwin GCC +compiler. =-= @@ -104,8 +105,8 @@ was changed to: ## received a copy with calc; if not, write to Free Software Foundation, Inc. ## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ## -## @(#) $Revision: 29.5 $ -## @(#) $Id: README.WINDOWS,v 29.5 2001/04/08 10:57:56 chongo Exp $ +## @(#) $Revision: 29.6 $ +## @(#) $Id: README.WINDOWS,v 29.6 2001/04/08 22:13:38 chongo Exp $ ## @(#) $Source: /usr/local/src/cmd/calc/RCS/README.WINDOWS,v $ ## ## Under source code control: 2001/02/25 14:00:05 diff --git a/lib_calc.c b/lib_calc.c index 948d9e1..e7f05a5 100644 --- a/lib_calc.c +++ b/lib_calc.c @@ -17,8 +17,8 @@ * received a copy with calc; if not, write to Free Software Foundation, Inc. * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * - * @(#) $Revision: 29.6 $ - * @(#) $Id: lib_calc.c,v 29.6 2001/03/17 21:31:47 chongo Exp $ + * @(#) $Revision: 29.7 $ + * @(#) $Id: lib_calc.c,v 29.7 2001/04/08 22:05:40 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/calc/RCS/lib_calc.c,v $ * * Under source code control: 1996/06/17 18:06:19 @@ -753,10 +753,10 @@ calc_tty(int fd) printf("calc_tty: stty -ECHO -ECHOE -ECHOK -ICANON +ISTRIP " "VMIN=1 VTIME=0: fd %d\n", fd); -#elif defined (USE_SGTTY)/* assume USE_SGTTY */ +#elif defined (USE_TERMIOS) /* - * assume USE_SGTTY tty state method + * USE_TERMIOS tty state method */ if (fd_setup[slot] < 0 && tcgetattr(fd, fd_orig+slot) < 0) { if (conf->calc_debug & CALCDBG_TTY) @@ -848,7 +848,7 @@ orig_tty(int fd) if (conf->calc_debug & CALCDBG_TTY) printf("orig_tty: TCSETAW restored fd %d\n", fd); -#elif defined (USE_SGTTY)/* assume USE_SGTTY */ +#elif defined (USE_TERMIOS) /* * assume USE_SGTTY tty state method diff --git a/version.c b/version.c index 517ec1e..1ab62b3 100644 --- a/version.c +++ b/version.c @@ -19,8 +19,8 @@ * received a copy with calc; if not, write to Free Software Foundation, Inc. * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * - * @(#) $Revision: 29.21 $ - * @(#) $Id: version.c,v 29.21 2001/04/08 10:09:20 chongo Exp $ + * @(#) $Revision: 29.22 $ + * @(#) $Id: version.c,v 29.22 2001/04/08 22:05:40 chongo Exp $ * @(#) $Source: /usr/local/src/cmd/calc/RCS/version.c,v $ * * Under source code control: 1990/05/22 11:00:58 @@ -43,7 +43,7 @@ static char *program; #define MAJOR_VER 2 /* major version */ #define MINOR_VER 11 /* minor version */ #define MAJOR_PATCH 5 /* patch level or 0 if no patch */ -#define MINOR_PATCH "1.1" /* test number or empty string if no patch */ +#define MINOR_PATCH "2" /* test number or empty string if no patch */ /* * calc version constants