branch: elpa/slime
commit eb96db30d2bc47c775fa0fba081e8d93759a0ec7
Author: Stas Boukarev <[email protected]>
Commit: Stas Boukarev <[email protected]>
Fix slime-simple-completion-at-point.
---
slime.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/slime.el b/slime.el
index 164cae6c2b6..8dfb9176bf3 100644
--- a/slime.el
+++ b/slime.el
@@ -3636,7 +3636,7 @@ more than one space."
Perform completion similar to `elisp-completion-at-point'."
(let* ((end (point))
(beg (slime-symbol-start-pos)))
- (list beg end (slime-simple-completions))))
+ (list beg end (completion-table-dynamic #'slime-simple-completions))))
(defun slime-filename-completion ()
"If point is at a string starting with \", complete it as filename.