diff options
| author | Stefan Kangas | 2019-10-03 04:08:11 +0200 |
|---|---|---|
| committer | Stefan Kangas | 2019-10-03 04:08:11 +0200 |
| commit | 1854511e97843e028a76cd5a6d8fee74cfabd3d1 (patch) | |
| tree | 0e99b6c83e5dbbfb2662a079f6abf6384c14f126 /lisp/eshell | |
| parent | 52ab9485107919771d3627b93c8a996563b34abd (diff) | |
| download | emacs-1854511e97843e028a76cd5a6d8fee74cfabd3d1.tar.gz emacs-1854511e97843e028a76cd5a6d8fee74cfabd3d1.zip | |
Don't use obsolete name in em-cmpl.el
* lisp/eshell/em-cmpl.el (eshell-complete-lisp-symbol): Update
reference to 'elisp-completion-at-point' from its obsolete name.
Reported by Carlos Pita <carlosjosepita@gmail.com>. (Bug#31906)
Diffstat (limited to 'lisp/eshell')
| -rw-r--r-- | lisp/eshell/em-cmpl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-cmpl.el b/lisp/eshell/em-cmpl.el index df4e24c88b1..7f203142589 100644 --- a/lisp/eshell/em-cmpl.el +++ b/lisp/eshell/em-cmpl.el | |||
| @@ -241,7 +241,7 @@ to writing a completion function." | |||
| 241 | (defun eshell-complete-lisp-symbol () | 241 | (defun eshell-complete-lisp-symbol () |
| 242 | "Try to complete the text around point as a Lisp symbol." | 242 | "Try to complete the text around point as a Lisp symbol." |
| 243 | (interactive) | 243 | (interactive) |
| 244 | (let ((completion-at-point-functions '(lisp-completion-at-point))) | 244 | (let ((completion-at-point-functions '(elisp-completion-at-point))) |
| 245 | (completion-at-point))) | 245 | (completion-at-point))) |
| 246 | 246 | ||
| 247 | (defvar eshell-cmpl-mode-map | 247 | (defvar eshell-cmpl-mode-map |