diff options
| author | Tom Dalziel <33435574+tomdl89@users.noreply.github.com> | 2021-10-04 22:29:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-04 22:29:39 +0200 |
| commit | d8f573270841dade794df44c08d4a512a3008968 (patch) | |
| tree | fef927829bab046aced87d347b58d048b2dc3e27 /evil-repeat.el | |
| parent | cb39d3dc9f0806366e8a37a61ff967fa329b78a2 (diff) | |
Fix compiler warnings (#1525)
Diffstat (limited to 'evil-repeat.el')
| -rw-r--r-- | evil-repeat.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/evil-repeat.el b/evil-repeat.el index f0014bd..e9c4295 100644 --- a/evil-repeat.el +++ b/evil-repeat.el @@ -553,6 +553,9 @@ and only if COUNT is non-nil." (t (evil-execute-repeat-info repeat-info))))) +;; Keep the compiler happy - this is a buffer local var +(defvar evil--execute-normal-return-state) + (evil-define-command evil-repeat (count &optional save-point) "Repeat the last editing command with count replaced by COUNT. If SAVE-POINT is non-nil, do not move point." |
