[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.21 and 1.22

version 1.21, 2002/09/09 23:52:45 version 1.22, 2003/02/14 22:29:18
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.20 2002/09/09 12:23:51 kondoh Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/lex.c,v 1.21 2002/09/09 23:52:45 noro Exp $
 */  */
 #include <ctype.h>  #include <ctype.h>
 #include "ca.h"  #include "ca.h"
Line 277  int yylex()
Line 277  int yylex()
                 }                  }
                 if ( floatingpoint ) {                  if ( floatingpoint ) {
                         Ungetc(c); REALLOC_NBUF nbuf[i] = 0;                          Ungetc(c); REALLOC_NBUF nbuf[i] = 0;
 #if PARI  #if defined(PARI)
                         if ( !bigfloat ) {                          if ( !bigfloat ) {
                                 dbl = (double)atof(nbuf+DLENGTH);                                  dbl = (double)atof(nbuf+DLENGTH);
                                 MKReal(dbl,real); r = (Obj)real;                                  MKReal(dbl,real); r = (Obj)real;
Line 531  int Egetc(FILE *fp)
Line 531  int Egetc(FILE *fp)
         int c;          int c;
   
         if ( fp ) {          if ( fp ) {
 #if FEP  #if defined(FEP)
                 if ( do_fep && isatty(fileno(fp)) )                  if ( do_fep && isatty(fileno(fp)) )
                         c = readline_getc();                          c = readline_getc();
                 else                  else
Line 570  void Eungetc(int c,FILE *fp)
Line 570  void Eungetc(int c,FILE *fp)
         if ( fp ) {          if ( fp ) {
                 if ( asir_infile->encoded )                  if ( asir_infile->encoded )
                         c = (int)encrypt_char((unsigned char)c);                          c = (int)encrypt_char((unsigned char)c);
 #if FEP  #if defined(FEP)
                 if ( do_fep && isatty(fileno(fp)) )                  if ( do_fep && isatty(fileno(fp)) )
                         readline_ungetc();                          readline_ungetc();
                 else                  else
Line 628  static void Gets(char *s)
Line 628  static void Gets(char *s)
         *s = 0;          *s = 0;
 }  }
   
 #if FEP  #if defined(FEP)
   
 static char *readline_line;  static char *readline_line;
 static int readline_nc,readline_index;  static int readline_nc,readline_index;

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22

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