﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
207	The special character \ (back slash) yields an error	imendez	Víctor de Buen Remiro	"This code:

Text t = ""\\\"""";

returns the next error message:

ERROR: Las comillas que se abrieron en la línea 1 no se han cerrado.

Notice that there are 3 back-slashes and 3 double quotes:
- The first double quotes open the text string.
- The first back-slash means that the following character (the second back-slash) 
is a special character.
- The forth character (the third back-slash) menas that the fifth character (the 
second double quotes) are a special character.
- The sixth (last) character is the double quotes that close the text string.

I think the value of t must be \"".

Regards."	defect	closed	normal		Kernel	1.1.2	normal	fixed		
