Commit 1bfe98cb by Richard Stallman

entered into RCS

From-SVN: r827
parent 252043ee
......@@ -17,7 +17,7 @@
putc('\n', (f)); \
inside = FALSE; \
} \
fprintf((f), "%s ", ASCII_DATA_ASM_OP); \
fprintf((f), "\t%s ", ASCII_DATA_ASM_OP); \
} \
if ((p)[i] < 32 || (p)[i] == '\\' || (p)[i] == '"' || (p)[i] >= 127) { \
if (inside) { \
......
......@@ -98,7 +98,7 @@ do { \
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \
{ \
register int sp = 0, lp = 0, ch; \
fprintf ((FILE), "%s ", BYTE_ASM_OP); \
fprintf ((FILE), "\t%s ", BYTE_ASM_OP); \
do { \
ch = (PTR)[sp]; \
if (ch > ' ' && ! (ch & 0x80) && ch != '\\') \
......@@ -113,7 +113,7 @@ do { \
{ \
if ((sp % 10) == 0) \
{ \
fprintf ((FILE), "\n%s ", BYTE_ASM_OP); \
fprintf ((FILE), "\n\t%s ", BYTE_ASM_OP); \
} \
else \
{ \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment