diff options
| author | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-27 09:06:07 +0100 |
|---|---|---|
| committer | Daniel Mendler <mail@daniel-mendler.de> | 2023-01-27 09:06:07 +0100 |
| commit | 70d9db4bd71fbf979ab3fbb8f2a4db9f75b35817 (patch) | |
| tree | 25a8f7d110119012b5808d3e5d471ec2c6343fa5 | |
| parent | 68e08c2f6ed892b7b2848c0c18a02302b64fe5f1 (diff) | |
Fix last commit
| -rw-r--r-- | cape-char.el | 2 | ||||
| -rw-r--r-- | cape-keyword.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cape-char.el b/cape-char.el index 873a004..09b1709 100644 --- a/cape-char.el +++ b/cape-char.el @@ -117,7 +117,7 @@ is nil the function acts like a capf." method method) (when (and (memq last-input-event ',prefix) (not (thing-at-point-looking-at ,thing-re))) (self-insert-command 1 last-input-event)) - (cape--interactive #',capf)) + (cape-interactive #',capf)) (when-let (bounds (cond ((thing-at-point-looking-at ,thing-re) diff --git a/cape-keyword.el b/cape-keyword.el index ef88845..84409bd 100644 --- a/cape-keyword.el +++ b/cape-keyword.el @@ -402,7 +402,7 @@ See the variable `cape-keyword-list'. If INTERACTIVE is nil the function acts like a capf." (interactive (list t)) (if interactive - (cape--interactive #'cape-keyword) + (cape-interactive #'cape-keyword) (when-let (keywords (cape--keyword-list)) (let ((bounds (cape--bounds 'symbol))) `(,(car bounds) ,(cdr bounds) |
