> When I do > > % src/emacs -Q --eval '(setq default-frame-alist (quote ((minibuffer . nil))))' > M-: (goto-char (point-min)) RET > > the cursor stays at EOB rather than going to BOB. I suspect this is due > to the recent change with the Fset_window_configuration issue. I have posted two possible fixes: Either you replace the code if (EQ (window, selected_window)) return window; in Fselect_window with if (EQ (window, selected_window)) { inhibit_point_swap = 0; return window; } or you try the attached patch. If possible, try both fixes. martin, who should think about a better solution