home *** CD-ROM | disk | FTP | other *** search
- *** 1.2 1992/03/22 21:19:02
- --- Makefile 1992/04/15 15:11:30
- ***************
- *** 37,43 ****
- llong:
- # $(MAKE) -f makefile.32 clean
- $(MAKE) -f makefile.32 $(MAKEFLAGS) all
- ! $(MAKE) -f makefile.32 $(MAKEFLAGS) install
-
- lgshort:
- $(MAKE) -f gmakefil.16 clean
- --- 37,43 ----
- llong:
- # $(MAKE) -f makefile.32 clean
- $(MAKE) -f makefile.32 $(MAKEFLAGS) all
- ! # $(MAKE) -f makefile.32 $(MAKEFLAGS) install
-
- lgshort:
- $(MAKE) -f gmakefil.16 clean
- *** 1.1 1992/03/22 07:42:32
- --- PatchLev.h 1992/04/05 19:37:14
- ***************
- *** 1,5 ****
-
- ! #define PatchLevel "6"
-
- /*
- * the Patch Level above is to identify the version
- --- 1,5 ----
-
- ! #define PatchLevel "07"
-
- /*
- * the Patch Level above is to identify the version
- *** 1.1 1992/03/22 07:42:32
- --- iostream.cc 1992/04/05 19:34:47
- ***************
- *** 85,91 ****
-
- istream& istream::ignore(int n=1, int delim = EOF)
- {
- ! if (ipfx0()) {
- register streambuf* sb = _strbuf;
- for (;;) {
- // Could skip multiple chars at a time if egptr() > gptr(),
- --- 85,91 ----
-
- istream& istream::ignore(int n=1, int delim = EOF)
- {
- ! if (ipfx1()) {
- register streambuf* sb = _strbuf;
- for (;;) {
- // Could skip multiple chars at a time if egptr() > gptr(),
- ***************
- *** 177,183 ****
- for (;;) {
- ch = sb->sbumpc();
- if (ch == EOF) {
- ! is.set(ios::eofbit|ios::failbit);
- break;
- }
- else if (isspace(ch)) {
- --- 177,183 ----
- for (;;) {
- ch = sb->sbumpc();
- if (ch == EOF) {
- ! is.set(ios::eofbit);
- break;
- }
- else if (isspace(ch)) {
- ***************
- *** 221,226 ****
- --- 221,227 ----
- if (ch == '0') {
- ch = sb->sbumpc();
- if (ch == EOF) {
- + stream.set(ios::eofbit);
- val = 0;
- return 1;
- }
- ***************
- *** 242,249 ****
- base = 8;
- val = 0;
- for (;;) {
- ! if (ch == EOF)
- ! break;
- int digit;
- if (ch >= '0' && ch <= '9')
- digit = ch - '0';
- --- 243,249 ----
- base = 8;
- val = 0;
- for (;;) {
- ! if (ch == EOF) { stream.set(ios::eofbit); break; }
- int digit;
- if (ch >= '0' && ch <= '9')
- digit = ch - '0';
- *** 1.1 1992/03/22 07:42:32
- --- strstrea.cc 1992/04/05 19:35:11
- ***************
- *** 157,163 ****
- {
- // _flags &= ~ios::dont_close;
- _frozen = 1;
- - _len = 0;
- if (size == 0)
- _size = strlen(ptr);
- else if (size < 0) {
- --- 157,162 ----
- ***************
- *** 176,181 ****
- --- 175,182 ----
- }
- else
- _size = size;
- + // I am not sure this change is correct... -- schenk@cpsc.ucalgary.ca
- + _len = _size;
- _buffer = ptr;
- int new_flags = _S_CAN_READ;
- setb(_buffer, _buffer+_size);
-