From: Christophe Rhodes Date: Fri, 13 Aug 2010 16:24:02 +0000 (+0100) Subject: implement swank:buffer-first-change X-Git-Url: http://christophe.rhodes.io/gitweb/?p=swankr.git;a=commitdiff_plain;h=746cf1b465d24639b7486ebe33f20f5d2a4dbcc5 implement swank:buffer-first-change Simply stub it in, to stop things whining at me when I type into the wrong window and edit a Lisp file (which happens to be in slime mode...) --- diff --git a/swank.R b/swank.R index c6a1ec2..09ad173 100644 --- a/swank.R +++ b/swank.R @@ -267,3 +267,7 @@ writeSexpToString <- function(obj) { invokeRestart(computeRestarts()[[n+1]]) } } + +`swank:buffer-first-change` <- function(io, sldbState, filename) { + FALSE +}