branch: externals/company
commit 66201465a962ac003f320a1df612641b2b276ab5
Author: Philipp Stephani <[email protected]>
Commit: GitHub <[email protected]>
Fix syntax error in &key argument (#1419)
The &key keyword may only appear once.
---
company.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/company.el b/company.el
index fa27a65938..fe3258d326 100644
--- a/company.el
+++ b/company.el
@@ -1166,7 +1166,7 @@ matches IDLE-BEGIN-AFTER-RE, return it wrapped in a cons."
(cl-defun company-cache-fetch (key
fetcher
- &key expire &key check-tag)
+ &key expire check-tag)
"Fetch the value assigned to KEY in the cache.
When not found, or when found to be stale, calls FETCHER to compute the
result. When EXPIRE is non-nil, the value will be deleted at the end of