mirror of
https://github.com/lcn2/calc.git
synced 2025-08-19 01:13:27 +03:00
Release calc version 2.11.5t2
This commit is contained in:
12
CHANGES
12
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 <ernie at turing dot
|
||||||
|
une dot edu dot au> 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:
|
The following are the changes from calc version 2.11.5t0 to date:
|
||||||
|
|
||||||
Fixed a compile problem with Linux 2.4 / Debian. Thanks goes
|
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.
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
##
|
##
|
||||||
## @(#) $Revision: 29.26 $
|
## @(#) $Revision: 29.27 $
|
||||||
## @(#) $Id: CHANGES,v 29.26 2001/04/08 11:03:37 chongo Exp $
|
## @(#) $Id: CHANGES,v 29.27 2001/04/08 22:05:40 chongo Exp $
|
||||||
## @(#) $Source: /usr/local/src/cmd/calc/RCS/CHANGES,v $
|
## @(#) $Source: /usr/local/src/cmd/calc/RCS/CHANGES,v $
|
||||||
##
|
##
|
||||||
## Under source code control: 1993/06/02 18:12:57
|
## Under source code control: 1993/06/02 18:12:57
|
||||||
|
@@ -57,8 +57,9 @@ by the make file:
|
|||||||
|
|
||||||
You will find generated versions of these files located in the win32
|
You will find generated versions of these files located in the win32
|
||||||
sub-directory. These files may be appropriate for your Cygwin building
|
sub-directory. These files may be appropriate for your Cygwin building
|
||||||
needs. Just copy the win32/*.[ch] files up into the mail calc
|
needs. Just copy the win32/*.[ch] files up into the top level calc
|
||||||
source directory.
|
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.
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
##
|
##
|
||||||
## @(#) $Revision: 29.5 $
|
## @(#) $Revision: 29.6 $
|
||||||
## @(#) $Id: README.WINDOWS,v 29.5 2001/04/08 10:57:56 chongo Exp $
|
## @(#) $Id: README.WINDOWS,v 29.6 2001/04/08 22:13:38 chongo Exp $
|
||||||
## @(#) $Source: /usr/local/src/cmd/calc/RCS/README.WINDOWS,v $
|
## @(#) $Source: /usr/local/src/cmd/calc/RCS/README.WINDOWS,v $
|
||||||
##
|
##
|
||||||
## Under source code control: 2001/02/25 14:00:05
|
## Under source code control: 2001/02/25 14:00:05
|
||||||
|
10
lib_calc.c
10
lib_calc.c
@@ -17,8 +17,8 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.6 $
|
* @(#) $Revision: 29.7 $
|
||||||
* @(#) $Id: lib_calc.c,v 29.6 2001/03/17 21:31:47 chongo Exp $
|
* @(#) $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 $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/lib_calc.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1996/06/17 18:06:19
|
* 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 "
|
printf("calc_tty: stty -ECHO -ECHOE -ECHOK -ICANON +ISTRIP "
|
||||||
"VMIN=1 VTIME=0: fd %d\n", fd);
|
"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 (fd_setup[slot] < 0 && tcgetattr(fd, fd_orig+slot) < 0) {
|
||||||
if (conf->calc_debug & CALCDBG_TTY)
|
if (conf->calc_debug & CALCDBG_TTY)
|
||||||
@@ -848,7 +848,7 @@ orig_tty(int fd)
|
|||||||
if (conf->calc_debug & CALCDBG_TTY)
|
if (conf->calc_debug & CALCDBG_TTY)
|
||||||
printf("orig_tty: TCSETAW restored fd %d\n", fd);
|
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
|
* assume USE_SGTTY tty state method
|
||||||
|
@@ -19,8 +19,8 @@
|
|||||||
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
* received a copy with calc; if not, write to Free Software Foundation, Inc.
|
||||||
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||||
*
|
*
|
||||||
* @(#) $Revision: 29.21 $
|
* @(#) $Revision: 29.22 $
|
||||||
* @(#) $Id: version.c,v 29.21 2001/04/08 10:09:20 chongo Exp $
|
* @(#) $Id: version.c,v 29.22 2001/04/08 22:05:40 chongo Exp $
|
||||||
* @(#) $Source: /usr/local/src/cmd/calc/RCS/version.c,v $
|
* @(#) $Source: /usr/local/src/cmd/calc/RCS/version.c,v $
|
||||||
*
|
*
|
||||||
* Under source code control: 1990/05/22 11:00:58
|
* Under source code control: 1990/05/22 11:00:58
|
||||||
@@ -43,7 +43,7 @@ static char *program;
|
|||||||
#define MAJOR_VER 2 /* major version */
|
#define MAJOR_VER 2 /* major version */
|
||||||
#define MINOR_VER 11 /* minor version */
|
#define MINOR_VER 11 /* minor version */
|
||||||
#define MAJOR_PATCH 5 /* patch level or 0 if no patch */
|
#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
|
* calc version constants
|
||||||
|
Reference in New Issue
Block a user