From 50b8fc12ab7346928cfca91b2754ffe5e9dad370 Mon Sep 17 00:00:00 2001 From: Peter Feigl Date: Thu, 3 May 2012 09:32:00 +0200 Subject: [PATCH 3/6] Adding completion function swank:completions as an alias for swank:simple-completions. * Completion Trying to auto-complete in the REPL raises condition "Unbound variable: swank:completions". It seems swank added swank:completions in addition (or instead of?) swank:simple-completions. --- src/runtime/swank.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/runtime/swank.scm b/src/runtime/swank.scm index 02ff0b9..cd59077 100644 --- a/src/runtime/swank.scm +++ b/src/runtime/swank.scm @@ -1040,3 +1040,5 @@ swank:xref '()) (else x))) + +(define swank:completions swank:simple-completions) -- 1.7.10