1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-15 15:50:28 +00:00

Move misplaced 'break' out of 'if' consequent

This commit is contained in:
Nick Briggs
2023-01-08 23:26:24 -08:00
parent d95b82ac45
commit b3f97a85c8

View File

@@ -101,9 +101,8 @@ void prindatum(LispPTR x) {
newstring = (NEWSTRINGP *)NativeAligned4FromLAddr(x); newstring = (NEWSTRINGP *)NativeAligned4FromLAddr(x);
if (newstring->stringp) { if (newstring->stringp) {
print_NEWstring(x); print_NEWstring(x);
break;
} }
break;
default: dtd_base = (struct dtd *)GetDTD(typen); printf("{"); default: dtd_base = (struct dtd *)GetDTD(typen); printf("{");
#ifdef BIGVM #ifdef BIGVM
if ((typename = dtd_base->dtd_name) != 0) if ((typename = dtd_base->dtd_name) != 0)