From: Dmitry Gutov Date: Fri, 9 Apr 2021 22:51:39 +0000 (+0300) Subject: Don't stop when before space or closing paren X-Git-Tag: emacs-28.0.90~2947 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0db2126d7176b0bd1b13d4b0d1cd958c8cf55714;p=emacs.git 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). --- 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 \"\" via the (end (unless (or (eq beg (point-max)) (member (char-syntax (char-after beg)) - '(?\s ?\" ?\( ?\)))) + '(?\" ?\())) (condition-case nil (save-excursion (goto-char beg)