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