From a8a7e4725d583158cfc096a687a897763e00579a Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Fri, 10 Sep 2010 00:12:52 +0100 Subject: [PATCH] fix one multiple-string bug in the inspector --- swank.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swank.R b/swank.R index ff22caa..d72103f 100644 --- a/swank.R +++ b/swank.R @@ -491,7 +491,7 @@ inspectObject <- function(slimeConnection, object) { valuePart <- function(istate, object, string) { list(quote(`:value`), - if(is.null(string)) printToString(object) else string, + if(is.null(string)) paste(printToString(object),collapse=" ") else string, assignIndexInParts(object, istate)) } -- 2.30.2