diff options
Diffstat (limited to 'eshtrans/frontend')
-rw-r--r-- | eshtrans/frontend/lexer.esh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eshtrans/frontend/lexer.esh b/eshtrans/frontend/lexer.esh index a30e7f5..8ce6510 100644 --- a/eshtrans/frontend/lexer.esh +++ b/eshtrans/frontend/lexer.esh @@ -901,9 +901,10 @@ run_lexer() { for (i = 1; i <= NF; ++i) { sub(squote, esc_squote, $i); - printf("lbufv_%d='\''%s'\''\n", j++, $i); + printf("lbufv_%d=" squote "%s" squote "\n", + j++, $i); }; - printf("lbufv_%d='\''\n'\''\n", j++); + printf("lbufv_%d=" squote "\n" squote "\n", j++); } ')" lbufi=0 |