mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-13 09:32:47 +00:00
* lisp/emacs-lisp/lisp.el (lisp-completion-at-point): Don't burp at EOB.
Fixes: debbugs:14446
This commit is contained in:
parent
c902337068
commit
df76dacbd1
@ -2,6 +2,7 @@
|
||||
|
||||
* emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
|
||||
error-completion on the first 2 args of condition-case (bug#14446).
|
||||
Don't burp at EOB.
|
||||
|
||||
2013-05-25 Leo Liu <sdl.web@gmail.com>
|
||||
|
||||
|
@ -726,7 +726,7 @@ considered."
|
||||
(let ((tail (if (null (car table-etc))
|
||||
(cdr table-etc)
|
||||
(cons
|
||||
(if (memq (char-syntax (char-after end))
|
||||
(if (memq (char-syntax (or (char-after end) ?\s))
|
||||
'(?\s ?>))
|
||||
(cadr table-etc)
|
||||
(apply-partially 'completion-table-with-terminator
|
||||
|
Loading…
Reference in New Issue
Block a user