Commit 84d82177 by James Van Artsdalen

*** empty log message ***

From-SVN: r1082
parent 9649fb4d
......@@ -123,11 +123,18 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
{ \
if ((PTR)[0] == 'r' \
&& (PTR)[1] == 'e' \
&& (PTR)[2] == 'p' \
&& (PTR)[3] == 'z') \
&& (PTR)[2] == 'p') \
{ \
fprintf (STREAM, "repe"); \
(PTR) += 4; \
if ((PTR)[3] == 'z') \
{ \
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