From 8e9584ceeae48b53372f50ea3320cd540293f653 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Thu, 7 Oct 2010 23:11:16 +0100 Subject: [PATCH] better swank:find-definitions-for-emacs In particular, include enough of a kludge to be able to handle both relative and absolute paths. --- swank.R | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/swank.R b/swank.R index f0aee27..747696a 100644 --- a/swank.R +++ b/swank.R @@ -445,9 +445,16 @@ withRetryRestart <- function(description, expr) { list() } else { filename <- get("filename", srcfile) + ## KLUDGE: what this means is "is the srcfile filename + ## absolute?" + if(substr(filename, 1, 1) == "/") { + file <- filename + } else { + file <- sprintf("%s/%s", srcfile$wd, filename) + } list(list(sprintf("function %s", string), list(quote(`:location`), - list(quote(`:file`), sprintf("%s/%s", srcfile$wd, srcfile$filename)), + list(quote(`:file`), file), list(quote(`:line`), srcref[[2]][[1]], srcref[[2]][[2]]-1), list()))) } -- 2.30.2