From 1854511e97843e028a76cd5a6d8fee74cfabd3d1 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Thu, 3 Oct 2019 04:08:11 +0200 Subject: [PATCH] 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 . (Bug#31906) --- lisp/eshell/em-cmpl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5