--- rpl/src/instructions_f2.c 2010/02/25 09:43:58 1.4 +++ rpl/src/instructions_f2.c 2010/02/26 19:22:05 1.5 @@ -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) = '\\';