aboutsummaryrefslogtreecommitdiff
path: root/evil-ex.el
diff options
context:
space:
mode:
authorKonstantin Kharlamov <Hi-Angel@yandex.ru>2024-04-11 00:43:10 +0300
committerTom Dalziel <33435574+tomdl89@users.noreply.github.com>2024-04-16 15:33:22 +0200
commit95ee3ce1e5075b9ff396b6f7266cb6c7b9ccbd93 (patch)
tree39256cfb98f099798ef7a290a26a7c3734249095 /evil-ex.el
parent95be93cea7c20311f1ad83c09def850923ffe4f3 (diff)
treewide: replace `(eq/equal foo nil)` with `(null foo)`
Diffstat (limited to 'evil-ex.el')
-rw-r--r--evil-ex.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/evil-ex.el b/evil-ex.el
index 246aa0d..644fe7f 100644
--- a/evil-ex.el
+++ b/evil-ex.el
@@ -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)))