From 1fec484166570540ccb205b664a6b9fc7da1da39 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 25 Mar 2012 02:01:16 -0700 Subject: [PATCH] Swank might use t for the true object; define it to the symbol T when evaluating swank exprs. --- src/runtime/swank.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runtime/swank.scm b/src/runtime/swank.scm index 52ae96991..d8317210c 100644 --- a/src/runtime/swank.scm +++ b/src/runtime/swank.scm @@ -952,6 +952,7 @@ swank:xref (define (elisp-true? o) (not (elisp-false? o))) (define nil '()) +(define t 'T) (define (->line o) (let ((r (write-to-string o 100))) -- 2.25.1