Commit 609cf0c3 authored by Ken Thompson's avatar Ken Thompson

fixed \\ secape in strings

SVN=121553
parent cc85574c
......@@ -749,6 +749,7 @@ loop:
case 'r': return '\r';
case 't': return '\t';
case 'v': return '\v';
case '\\': return '\\';
default:
if(c != e)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment