]> git.saurik.com Git - cycript.git/blobdiff - Console.cpp
Document a potential change to FunctionInstance.
[cycript.git] / Console.cpp
index d41f6ef5bbb174e312a07b05a31f9139a3f9354d..80c9dbd7e34a37e7bffe0ac3e9399a33144f6ce7 100644 (file)
@@ -161,7 +161,10 @@ static void Output(CYUTF8String json, FILE *fout, bool expand = false) {
     if (data == NULL || fout == NULL)
         return;
 
-    if (!expand || data[0] != '"' && data[0] != '\'')
+    if (!expand ||
+        data[0] != '@' && data[0] != '"' && data[0] != '\'' ||
+        data[0] == '@' && data[1] != '"' && data[1] != '\''
+    )
         fputs(data, fout);
     else for (size_t i(0); i != size; ++i)
         if (data[i] != '\\')