"Kim F. Storm" <[EMAIL PROTECTED]> writes: >> emacs -Q > C-x C-f <some vc-controlled file with many uncommitted change> RET > C-x v u > > <emacs frame spits into two with the diffs in the lower window> > > Prompt is "Discard changes? (yes or no)" > > <I would like to review the changes, so I try to scroll the diffs> > > C-M-v > > But this scrolls the source window rather than the diffs window. > Not very useful... >
Did anybody look at this? > > But it gets worse: > > I don't like the yes or no prompts, so I have this in my .emacs: > > (defalias 'yes-or-no-p 'y-or-n-p) > > Now, C-M-v doesn't work at all --- it just beeps. I looked into this ... and it is because yes-or-no-p uses read-from-minibuffer, and thus obeys all key bindings. In contrast, y-or-n-p does the reading itself, and looks up the bindings ONLY in query-replace-map (which obviously don't tell how to "scroll-other-window". I don't see an easy fix for this... -- Kim F. Storm <[EMAIL PROTECTED]> http://www.cua.dk _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
