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

Diff for /OpenXM_contrib2/asir2000/parse/debug.c between version 1.19 and 1.21

version 1.19, 2006/12/05 01:47:08 version 1.21, 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/debug.c,v 1.18 2006/02/28 08:36:39 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/debug.c,v 1.20 2011/06/16 08:17:15 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
 #include <ctype.h>  #include <ctype.h>
 #if defined(PARI)  
 #include "genpari.h"  
 #endif  
   
 extern do_server_in_X11,do_file;  extern do_server_in_X11,do_file;
   
Line 443  void setbp(char *p)
Line 440  void setbp(char *p)
                                 default:                                  default:
                                         ln = (*snp)->ln; break;                                          ln = (*snp)->ln; break;
                         }                          }
                         *snp = (SNODE)mksnode(3,S_BP,*snp,cond,0);                          *snp = (SNODE)mksnode(3,S_BP,*snp,cond,NULLP);
                         (*snp)->ln = ln;                          (*snp)->ln = ln;
                         if ( cond ) {                          if ( cond ) {
                                 bpt[bpi].cond = (char *)MALLOC(strlen(savp)+1);                                  bpt[bpi].cond = (char *)MALLOC(strlen(savp)+1);
Line 768  void printvars(char *s,VS vs)
Line 765  void printvars(char *s,VS vs)
                         val = eval(expr);                          val = eval(expr);
                 CPVS = cpvs;                  CPVS = cpvs;
                 if ( !err ) {                  if ( !err ) {
 #if defined(PARI)  
 #if defined(PARI1)  
                         outfile = stderr;  
 #else  
                         pari_outfile = stderr;  
 #endif  
 #endif  
                         asir_out = stderr;                          asir_out = stderr;
                         for ( p = s; isspace(*p); p++ );                          for ( p = s; isspace(*p); p++ );
                         fprintf(asir_out,"%s = ",p);                          fprintf(asir_out,"%s = ",p);
Line 787  void printvars(char *s,VS vs)
Line 777  void printvars(char *s,VS vs)
 #if defined(VISUAL_LIB)  #if defined(VISUAL_LIB)
                         w_noflush_stderr(0);                          w_noflush_stderr(0);
 #endif  #endif
 #if defined(PARI)  
 #if defined(PARI1)  
                         outfile = stdout;  
 #else  
                         pari_outfile = stdout;  
 #endif  
 #endif  
                         asir_out = stdout;                          asir_out = stdout;
                 }                  }
         }          }
Line 858  void showpos_to_list(LIST *r)
Line 841  void showpos_to_list(LIST *r)
                         /* builtin : [0,0,name] */                          /* builtin : [0,0,name] */
                         MKSTR(null,"");                          MKSTR(null,"");
                         MKSTR(name,cur_binf->name);                          MKSTR(name,cur_binf->name);
                         t = mknode(3,null,name,0);                          t = mknode(3,null,name,NULLP);
                         MKLIST(l,t);                          MKLIST(l,t);
                         MKNODE(u1,l,0); u = u1;                          MKNODE(u1,l,0); u = u1;
                 }                  }

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

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