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:
parent
f493a9bef4
commit
0db2126d71
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue