]> granicus.if.org Git - re2c/commitdiff
- Use hex for all -e output
authorhelly <helly@642ea486-5414-0410-9d7f-a0204ed87703>
Sat, 6 Dec 2008 15:13:26 +0000 (15:13 +0000)
committerhelly <helly@642ea486-5414-0410-9d7f-a0204ed87703>
Sat, 6 Dec 2008 15:13:26 +0000 (15:13 +0000)
re2c/dfa.cc

index 474065b00de6b6f3fe51ae279856185b6ff0a5ee..1e9113b6df1540bd5e169d1101598b81663c2469 100644 (file)
@@ -10,7 +10,7 @@ namespace re2c
 
 void prtChOrHex(std::ostream& o, uint c)
 {
-       if (eFlag && !wFlag)
+       if (eFlag)
        {
                if (DFlag) o << '"';
                prtHex(o, c);
@@ -64,7 +64,7 @@ void prtHex(std::ostream& o, uint c)
 
 void prtCh(std::ostream& o, uint c)
 {
-       if (eFlag && !wFlag)
+       if (eFlag)
        {
                prtHex(o, c);
                return;