diff options
Diffstat (limited to 'src/interp/diagnostics.boot')
-rw-r--r-- | src/interp/diagnostics.boot | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interp/diagnostics.boot b/src/interp/diagnostics.boot index 21e15092..a4cd8dca 100644 --- a/src/interp/diagnostics.boot +++ b/src/interp/diagnostics.boot @@ -85,8 +85,8 @@ MESSAGEPRINT_-1 x == IDENTP x => PRINC x atom x => PRINC x PRINC '"(" - MESSAGEPRINT_-1 car x - MESSAGEPRINT_-2 cdr x + MESSAGEPRINT_-1 first x + MESSAGEPRINT_-2 rest x PRINC '")" MESSAGEPRINT_-2 x == @@ -95,6 +95,6 @@ MESSAGEPRINT_-2 x == PRINC '" . " MESSAGEPRINT_-1 x PRINC '" " - MESSAGEPRINT_-1 car x - MESSAGEPRINT_-2 cdr x + MESSAGEPRINT_-1 first x + MESSAGEPRINT_-2 rest x |