I installed the new release of emacs 23.1 and the very first difference I saw is that after M-x find-grep it takes 5-7 sec to show the standard command "find . -type f -print0 | xargs -0 -e grep -n ".
In release notes for 23.1 there is something about "Smarter minibuffer completion". Can I disable this feature and return to the old implementation when the command appeared immediately?
ANSWER: It is necessary to put somewhere in .emacs
(setq grep-highlight-matches nil)
to avoid a call (grep-probe) which takes a long time