From e7c3ba0c5282999be36c4cdd67fb4f1501e73ecf Mon Sep 17 00:00:00 2001 From: jao Date: Thu, 23 Jun 2011 01:29:09 +0200 Subject: [PATCH] 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) -- 2.11.4.GIT