emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/geiser-gauche b474b09 014/119: Don't filter completions ba


From: Philip Kaludercic
Subject: [nongnu] elpa/geiser-gauche b474b09 014/119: Don't filter completions based on context (for now)
Date: Sun, 1 Aug 2021 18:27:48 -0400 (EDT)

branch: elpa/geiser-gauche
commit b474b09b8708e6a8dc024050bcab9cb85d0d7253
Author: András Simonyi <andras.simonyi@gmail.com>
Commit: András Simonyi <andras.simonyi@gmail.com>

    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))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]