From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Xah Lee Newsgroups: gmane.emacs.help Subject: Re: emacs dired: unable to view deletion list Date: Sun, 3 Apr 2011 21:06:56 -0700 (PDT) Organization: http://groups.google.com Message-ID: <359b7b9d-8b9e-406f-a3a4-9a963151be2c@i35g2000prd.googlegroups.com> References: <41b3b14c-d823-4715-a8d1-6ad54cb19a41@o15g2000prn.googlegroups.com><618e69c8-41d2-498f-b40c-3485cfa840a0@z3g2000prz.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1301892111 9231 80.91.229.12 (4 Apr 2011 04:41:51 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 4 Apr 2011 04:41:51 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Apr 04 06:41:47 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Q6bbl-0005tK-FG for geh-help-gnu-emacs@m.gmane.org; Mon, 04 Apr 2011 06:41:45 +0200 Original-Received: from localhost ([127.0.0.1]:40366 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q6bbk-00058c-NH for geh-help-gnu-emacs@m.gmane.org; Mon, 04 Apr 2011 00:41:44 -0400 Original-Path: usenet.stanford.edu!postnews.google.com!i35g2000prd.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 72 Original-NNTP-Posting-Host: 76.126.112.84 Original-X-Trace: posting.google.com 1301890017 18348 127.0.0.1 (4 Apr 2011 04:06:57 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Mon, 4 Apr 2011 04:06:57 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: i35g2000prd.googlegroups.com; posting-host=76.126.112.84; posting-account=bRPKjQoAAACxZsR8_VPXCX27T2YcsyMA User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16, gzip(gfe) Original-Xref: usenet.stanford.edu gnu.emacs.help:186483 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:80600 Archived-At: On Apr 3, 8:30=A0pm, "Drew Adams" wrote: > > Thanks Drew. Found the problem. It is > > (defalias 'yes-or-no-p 'y-or-n-p) > > though, odd it should be that way. This can be considered a bug? > > You might report a usability bug, to see what the Emacs developers think. > > My guess, without looking too far, is that this is because `y-or-n-p' rea= ds a > key directly (using `read-key') and looks it up in keymap `query-replace-= map'. > The key sequences `C-M-v' and `C-M-V' are not defined there, and it doesn= 't seem > to look beyond that map. =A0In that map it only handles certain keys (see= the > `cond' in `y-or-n-p'). > > These are the keys available in the keymap: > > ,---- > | query-replace-map > | ----------------- > | > | Keymap that defines the responses to questions in `query-replace'. > | The "bindings" in this map are not commands; they are answers. > | The valid answers include `act', `skip', `act-and-show', > | `exit', `act-and-exit', `edit', `delete-and-edit', `recenter', > | `automatic', `backup', `exit-prefix', and `help'. > | > | key =A0 =A0 =A0 =A0 =A0 =A0 binding > | --- =A0 =A0 =A0 =A0 =A0 =A0 ------- > | > | C-g =A0 =A0 =A0 =A0 =A0 quit > | C-h =A0 =A0 =A0 =A0 =A0 help > | C-l =A0 =A0 =A0 =A0 =A0 recenter > | RET =A0 =A0 =A0 =A0 =A0 exit > | C-r =A0 =A0 =A0 =A0 =A0 edit > | C-w =A0 =A0 =A0 =A0 =A0 delete-and-edit > | ESC =A0 =A0 =A0 =A0 =A0 exit-prefix > | C-] =A0 =A0 =A0 =A0 =A0 quit > | SPC =A0 =A0 =A0 =A0 =A0 act > | ! =A0 =A0 =A0 =A0 =A0 =A0 automatic > | , =A0 =A0 =A0 =A0 =A0 =A0 act-and-show > | . =A0 =A0 =A0 =A0 =A0 =A0 act-and-exit > | ? =A0 =A0 =A0 =A0 =A0 =A0 help > | E =A0 =A0 =A0 =A0 =A0 =A0 edit-replacement > | N =A0 =A0 =A0 =A0 =A0 =A0 skip > | Y =A0 =A0 =A0 =A0 =A0 =A0 act > | ^ =A0 =A0 =A0 =A0 =A0 =A0 backup > | e =A0 =A0 =A0 =A0 =A0 =A0 edit-replacement > | n =A0 =A0 =A0 =A0 =A0 =A0 skip > | q =A0 =A0 =A0 =A0 =A0 =A0 exit > | y =A0 =A0 =A0 =A0 =A0 =A0 act > | DEL =A0 =A0 =A0 =A0 =A0 skip > | =A0 =A0 skip > | =A0 =A0 =A0 =A0skip > | =A0 =A0 =A0 =A0exit-prefix > | =A0 =A0 =A0 =A0 =A0 =A0help > | =A0 =A0 =A0 =A0 =A0help > | =A0 =A0 =A0 =A0exit > | > | [back] > `---- > > HTH thanks Drew. I filed a bug report. Subject: possible bug: Delete File List Not Visible when yes-or-no aliased to y-or-n-p don't know the bug number yet. Xah