Index: pylib/gyp/xcodeproj_file.py |
diff --git a/pylib/gyp/xcodeproj_file.py b/pylib/gyp/xcodeproj_file.py |
index 47712a7f6e092b0ca998e6b42792b1a21c031133..4db6419f6d565c87c66d9f0d06e2d0515bdc3c84 100644 |
--- a/pylib/gyp/xcodeproj_file.py |
+++ b/pylib/gyp/xcodeproj_file.py |
@@ -169,7 +169,7 @@ _quoted = re.compile('___') |
# This pattern should match any character that needs to be escaped by |
# XCObject._EncodeString. See that function. |
-_escaped = re.compile('[\\\\"]|[^ -~]') |
+_escaped = re.compile('[\\\\"]|[\x00-\x1f\x7f]') |
Mark Mentovai
2013/09/12 21:32:18
Why is 0x7f in here? If the input contains a DEL c
kbongort
2013/09/12 22:41:40
This was to keep the former behavior, but the comm
|
# Used by SourceTreeAndPathFromPath |