X-Git-Url: http://christophe.rhodes.io/gitweb/?p=swankr.git;a=blobdiff_plain;f=swank.R;h=f0aee27babe75b918535f5a6efdae9264d70e78e;hp=22cec64d58f898fad9ce4c68b22110bdd4b4c103;hb=9b83d84a9630016cf93de94109d6ac01090e8f68;hpb=3cd1b16491b64549d5e00e32e75ce069cd8d201f diff --git a/swank.R b/swank.R index 22cec64..f0aee27 100644 --- a/swank.R +++ b/swank.R @@ -377,7 +377,6 @@ computeRestartsForEmacs <- function (sldbState) { } `swank:frame-locals-and-catch-tags` <- function(slimeConnection, sldbState, index) { - str(sldbState$frames) frame <- sldbState$frames[[1+index]] objs <- ls(envir=frame) list(lapply(objs, function(name) { list(quote(`:name`), name, @@ -629,10 +628,6 @@ emacsInspect.numeric <- function(numeric) { } `swank:compile-file-for-emacs` <- function(slimeConnection, sldbState, filename, loadp, ...) { - if(loadp==quote(`t`)) { - source(filename, local=FALSE) - } else { - parse(filename) - } - TRUE + times <- system.time(parse(filename)) + list(quote(`:compilation-result`), list(), TRUE, times[3], substitute(loadp), filename) }