branch: externals/mct
commit 7e9069a9828fa9b68cff3fdae16446d9a86778e6
Author: Protesilaos Stavrou <i...@protesilaos.com>
Commit: Protesilaos Stavrou <i...@protesilaos.com>

    Fix check for emacs-major-version
---
 mct.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mct.el b/mct.el
index e91434a..fc1a5a7 100644
--- a/mct.el
+++ b/mct.el
@@ -390,7 +390,7 @@ Meant to be added to `after-change-functions'."
   "Test if we have a one-column view available."
   (and (eq completions-format 'one-column)
        (eq mct-completions-format 'one-column)
-       (> emacs-major-version 28)))
+       (>= emacs-major-version 28)))
 
 ;;;;; Focus minibuffer and/or show completions
 

Reply via email to