diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-08-20 19:29:45 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-08-20 19:44:07 -0700 |
commit | 3369875ccd0e42a8639509a400d2d9cb1356d79a (patch) | |
tree | 20272a7d874d1d35f94aebe0c847a91e819dd9c4 /html/045closure_name.cc.html | |
parent | 18261f194d34d6d8aa2f359052796c4f6d373c1b (diff) | |
download | mu-3369875ccd0e42a8639509a400d2d9cb1356d79a.tar.gz |
3233 - change how Mu escapes strings
Thanks Sam Putman for helping think through this idea. When you encounter a backslash, strip it out and pass through any following run of backslashes. If we 'escaped' a single following character like C, then the character '\' would be the same as: '\\' escaped once '\\\\' escaped twice '\\\\\\\\' escaped thrice (8 backslashes) ..and so on, the number of backslashes doubling each time. Instead, our approach is to make the character '\' the same as: '\\' escaped once '\\\' escaped twice '\\\\' escaped thrice ..and so on, the number of backslashes merely increasing by one each time. This approach only works as long as backslashes aren't also overloaded to create special characters. So Mu doesn't follow C's approach of overloading backslashes both to escape quote characters and also as a notation for unprintable characters like '\n'.
Diffstat (limited to 'html/045closure_name.cc.html')
0 files changed, 0 insertions, 0 deletions