From 4be9061b98b7723b5591c86005a25d0e6692208d Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Thu, 3 Feb 2011 23:23:06 +0100 Subject: [PATCH] Off-by-one in geiser-repl-tab-dwim --- elisp/geiser-repl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 3de0a60..563332c 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -479,7 +479,7 @@ module command as a string") there's no symbol at point). Otherwise, go to next error in the REPL buffer." (interactive "p") - (if (> (point) (geiser-repl--last-prompt-end)) + (if (>= (point) (geiser-repl--last-prompt-end)) (completion-at-point) (compilation-next-error n))) -- 2.11.4.GIT