1
0
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:
Nick Briggs 2017-05-29 12:13:35 -07:00
parent 9911a80bef
commit 9f01c92438

View File

@ -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