]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't stop when before space or closing paren
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 9 Apr 2021 22:51:39 +0000 (01:51 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 9 Apr 2021 22:51:39 +0000 (01:51 +0300)
* lisp/progmodes/elisp-mode.el (elisp-completion-at-point):
Don't stop when before space or closing paren (bug#47665).

lisp/progmodes/elisp-mode.el

index 8ade718640c3a285592ec3fed3da1537a7db29b1..203712f45dbc02ff11284adc254ea6ae037a5b13 100644 (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)