diff options
| author | Konstantin Kharlamov <Hi-Angel@yandex.ru> | 2024-04-11 00:43:10 +0300 |
|---|---|---|
| committer | Tom Dalziel <33435574+tomdl89@users.noreply.github.com> | 2024-04-16 15:33:22 +0200 |
| commit | 95ee3ce1e5075b9ff396b6f7266cb6c7b9ccbd93 (patch) | |
| tree | 39256cfb98f099798ef7a290a26a7c3734249095 /evil-commands.el | |
| parent | 95be93cea7c20311f1ad83c09def850923ffe4f3 (diff) | |
treewide: replace `(eq/equal foo nil)` with `(null foo)`
Diffstat (limited to 'evil-commands.el')
| -rw-r--r-- | evil-commands.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evil-commands.el b/evil-commands.el index 82fadf2..7bc7435 100644 --- a/evil-commands.el +++ b/evil-commands.el @@ -3784,7 +3784,7 @@ Signal an error if the file does not exist." (let ((completions (cons '(nil) evil-state-properties))) (when arg (cond - ((eq flag nil) + ((null flag) (try-completion arg completions predicate)) ((eq flag t) (all-completions arg completions predicate)) |
