From: Eshel Yaron Date: Mon, 15 Jul 2024 17:40:06 +0000 (+0200) Subject: Cease copying 'completion-ignore-case' buffer-local value X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=79bf8f0bb37136b99de4c91771afeb11d42357d4;p=emacs.git Cease copying 'completion-ignore-case' buffer-local value --- diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 6ba11312d4d..0347cd67098 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -5595,7 +5595,6 @@ See `completing-read' for the meaning of the arguments." minibuffer-local-must-match-map minibuffer-local-completion-map)) (buffer (current-buffer)) - (c-i-c completion-ignore-case) (result (minibuffer-with-setup-hook (lambda () @@ -5615,8 +5614,6 @@ See `completing-read' for the meaning of the arguments." (unless (eq require-match t) require-match)) (setq-local minibuffer--require-match require-match) (setq-local minibuffer--original-buffer buffer) - ;; Copy the value from original buffer to the minibuffer. - (setq-local completion-ignore-case c-i-c) (add-hook 'minibuffer-exit-hook #'minibuffer-kill-completions-buffer nil t)) (read-from-minibuffer prompt initial-input keymap