From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: Suggestions for the temporary windows used from the minibuffer Date: Mon, 08 Aug 2005 08:09:56 -0400 Message-ID: References: <42F34A82.9070703@student.lu.se> <42F3F3D7.7060506@student.lu.se> <42F541C5.5000605@student.lu.se> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-15 X-Trace: sea.gmane.org 1123505218 12418 80.91.229.2 (8 Aug 2005 12:46:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 8 Aug 2005 12:46:58 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Aug 08 14:46:57 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1E270T-0001Rd-Nt for ged-emacs-devel@m.gmane.org; Mon, 08 Aug 2005 14:45:30 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E273T-00027y-U1 for ged-emacs-devel@m.gmane.org; Mon, 08 Aug 2005 08:48:36 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1E26z1-00087h-Nl for emacs-devel@gnu.org; Mon, 08 Aug 2005 08:43:59 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1E26yz-00087D-1N for emacs-devel@gnu.org; Mon, 08 Aug 2005 08:43:59 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1E26y8-0007SW-Kb for emacs-devel@gnu.org; Mon, 08 Aug 2005 08:43:04 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1E26hd-00012K-11 for emacs-devel@gnu.org; Mon, 08 Aug 2005 08:26:01 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1E26S4-0002ND-JR; Mon, 08 Aug 2005 08:09:56 -0400 Original-To: Lennart Borgman In-reply-to: <42F541C5.5000605@student.lu.se> (message from Lennart Borgman on Sun, 07 Aug 2005 01:03:33 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:41699 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:41699 "You have typed %THIS-KEY%, the help character. Type a Help option: -\(Use SPC or DEL to scroll through this text. Type \\\\[help-quit] to exit the Help command.) +\(Use Page Up/Down to scroll through this text. Type \\\\[help-quit] to exit the Help command.) I would rather not change that message. Not all terminals have Page Up and Page Down. + (format "Type one of the options listed, or %s: " + (if (pos-visible-in-window-p (point-max)) + "Page Up" + (if (pos-visible-in-window-p (point-min)) + "Page Down" + "or Page Up/Down to scroll")))) + char (aref key 0))) + Likewise, here I'd rather have it say SPC and DEL. Please change that and install your patch.