]> git.saurik.com Git - cycript.git/blobdiff - Cycript.yy.in
In trampoline, make $strlcpy not crash given NULL.
[cycript.git] / Cycript.yy.in
index 2c8125ea37c1a0d663f4968f62082dfbc1ac1af5..3a31f1ebbe797f220e5cf17bb7123ecc846eb4fb 100644 (file)
@@ -161,6 +161,7 @@ int cylex(YYSTYPE *, cy::location *, void *);
 
 @begin E4X ObjectiveC
 %token At "@"
+%token Pound "#"
 @end
 
 %token Ampersand "&"
@@ -1664,7 +1665,7 @@ PrimaryExpression
 /* }}} */
 /* Cycript (Objective-C): Instance Literals {{{ */
 PrimaryExpression
-    : "^" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); }
+    : "#" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); }
     ;
 /* }}} */
 @end