Diff for /rpl/src/instructions_f2.c between versions 1.4 and 1.11

version 1.4, 2010/02/25 09:43:58 version 1.11, 2010/06/24 10:10:43
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.11    RPL/2 (R) version 4.0.17
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2010 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
Line 802  instruction_fleche_str(struct_processus Line 802  instruction_fleche_str(struct_processus
             case '\b':              case '\b':
             case '\n':              case '\n':
             case '\t':              case '\t':
               case '\\':
             {              {
                 caracteres_echappement++;                  caracteres_echappement++;
                 break;                  break;
Line 825  instruction_fleche_str(struct_processus Line 826  instruction_fleche_str(struct_processus
     {      {
         switch(*ptr_l)          switch(*ptr_l)
         {          {
               case '\\':
               {
                   (*ptr_e) = '\\';
                   (*(++ptr_e)) = '\\';
                   break;
               }
   
             case '\"':              case '\"':
             {              {
                 (*ptr_e) = '\\';                  (*ptr_e) = '\\';

Removed from v.1.4  
changed lines
  Added in v.1.11


CVSweb interface <joel.bertrand@systella.fr>