[BACK]Return to lex.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/lex.c between version 1.44 and 1.45

version 1.44, 2007/08/06 08:15:26 version 1.45, 2010/04/16 07:13:42
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/lex.c,v 1.43 2007/02/18 05:36:28 ohara Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/lex.c,v 1.44 2007/08/06 08:15:26 saito Exp $
 */  */
 #include <ctype.h>  #include <ctype.h>
 #include "ca.h"  #include "ca.h"
Line 681  static int Getc() {
Line 681  static int Getc() {
                                         else                                          else
                                                 c = Getc();                                                  c = Getc();
                                         break;                                          break;
                                 } else if ( asir_infile->fp || do_file )                                  } else if ( asir_infile->fp || do_file ) {
                                         asir_terminate(2);  
                                 else {  
                                         if ( asir_infile->fp )                                          if ( asir_infile->fp )
                                                 clearerr(asir_infile->fp);                                                  clearerr(asir_infile->fp);
                                           asir_terminate(2);
                                   } else {
                                           error("end-of-line detected during parsing");
                                 }                                  }
                         else                          else
                                 break;                                  break;

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.45

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>