pike.git/
src/
pike_types.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2021-09-16
2021-09-16 12:24:52 by Henrik Grubbström (Grubba) <grubba@grubba.org>
0548c5a68350ac4e221ef8c05eb850684aa6b7d8 (
7
lines) (+
7
/-
0
)
[
Show
|
Annotate
]
Branch:
master
Debug: Fix some rendering issues in simple_describe_type().
2421:
s = s->cdr; continue; }
+
if (char_type->type == T_MIXED) {
+
fprintf(stderr, "mixed | ");
+
s = s->cdr;
+
continue;
+
}
if ((char_type->type >= '0') && (char_type->type <= '9')) { fprintf(stderr, "$%c | ", char_type->type); s = s->cdr;
2603:
if (s->type & 0x8000) { fprintf(stderr, ","); simple_describe_type(s->cdr);
+
fprintf(stderr, ")");
} else { switch(s->type) { case PIKE_T_FIND_LFUN: