diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-05-24 23:08:04 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-05-24 23:08:04 -0400 |
commit | df76dacbd1f6830c96cf63053efe776d40c0e84d (patch) | |
tree | 18171ff68af38fa934fe44c256c26047e087220b /lisp/emacs-lisp | |
parent | c902337068f52666425b7647e5aa43c621146e56 (diff) | |
download | emacs-df76dacbd1f6830c96cf63053efe776d40c0e84d.tar.gz emacs-df76dacbd1f6830c96cf63053efe776d40c0e84d.tar.bz2 emacs-df76dacbd1f6830c96cf63053efe776d40c0e84d.zip |
* lisp/emacs-lisp/lisp.el (lisp-completion-at-point): Don't burp at EOB.
Fixes: debbugs:14446
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index ce8f45e9730..b221d2f823d 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -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 |