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

Diff for /OpenXM_contrib2/asir2000/parse/eval.c between version 1.70 and 1.71

version 1.70, 2014/08/09 06:08:11 version 1.71, 2015/08/04 06:20:45
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/eval.c,v 1.69 2013/11/21 06:48:04 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/eval.c,v 1.70 2014/08/09 06:08:11 noro Exp $
 */  */
 #include <ctype.h>  #include <ctype.h>
 #include "ca.h"  #include "ca.h"
Line 57 
Line 57 
 #endif  #endif
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/stat.h>  #include <sys/stat.h>
 #if defined(PARI)  
 #include "genpari.h"  
 #endif  
   
 extern JMP_BUF timer_env;  extern JMP_BUF timer_env;
 extern FUNC cur_binf;  extern FUNC cur_binf;
Line 733  pointer evalstat(SNODE f)
Line 730  pointer evalstat(SNODE f)
                 case S_BP:                  case S_BP:
                         if ( !nextbp && (!FA1(f) || eval((FNODE)FA1(f))) ) {                          if ( !nextbp && (!FA1(f) || eval((FNODE)FA1(f))) ) {
                                 if ( (FNODE)FA2(f) ) {                                  if ( (FNODE)FA2(f) ) {
 #if defined(PARI)  
                                         pari_outfile = stderr;  
 #endif  
                                         asir_out = stderr;                                          asir_out = stderr;
                                         printexpr(CO,eval((FNODE)FA2(f)));                                          printexpr(CO,eval((FNODE)FA2(f)));
                                         putc('\n',asir_out); fflush(asir_out);                                          putc('\n',asir_out); fflush(asir_out);
 #if defined(PARI)  
                                         pari_outfile = stdout;  
 #endif  
                                         asir_out = stdout;                                          asir_out = stdout;
                                 } else {                                  } else {
                                         nextbp = 1; nextbplevel = 0;                                          nextbp = 1; nextbplevel = 0;

Legend:
Removed from v.1.70  
changed lines
  Added in v.1.71

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