From: Eshel Yaron Date: Wed, 7 Aug 2024 11:52:58 +0000 (+0200) Subject: ; * kubed.el (kubed-list-filter-operator-alist): Fix typo. X-Git-Tag: v0.3.2~25 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e33dc7d9e57f8f25c978aa5d06d42ee65d39d520;p=kubed.git ; * kubed.el (kubed-list-filter-operator-alist): Fix typo. --- diff --git a/kubed.el b/kubed.el index fa9da90..972aff2 100644 --- a/kubed.el +++ b/kubed.el @@ -330,7 +330,7 @@ should only be available in buffers that display Kuberenetes resources." (if (= l r) (string> s v) (> l r)))) (defcustom kubed-list-filter-operator-alist - `((= . string=) + '((= . string=) (~ . string-match-p) (< . kubed-list-filter-lt-operator) (> . kubed-list-filter-gt-operator))