Commit bc56fd1d by Charles Hannum

entered into RCS

From-SVN: r1083
parent 84d82177
...@@ -18,11 +18,18 @@ ...@@ -18,11 +18,18 @@
{ \ { \
if ((PTR)[0] == 'r' \ if ((PTR)[0] == 'r' \
&& (PTR)[1] == 'e' \ && (PTR)[1] == 'e' \
&& (PTR)[2] == 'p' \ && (PTR)[2] == 'p') \
&& (PTR)[3] == 'z') \
{ \ { \
fprintf (STREAM, "repe"); \ if ((PTR)[3] == 'z') \
(PTR) += 4; \ { \
fprintf (STREAM, "repe"); \
(PTR) += 4; \
} \
else if ((PTR)[3] == 'n' && (PTR)[4] == 'z') \
{ \
fprintf (STREAM, "repne"); \
(PTR) += 5; \
} \
} \ } \
} }
......
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