summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Gutov <dgutov@yandex.ru>2021-04-10 01:51:39 +0300
committerDmitry Gutov <dgutov@yandex.ru>2021-04-10 01:51:39 +0300
commit0db2126d7176b0bd1b13d4b0d1cd958c8cf55714 (patch)
treed57a5cf43b09cb0afa06637f7020f673f7c69457
parentf493a9bef46dc48f7282e296996186d6d8f77684 (diff)
downloademacs-0db2126d7176b0bd1b13d4b0d1cd958c8cf55714.tar.gz
Don't stop when before space or closing paren
* lisp/progmodes/elisp-mode.el (elisp-completion-at-point): Don't stop when before space or closing paren (bug#47665).
-rw-r--r--lisp/progmodes/elisp-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el
index 8ade718640c..203712f45db 100644
--- a/lisp/progmodes/elisp-mode.el
+++ b/lisp/progmodes/elisp-mode.el
@@ -496,7 +496,7 @@ functions are annotated with \"<f>\" via the
(end
(unless (or (eq beg (point-max))
(member (char-syntax (char-after beg))
- '(?\s ?\" ?\( ?\))))
+ '(?\" ?\()))
(condition-case nil
(save-excursion
(goto-char beg)