summaryrefslogtreecommitdiff
path: root/lisp/eshell
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2019-10-03 04:08:11 +0200
committerStefan Kangas <stefankangas@gmail.com>2019-10-03 04:08:11 +0200
commit1854511e97843e028a76cd5a6d8fee74cfabd3d1 (patch)
tree0e99b6c83e5dbbfb2662a079f6abf6384c14f126 /lisp/eshell
parent52ab9485107919771d3627b93c8a996563b34abd (diff)
downloademacs-1854511e97843e028a76cd5a6d8fee74cfabd3d1.tar.gz
emacs-1854511e97843e028a76cd5a6d8fee74cfabd3d1.tar.bz2
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.el2
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."
(defun eshell-complete-lisp-symbol ()
"Try to complete the text around point as a Lisp symbol."
(interactive)
- (let ((completion-at-point-functions '(lisp-completion-at-point)))
+ (let ((completion-at-point-functions '(elisp-completion-at-point)))
(completion-at-point)))
(defvar eshell-cmpl-mode-map