home *** CD-ROM | disk | FTP | other *** search
- diff -c old/CHANGES new/CHANGES
- *** old/CHANGES Sat Mar 14 12:14:46 1992
- --- new/CHANGES Mon Mar 16 10:15:44 1992
- ***************
- *** 1,5 ****
- --- 1,9 ----
- Version 3
-
- + Patchlevel 1
- +
- + - Fix: The program was calling ftell() on an invalid FILE pointer.
- +
- Patchlevel 0
-
- - Added options to convert function definitions between the old style
- diff -c old/lex.l new/lex.l
- *** old/lex.l Mon Mar 16 10:17:30 1992
- --- new/lex.l Mon Mar 16 10:09:18 1992
- ***************
- *** 235,247 ****
- break;
- case '/':
- if (lastc == '*') {
- ! if (cur_file->convert && func_params && cur_declarator) {
- ! cur_declarator->begin_comment = begin_comment;
- ! begin_comment = ftell(cur_file->tmp_file);
- ! cur_declarator->end_comment = begin_comment;
- ! cur_declarator = NULL;
- ! } else {
- ! end_comment = ftell(cur_file->tmp_file);
- }
- return;
- }
- --- 235,249 ----
- break;
- case '/':
- if (lastc == '*') {
- ! if (cur_file->convert) {
- ! if (func_params && cur_declarator) {
- ! cur_declarator->begin_comment = begin_comment;
- ! begin_comment = ftell(cur_file->tmp_file);
- ! cur_declarator->end_comment = begin_comment;
- ! cur_declarator = NULL;
- ! } else {
- ! end_comment = ftell(cur_file->tmp_file);
- ! }
- }
- return;
- }
- diff -c old/patchlev.h new/patchlev.h
- *** old/patchlev.h Mon Mar 16 10:19:22 1992
- --- new/patchlev.h Mon Mar 16 10:11:14 1992
- ***************
- *** 1,1 ****
- ! #define PATCHLEVEL 0
- --- 1,1 ----
- ! #define PATCHLEVEL 1
-