emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 1854511: Don't use obsolete name in em-cmpl.el


From: Stefan Kangas
Subject: [Emacs-diffs] master 1854511: Don't use obsolete name in em-cmpl.el
Date: Wed, 2 Oct 2019 22:13:51 -0400 (EDT)

branch: master
commit 1854511e97843e028a76cd5a6d8fee74cfabd3d1
Author: Stefan Kangas <address@hidden>
Commit: Stefan Kangas <address@hidden>

    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 <address@hidden>.  (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 df4e24c..7f20314 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]