From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Bruce Ingalls Newsgroups: gmane.emacs.help Subject: Re: Mac OS pagedown Date: Thu, 08 Jan 2004 19:40:15 GMT Organization: Road Runner - NYC Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1073725439 952 80.91.224.253 (10 Jan 2004 09:03:59 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 10 Jan 2004 09:03:59 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sat Jan 10 10:03:56 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AfF2B-0006JG-00 for ; Sat, 10 Jan 2004 10:03:56 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1Aeh36-0005R4-TT for geh-help-gnu-emacs@m.gmane.org; Thu, 08 Jan 2004 15:46:36 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!arclight.uoregon.edu!wn11feed!worldnet.att.net!199.45.49.37!cyclone1.gnilink.net!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!53ab2750!not-for-mail User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b) Gecko/20031205 Thunderbird/0.4 X-Accept-Language: en-us, en Original-Newsgroups: gnu.emacs.help In-Reply-To: Original-Lines: 27 Original-NNTP-Posting-Host: 68.174.39.174 Original-X-Complaints-To: abuse@rr.com Original-X-Trace: twister.nyc.rr.com 1073590815 68.174.39.174 (Thu, 08 Jan 2004 14:40:15 EST) Original-NNTP-Posting-Date: Thu, 08 Jan 2004 14:40:15 EST Original-Xref: shelby.stanford.edu gnu.emacs.help:119881 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:15890 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:15890 Chris Swoyer wrote: > I am using a Mac powerbookG4 with OS 10.3.2 and the latest enhanced > carbon emacs. ... I have somehow lost the page-down function, which used > to work with Control-v (ditto for the page-up which was bound to > Control-s). These bindings from may help. ;;Toggle whether Command key acts like Esc key. (put 'mac-command-key-is-meta 'standard-value (list 't)) (global-set-key [(control l)] 'forward-page) ;page down key ;;(global-set-key [(control k)] 'backward-page) ;override cut to end of line ;;(global-set-key [(control d)] 'end-of-line) ;end key overrides delete-char (global-set-key [(control p)] 'help) ;f1 key override up line ;;(global-set-key [(control e)] 'help) ;help key override end of line You might wish to try "scroll-up" instead of "forward-page" First, bring up your list of keybindings, by hitting C-h b Next search the list for "scroll-up" or "forward-page". This will be more difficult, as you have remapped the C-s keybinding. Finally, you can see what keystroke is generated, by hitting the PgDn key, then inspect its result with C-h l