From: Peter Feigl Date: Thu, 3 May 2012 07:32:00 +0000 (+0200) Subject: Adding completion function swank:completions as an alias for swank:simple-completions. X-Git-Tag: release-9.2.0~243^2~3 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=be8658c8613416f34f6cac78febaac56f9d7b57d;p=mit-scheme.git 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. --- diff --git a/src/runtime/swank.scm b/src/runtime/swank.scm index 02ff0b965..cd5907731 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)