From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Ulrich Herbst Newsgroups: gmane.emacs.help Subject: Re: GNU Emacs on GNU/Debian Date: Wed, 25 Jun 2003 23:45:19 +0200 Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: 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 1056578732 4780 80.91.224.249 (25 Jun 2003 22:05:32 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 25 Jun 2003 22:05:32 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Thu Jun 26 00:05:31 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19VILl-0000xQ-00 for ; Thu, 26 Jun 2003 00:02:46 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19VIAK-0000hF-Gw for gnu-help-gnu-emacs@m.gmane.org; Wed, 25 Jun 2003 17:50:56 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!fu-berlin.de!uni-berlin.de!p50842b82.dip0.t-ipconnect.DE!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-NNTP-Posting-Host: p50842b82.dip0.t-ipconnect.de (80.132.43.130) Original-X-Trace: fu-berlin.de 1056577520 29001286 80.132.43.130 (16 [196878]) User-Agent: KNode/0.7.2 Original-Xref: shelby.stanford.edu gnu.emacs.help:114745 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11236 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11236 Andrei Maxim wrote: > I've tried using the `-nw' switch to run it in a terminal window, but my > greatest surprize was that the Alt (Meta) key was gone. If I pressed Alt-x > I got an extra x in the buffer. In X, when I press Alt-`key' all I get is > an annoying beep. 1. you can always use ESC - x when you need M-x (but I know, that's not comfortable) 2. look with xev what keycode your ALT-Key gives. If you get "ALT_L" than that is your problem (you need "META_L") There are 2 ways to change that: xmodmap -e "keysym Alt_L = Meta_L Alt_L" or add in /etc/X11/xkb/symbols/ something like key { [ Alt_L, Meta_L ], [ Alt_L, Meta_L ] }; Bye Uli