branch: externals/mct commit fe0f17c1ab877e306056af7da99b07fb30d4c5fe Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Handle new completion-wrap-movement Otherwise it leads to regressions with our cyclic behaviour. --- mct.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mct.el b/mct.el index 80449227fb..eb8d665b4a 100644 --- a/mct.el +++ b/mct.el @@ -1076,6 +1076,7 @@ region.") "Set up the completion-list for Mct." (when (mct--minibuffer-p) (setq-local completion-show-help nil + completion-wrap-movement nil ; Emacs 29 truncate-lines t) (mct--setup-clean-completions) (mct--setup-appearance) @@ -1227,6 +1228,7 @@ minibuffer)." "Set up the completion-list for Mct." (when (mct--region-p) (setq-local completion-show-help nil + completion-wrap-movement nil ; Emacs 29 truncate-lines t) (mct--setup-clean-completions) (mct--setup-appearance)