1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

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).
This commit is contained in:
Dmitry Gutov 2021-04-10 01:51:39 +03:00
parent f493a9bef4
commit 0db2126d71

View file

@ -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)