Browse Source

v2.61

* Bug fix from Matthias Rustler
tags/v2.61
Jon Foster 2 years ago
parent
commit
36eb551ab0
9 changed files with 21 additions and 11 deletions
  1. +1
    -1
      Makefile.in
  2. +2
    -2
      Makefile.ncu
  3. +9
    -1
      README
  4. +1
    -1
      bwb_prn.c
  5. +2
    -2
      bwbasic.h
  6. +2
    -0
      bwx_tty.c
  7. +2
    -2
      compile.bat
  8. +0
    -0
      configure
  9. +2
    -2
      stdcomp.bat

+ 1
- 1
Makefile.in View File

@@ -102,7 +102,7 @@ realclean: distclean
rm -f TAGS

dist: $(DISTFILES)
echo bwbasic-2.50 > .fname
echo bwbasic-2.61 > .fname
rm -rf `cat .fname`
mkdir `cat .fname`
ln $(DISTFILES) `cat .fname`


+ 2
- 2
Makefile.ncu View File

@@ -113,9 +113,9 @@ distclean: clean
realclean: distclean
rm -f TAGS

# Version number changed from 2.20 to 2.40 by PE
# Version number changed to 2.61 by PE
dist: $(DISTFILES)
echo bwbasic-2.40 > .fname
echo bwbasic-2.61 > .fname
rm -rf `cat .fname`
mkdir `cat .fname`
ln $(DISTFILES) `cat .fname`


+ 9
- 1
README View File

@@ -3,7 +3,7 @@
README file for


Bywater BASIC Interpreter/Shell, version 2.60
Bywater BASIC Interpreter/Shell, version 2.61
---------------------------------------------

Copyright (c) 1993, Ted A. Campbell
@@ -30,6 +30,9 @@
Version 2.60 modifications by Paul Edwards,
6 November 2012

Version 2.61 modifications by Paul Edwards,
4 August 2014




@@ -203,6 +206,11 @@ CHANGE HISTORY



CHANGES FROM 2.60 to 2.61

* Bug fix from Matthias Rustler


CHANGES FROM 2.50 to 2.60

* New maths functions and append mode support from Edmond Orignac


+ 1
- 1
bwb_prn.c View File

@@ -1328,7 +1328,7 @@ prn_precision( v )

***************************************************************/

#if PERMANENT_DEBUG
#if PERMANENT_DEBUG || INTENSIVE_DEBUG

#if ANSI_C
int


+ 2
- 2
bwbasic.h View File

@@ -41,7 +41,7 @@

/* Version number */

#define VERSION "2.60" /* Current version number */
#define VERSION "2.61" /* Current version number */

/***************************************************************

@@ -1176,7 +1176,7 @@ extern int fnc_checkargs( int argc, struct bwb_variable *argv,
int min, int max );
extern int ufsc; /* user function stack counter */

#if DEBUG
#if DEBUG || INTENSIVE_DEBUG
extern struct bwb_variable *fnc_test( int argc, struct bwb_variable *argv, int unique_id );
#endif



+ 2
- 0
bwx_tty.c View File

@@ -256,6 +256,8 @@ bwx_input( prompt, buffer )

prn_xprintf( stdout, prompt );

fflush( stdout );

fgets( buffer, MAXREADLINESIZE, stdin );
* prn_getcol( stdout ) = 1; /* reset column */



+ 2
- 2
compile.bat View File

@@ -21,5 +21,5 @@ call stdcomp bwb_stc.c
call stdcomp bwx_tty.c
call stdcomp unixio.c

gcc -mno-cygwin -s -o bwbasic.exe *.o
rem bcc32 -ebwbasic.exe *.obj
rem gcc -mno-cygwin -s -o bwbasic.exe *.o
bcc32 -O -ebwbasic.exe *.obj

+ 0
- 0
configure View File


+ 2
- 2
stdcomp.bat View File

@@ -1,3 +1,3 @@
gcc -w -c -ansi -mno-cygwin -I . %1 %2 %3 %4 %5 %6 %7 %8 %9
rem bcc32 -w- -A -c -I. %1 %2 %3 %4 %5 %6 %7 %8 %9
rem gcc -w -c -ansi -mno-cygwin -I . %1 %2 %3 %4 %5 %6 %7 %8 %9
bcc32 -O -w- -A -c -I. %1 %2 %3 %4 %5 %6 %7 %8 %9
rem gccmvs -Os -S -ansi -nostdinc -I ../pdos/pdpclib -I . %1 %2 %3 %4 %5 %6 %7 %8 %9

Loading…
Cancel
Save