diff options
| author | Stefan Monnier | 2013-05-24 23:08:04 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2013-05-24 23:08:04 -0400 |
| commit | df76dacbd1f6830c96cf63053efe776d40c0e84d (patch) | |
| tree | 18171ff68af38fa934fe44c256c26047e087220b /lisp | |
| parent | c902337068f52666425b7647e5aa43c621146e56 (diff) | |
| download | emacs-df76dacbd1f6830c96cf63053efe776d40c0e84d.tar.gz emacs-df76dacbd1f6830c96cf63053efe776d40c0e84d.zip | |
* lisp/emacs-lisp/lisp.el (lisp-completion-at-point): Don't burp at EOB.
Fixes: debbugs:14446
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/emacs-lisp/lisp.el | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 57625ef4dbe..efa6f06cbb1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use | 3 | * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use |
| 4 | error-completion on the first 2 args of condition-case (bug#14446). | 4 | error-completion on the first 2 args of condition-case (bug#14446). |
| 5 | Don't burp at EOB. | ||
| 5 | 6 | ||
| 6 | 2013-05-25 Leo Liu <sdl.web@gmail.com> | 7 | 2013-05-25 Leo Liu <sdl.web@gmail.com> |
| 7 | 8 | ||
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." | |||
| 726 | (let ((tail (if (null (car table-etc)) | 726 | (let ((tail (if (null (car table-etc)) |
| 727 | (cdr table-etc) | 727 | (cdr table-etc) |
| 728 | (cons | 728 | (cons |
| 729 | (if (memq (char-syntax (char-after end)) | 729 | (if (memq (char-syntax (or (char-after end) ?\s)) |
| 730 | '(?\s ?>)) | 730 | '(?\s ?>)) |
| 731 | (cadr table-etc) | 731 | (cadr table-etc) |
| 732 | (apply-partially 'completion-table-with-terminator | 732 | (apply-partially 'completion-table-with-terminator |