From 1b36531863a45d1ba714b21500069bc6319ee31f Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Fri, 26 Nov 2010 02:29:25 +0100 Subject: Racket: more information in symbol documentation When the symbol is imported and re-exported by a second module, we display its definition name and original module, besides the name of the module re-exporting it. --- elisp/geiser-doc.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'elisp/geiser-doc.el') diff --git a/elisp/geiser-doc.el b/elisp/geiser-doc.el index b6a19e9..37c069e 100644 --- a/elisp/geiser-doc.el +++ b/elisp/geiser-doc.el @@ -274,10 +274,10 @@ help (e.g. browse an HTML page) implementing this method.") (geiser-eval--send/result `(:eval (:ge module-exports '(:module ,module)) :f))) -(defun geiser-doc--buttonize-module (impl) +(defun geiser-doc--buttonize-modules (impl) (save-excursion (goto-char (point-min)) - (when (re-search-forward "in module \\([^.\n]+\\)\\." nil t) + (while (re-search-forward "in module \\([^.\n]+\\)\\b" nil t) (geiser-doc--make-module-button (match-beginning 1) (match-end 1) (geiser-doc--module (match-string 1) @@ -298,7 +298,7 @@ help (e.g. browse an HTML page) implementing this method.") (cdr (assoc 'signature ds)))) (newline) (insert (or (cdr (assoc 'docstring ds)) "")) - (geiser-doc--buttonize-module impl) + (geiser-doc--buttonize-modules impl) (setq geiser-doc--buffer-link (geiser-doc--history-push (geiser-doc--make-link symbol module -- cgit v1.2.3