From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: ignore is bound to but is META Date: Mon, 03 Apr 2006 20:22:28 +0200 Message-ID: <443167E4.8060702@student.lu.se> References: <44315469.1080203@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1144088577 17699 80.91.229.2 (3 Apr 2006 18:22:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 3 Apr 2006 18:22:57 +0000 (UTC) Cc: Stefan Monnier , Emacs Devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Apr 03 20:22:54 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FQThN-0005BW-Lm for ged-emacs-devel@m.gmane.org; Mon, 03 Apr 2006 20:22:46 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FQThN-00058z-25 for ged-emacs-devel@m.gmane.org; Mon, 03 Apr 2006 14:22:45 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FQThB-00058j-QX for emacs-devel@gnu.org; Mon, 03 Apr 2006 14:22:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FQThA-00058X-Ds for emacs-devel@gnu.org; Mon, 03 Apr 2006 14:22:33 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FQThA-00058U-5r for emacs-devel@gnu.org; Mon, 03 Apr 2006 14:22:32 -0400 Original-Received: from [81.228.8.83] (helo=pne-smtpout1-sn2.hy.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FQTkG-0000Y9-Cg; Mon, 03 Apr 2006 14:25:44 -0400 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout1-sn2.hy.skanova.net (7.2.070) id 44311E3A00017FEB; Mon, 3 Apr 2006 20:22:29 +0200 User-Agent: Thunderbird 1.5 (Windows/20051201) Original-To: Jason Rumney In-Reply-To: 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:52372 Archived-At: Jason Rumney wrote: > Lennart Borgman writes: > > >> This is maybe w32 specific, I am not sure. >> >> I have bound to META but `describe-function' says `ignore' >> is still bound to . What is wrong? Am I overlooking >> something? >> > > What do you mean when you say you bound lwindow to META? > Sorry for my bad wordings. I do something like this: (when lwindow-meta (setq w32-lwindow-modifier 'meta) (setq w32-pass-lwindow-to-system nil)) This is in my w32-meta.el (that uses my patch for the low level keyboard hook, but that is another story). Maybe I just ought just to add (global-unset-key [(lwindow)]) at least to be more consistent? On the other hand I do not think that Emacs should say that a key is bound to anything if it is used as META. But I am a bit confused here so I appreciate explanations!