diff options
| author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-02-03 23:23:06 +0100 | 
|---|---|---|
| committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2011-02-03 23:23:06 +0100 | 
| commit | ba949ae16887950bcd49e70a0fe6c6abbfda9177 (patch) | |
| tree | cf3534ff37a2acb5442e8e5a3e7ba2e5b12a18ec | |
| parent | 57f8ffc4072fddd98ee8d94185497bf2798e48e2 (diff) | |
| download | geiser-ba949ae16887950bcd49e70a0fe6c6abbfda9177.tar.gz geiser-ba949ae16887950bcd49e70a0fe6c6abbfda9177.tar.bz2  | |
Off-by-one in geiser-repl-tab-dwim
| -rw-r--r-- | elisp/geiser-repl.el | 2 | 
1 files changed, 1 insertions, 1 deletions
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)))  | 
