branch: elpa/geiser-gauche
commit b474b09b8708e6a8dc024050bcab9cb85d0d7253
Author: András Simonyi <[email protected]>
Commit: András Simonyi <[email protected]>
Don't filter completions based on context (for now)
---
geiser.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/geiser.scm b/geiser.scm
index 9e7cd69..a0639f2 100644
--- a/geiser.scm
+++ b/geiser.scm
@@ -63,8 +63,11 @@
(remove
(^x (or (string=? x "")
(string-prefix? "(" x)
- (not (global-variable-bound? (current-module)
- (string->symbol x)))))
+ ;; TODO check whether it is bound in the current module?
+ ;; probably needs changing this into a macro...
+ ;; (not (global-variable-bound? (current-module)
+ ;; (string->symbol x)))
+ ))
(string-split
(with-output-to-string
(cut apropos (string->regexp (string-append "^" prefix))))