From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: Re: thumbs.el and transparency Date: Wed, 1 Feb 2006 20:07:44 -0600 (CST) Message-ID: <200602020207.k1227iY06898@raven.dms.auburn.edu> References: <17366.53124.274532.548329@kahikatea.snap.net.nz> <17369.59246.383626.699005@kahikatea.snap.net.nz> <17372.1305.835753.613893@kahikatea.snap.net.nz> <874q3llph9.fsf@stupidchicken.com> <200601312110.k0VLAqT12038@raven.dms.auburn.edu> <200601312345.k0VNjqY14517@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1138846839 17177 80.91.229.2 (2 Feb 2006 02:20:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 2 Feb 2006 02:20:39 +0000 (UTC) Cc: lekktu@gmail.com, rms@gnu.org, emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 02 03:20:38 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 1F4U5M-0002TN-BX for ged-emacs-devel@m.gmane.org; Thu, 02 Feb 2006 03:20:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F4U8R-00032k-MW for ged-emacs-devel@m.gmane.org; Wed, 01 Feb 2006 21:23:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F4Tzl-0002RC-LK for emacs-devel@gnu.org; Wed, 01 Feb 2006 21:14:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F4Tzj-0002PQ-RQ for emacs-devel@gnu.org; Wed, 01 Feb 2006 21:14:49 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F4Tzj-0002PK-Lz for emacs-devel@gnu.org; Wed, 01 Feb 2006 21:14:47 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.52) id 1F4TyQ-00049E-Bz; Wed, 01 Feb 2006 21:13:26 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.13.3+Sun/8.13.3) with ESMTP id k122BIr0023977; Wed, 1 Feb 2006 20:11:18 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id k1227iY06898; Wed, 1 Feb 2006 20:07:44 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: storm@cua.dk In-reply-to: (storm@cua.dk) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.1 (manatee.dms.auburn.edu [131.204.53.104]); Wed, 01 Feb 2006 20:11:18 -0600 (CST) 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:49898 Archived-At: Kim Storm wrote: > Maybe you could add something to the end of the cua-mode docstring > saying that trying to en/disable Transient Mark mode directly while > cua-mode is enabled has no effect, because cua-mode overrides it. Good idea. I just added this. The docstring already mentioned in the first paragraph that enabling CUA mode does enable Transient mark mode. I believe that the potential confusion that remains is that people might think that if they do not like this, they can override this aspect of CUA mode by turning off Transient Mark mode back again after enabling CUA mode. That was apparently what Juanma expected. So I believe that the following might be clearer: *** cua-base.el 01 Feb 2006 08:00:14 -0600 1.66 --- cua-base.el 01 Feb 2006 19:58:57 -0600 *************** *** 1395,1401 **** CUA bindings, or `cua-prefix-override-inhibit-delay' to change the prefix fallback behavior. ! CUA enables `transient-mark-mode' to highlight the region; if you only want to highlight the region when it is selected using a shifted movement key, set `cua-highlight-region-shift-only'." :global t --- 1395,1402 ---- CUA bindings, or `cua-prefix-override-inhibit-delay' to change the prefix fallback behavior. ! CUA mode manages Transient Mark mode internally. Trying to disable ! Transient Mark mode while CUA mode is enabled does not work; if you only want to highlight the region when it is selected using a shifted movement key, set `cua-highlight-region-shift-only'." :global t