mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 23:27:12 +00:00
Fix erroneous assignment instead of comparison in if-expression.
This commit is contained in:
parent
9911a80bef
commit
9f01c92438
@ -52,7 +52,7 @@ void prindatum(LispPTR x) {
|
||||
LispPTR typename;
|
||||
|
||||
if (Printdepth >= PrintMaxLevel) {
|
||||
if (Printdepth = PrintMaxLevel) {
|
||||
if (Printdepth == PrintMaxLevel) {
|
||||
if (GetTypeNumber(x) == TYPE_LISTP) {
|
||||
printf("(-)");
|
||||
} else
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user