Format inner print loop according to emacs. Code changes will follow

(but be easier to diff).
This commit is contained in:
Michael Tiemann
1991-12-15 20:46:21 +00:00
parent 76b2c3c8cb
commit 76d89cb115

View File

@ -180,8 +180,10 @@ memcpy(&insn,buffer, sizeof (insn));
if (opcode->args[0] != ',')
fputs (" ", stream);
for (s = opcode->args; *s != '\0'; ++s) {
while (*s == ',') {
for (s = opcode->args; *s != '\0'; ++s)
{
while (*s == ',')
{
fputs (",", stream);
++s;