[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/company d028a74278 1/2: company-capf--post-completion:
From: |
ELPA Syncer |
Subject: |
[elpa] externals/company d028a74278 1/2: company-capf--post-completion: Fix naming |
Date: |
Wed, 11 Sep 2024 18:57:35 -0400 (EDT) |
branch: externals/company
commit d028a742782bb0966a99219340f59586b5bf9a81
Author: Dmitry Gutov <dmitry@gutov.dev>
Commit: Dmitry Gutov <dmitry@gutov.dev>
company-capf--post-completion: Fix naming
---
company-capf.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/company-capf.el b/company-capf.el
index 08f2e6310f..9f798c7054 100644
--- a/company-capf.el
+++ b/company-capf.el
@@ -160,7 +160,7 @@ so we can't just use the preceding variable instead.")
(plist-get (nthcdr 4 (company--capf-data)) :company-require-match))
(`init nil) ;Don't bother: plenty of other ways to initialize the
code.
(`post-completion
- (company--capf-post-completion arg))
+ (company-capf--post-completion arg))
(`adjust-boundaries
(company--capf-boundaries
company-capf--current-boundaries))
@@ -228,7 +228,7 @@ so we can't just use the preceding variable instead.")
(throw 'interrupted 'new-input))
res)))
-(defun company--capf-post-completion (arg)
+(defun company-capf--post-completion (arg)
(let* ((res company-capf--current-completion-data)
(exit-function (plist-get (nthcdr 4 res) :exit-function))
(table (nth 3 res)))