branch: elpa/geiser-guile
commit 1421a7172cd41e3660a5f2eab23b32bb652ebaf9
Author: jao <[email protected]>
Commit: jao <[email protected]>

    Guile: find module when cursor is before define-module (#33497)
    
    If we didn't find a define-module form after the cursor, or an
    enclosing R6RS library form, we search forward for a module
    definition.  That way, things like C-c C-a work also from the top of
    the file.
---
 elisp/geiser-guile.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el
index 648c64e..da14b4e 100644
--- a/elisp/geiser-guile.el
+++ b/elisp/geiser-guile.el
@@ -162,7 +162,8 @@ This function uses `geiser-guile-init-file' if it exists."
              (while (not (zerop (geiser-syntax--nesting-level)))
                (backward-up-list)))
            (if (or (re-search-backward geiser-guile--module-re nil t)
-                   (looking-at geiser-guile--library-re))
+                   (looking-at geiser-guile--library-re)
+                   (re-search-forward geiser-guile--module-re nil t))
                (geiser-guile--get-module (match-string-no-properties 1))
              :f)))
         ((listp module) module)

Reply via email to