From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Andrew Choi Newsgroups: gmane.emacs.devel Subject: Re: Problem with the RETURN key Date: Tue, 17 Dec 2002 01:48:06 -0700 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <453EDB86-118F-11D7-B29E-00039398D61E@apache.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7BIT X-Trace: main.gmane.org 1040115067 32132 80.91.224.249 (17 Dec 2002 08:51:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 17 Dec 2002 08:51:07 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18ODRR-0008M6-00 for ; Tue, 17 Dec 2002 09:51:05 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18ODfK-0004Mc-00 for ; Tue, 17 Dec 2002 10:05:26 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18ODRA-0006Wl-03 for emacs-devel@quimby.gnus.org; Tue, 17 Dec 2002 03:50:48 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 18ODQS-00067q-00 for emacs-devel@gnu.org; Tue, 17 Dec 2002 03:50:04 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 18ODPC-0005If-00 for emacs-devel@gnu.org; Tue, 17 Dec 2002 03:48:47 -0500 Original-Received: from shawidc-mo1.cg.shawcable.net ([24.71.223.10] helo=pd4mo2so.prod.shaw.ca) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18ODOb-00059a-00 for emacs-devel@gnu.org; Tue, 17 Dec 2002 03:48:09 -0500 Original-Received: from pd2mr3so.prod.shaw.ca (pd2mr3so-ser.prod.shaw.ca [10.0.141.108])2002)) with ESMTP id <0H7900FPR9S8OU@l-daemon> for emacs-devel@gnu.org; Tue, 17 Dec 2002 01:48:08 -0700 (MST) Original-Received: from pn2ml5so.prod.shaw.ca (pn2ml5so-qfe0.prod.shaw.ca [10.0.121.149]) by l-daemon (iPlanet Messaging Server 5.1 HotFix 0.8 (built May 12 2002)) with ESMTP id <0H7900KAB9S8EL@l-daemon> for emacs-devel@gnu.org; Tue, 17 Dec 2002 01:48:08 -0700 (MST) Original-Received: from owlbear.local.shawmail (h68-144-207-94.cg.shawcable.net [68.144.207.94]) by l-daemon (iPlanet Messaging Server 5.1 HotFix 0.8 (built May 12 2002)) with ESMTP id <0H7900E6I9S7YH@l-daemon> for emacs-devel@gnu.org; Tue, 17 Dec 2002 01:48:08 -0700 (MST) In-reply-to: <453EDB86-118F-11D7-B29E-00039398D61E@apache.org> Original-To: Ovidiu Predescu User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 Original-Lines: 20 Original-cc: Steven Tamm X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:10200 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:10200 Ovidiu Predescu writes: > The result is " is undefined". This happens with no startup > file. [...] > > Any ideas on how to proceed further? Please read the node `Translating Input' in the Elisp manual. What is the value of `function-key-map'? Mine says: (keymap (M-return . [-134217715]) (return . [13]) (kp-equal . [61]) (kp-divide . [47]) (kp-decimal . [46]) (kp-subtract . [45]) (kp-separator . [44]) (kp-add . [43]) (kp-multiply . [42]) (kp-enter . [13]) (kp-tab . [9]) ...) Note the entry for `return'. If it is not there, you can say something like (define-key function-key-map [return] [13]) but this really shouldn't be necessary. Are you sure you have a correct installation? Is the problem really specific to the Powerbook G4?