mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-29 13:01:30 +00:00
Fix erroneous assignment instead of comparison in if-expression.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user