--- rpl/src/instructions_f2.c 2010/02/25 09:43:58 1.4 +++ rpl/src/instructions_f2.c 2011/06/20 17:54:17 1.21 @@ -1,7 +1,7 @@ /* ================================================================================ - RPL/2 (R) version 4.0.11 - Copyright (C) 1989-2010 Dr. BERTRAND Joël + RPL/2 (R) version 4.1.0.prerelease.1 + Copyright (C) 1989-2011 Dr. BERTRAND Joël This file is part of RPL/2. @@ -20,7 +20,7 @@ */ -#include "rpl.conv.h" +#include "rpl-conv.h" /* @@ -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) = '\\';