From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Another menu question - , and Date: Tue, 28 Jun 2005 00:38:38 +0200 Message-ID: References: <42C066BE.6010800@student.lu.se> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1119909557 1646 80.91.229.2 (27 Jun 2005 21:59:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 27 Jun 2005 21:59:17 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jun 27 23:59:17 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dn1cX-00049F-5i for ged-emacs-devel@m.gmane.org; Mon, 27 Jun 2005 23:58:25 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dn1kF-00015p-CB for ged-emacs-devel@m.gmane.org; Mon, 27 Jun 2005 18:06:23 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Dn1en-0005ud-PW for emacs-devel@gnu.org; Mon, 27 Jun 2005 18:00:47 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Dn1eb-0005ng-IQ for emacs-devel@gnu.org; Mon, 27 Jun 2005 18:00:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Dn1eZ-0005hX-4T for emacs-devel@gnu.org; Mon, 27 Jun 2005 18:00:31 -0400 Original-Received: from [192.114.186.24] (helo=legolas.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Dn1OB-0002gv-MF for emacs-devel@gnu.org; Mon, 27 Jun 2005 17:43:35 -0400 Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-206-187.inter.net.il [80.230.206.187]) by legolas.inter.net.il (MOS 3.5.8-GR) with ESMTP id EST32955 (AUTH halo1); Tue, 28 Jun 2005 00:38:39 +0300 (IDT) Original-To: Lennart Borgman In-reply-to: <42C066BE.6010800@student.lu.se> (message from Lennart Borgman on Mon, 27 Jun 2005 22:51:10 +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:39696 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:39696 > Date: Mon, 27 Jun 2005 22:51:10 +0200 > From: Lennart Borgman > > On w32 the keyboard shortcuts for cut, copy and paste are shown as in > the subject line. I still do not remember how to find them (I happily > use cua-mode;-). Some keyboards actually have keys labeled by those names. > Does this look the same way on other platforms? Every graphics display should present the same. That is the result of the call to menu-bar-enable-clipboard that is part of x-win.el, w32-win.el, and mac-win.el. They rebind Edit->Cut, Copy, and Paste to special clipboard-* functions; those functions are not by default bound to C-w, M-w, and C-y that I think you expected to find. > Could not the actual keyboard shortcuts be used instead? You mean, C-w etc.? They invoke different functions.