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-ex.el | |
| parent | 95be93cea7c20311f1ad83c09def850923ffe4f3 (diff) | |
treewide: replace `(eq/equal foo nil)` with `(null foo)`
Diffstat (limited to 'evil-ex.el')
| -rw-r--r-- | evil-ex.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -545,7 +545,7 @@ in case of incomplete or unknown commands." (defun evil-completion-table-concat (table1 table2) (lambda (string pred action) (cond - ((eq action nil) + ((null action) (let (matches) (dolist (table (list table1 table2) (try-completion string matches)) (let ((x (try-completion string table pred))) |
