Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/plugins


Modified Files:
        ewl_io_manager_text_c_plugin.c 


Log Message:
fix escaped quotes bug

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/plugins/ewl_io_manager_text_c_plugin.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- ewl_io_manager_text_c_plugin.c      4 Oct 2006 15:42:55 -0000       1.1
+++ ewl_io_manager_text_c_plugin.c      6 Oct 2006 20:00:55 -0000       1.2
@@ -194,7 +194,7 @@
                else if (isdigit(*tx1))
                        mode = NUMBER;
                        
-               else if (*tx1 == '\"')
+               else if (*tx1 == '\"' && !( tx1 != text && *(tx1 - 1) == '\\'))
                        mode = STRING;
 
                else



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to