Diff for /rpl/src/analyse_notation_rpn.c between versions 1.9 and 1.55

version 1.9, 2010/05/24 10:58:28 version 1.55, 2015/01/05 13:12:29
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.16    RPL/2 (R) version 4.1.19
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2015 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 20 Line 20
 */  */
   
   
 #include "rpl.conv.h"  #include "rpl-conv.h"
   
   
 /*  /*
Line 51  analyse_rpn(struct_processus *s_etat_pro Line 51  analyse_rpn(struct_processus *s_etat_pro
     unsigned char                   *registre_instruction;      unsigned char                   *registre_instruction;
     unsigned char                   *registre_programme;      unsigned char                   *registre_programme;
   
     unsigned long                   element_en_cours;      integer8                        element_en_cours;
     unsigned long                   i;      integer8                        i;
     unsigned long                   j;      integer8                        j;
     unsigned long                   nombre_termes;      integer8                        nombre_termes;
     unsigned long                   registre_compteur_programme;      integer8                        registre_compteur_programme;
   
     registre_autorisation_empilement = (*s_etat_processus)      registre_autorisation_empilement = (*s_etat_processus)
             .autorisation_empilement_programme;              .autorisation_empilement_programme;
Line 78  analyse_rpn(struct_processus *s_etat_pro Line 78  analyse_rpn(struct_processus *s_etat_pro
             return NULL;              return NULL;
         }          }
   
           (*s_etat_processus).type_en_cours = NON;
         recherche_type(s_etat_processus);          recherche_type(s_etat_processus);
         free((*s_etat_processus).instruction_courante);          free((*s_etat_processus).instruction_courante);
   

Removed from v.1.9  
changed lines
  Added in v.1.55


CVSweb interface <joel.bertrand@systella.fr>