From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] emacs-25 6bd9d69: Fix documentation of 'global-disable-point-adjustment' Date: Mon, 22 Feb 2016 13:50:37 -0500 Message-ID: References: <20160222173059.20603.67344@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1456167073 12818 80.91.229.3 (22 Feb 2016 18:51:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Feb 2016 18:51:13 +0000 (UTC) Cc: Eli Zaretskii To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Feb 22 19:51:04 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1aXvZX-0004nk-AE for ged-emacs-devel@m.gmane.org; Mon, 22 Feb 2016 19:51:03 +0100 Original-Received: from localhost ([::1]:51227 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXvZW-0000jZ-Oa for ged-emacs-devel@m.gmane.org; Mon, 22 Feb 2016 13:51:02 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38864) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXvZI-0000jH-5W for emacs-devel@gnu.org; Mon, 22 Feb 2016 13:50:48 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXvZD-0008Is-68 for emacs-devel@gnu.org; Mon, 22 Feb 2016 13:50:48 -0500 Original-Received: from chene.dit.umontreal.ca ([132.204.246.20]:42853) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXvZC-0008Io-WD; Mon, 22 Feb 2016 13:50:43 -0500 Original-Received: from fmsmemgm.homelinux.net (lechon.iro.umontreal.ca [132.204.27.242]) by chene.DIT.UMontreal.CA (8.14.1/8.14.1) with ESMTP id u1MIoqVn022866; Mon, 22 Feb 2016 13:50:53 -0500 Original-Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 9C3F3AE48B; Mon, 22 Feb 2016 13:50:37 -0500 (EST) In-Reply-To: (Eli Zaretskii's message of "Mon, 22 Feb 2016 17:31:00 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV5589=0 X-NAI-Spam-Version: 2.3.0.9418 : core <5589> : inlines <4370> : streams <1591796> : uri <2148730> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.20 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:200484 Archived-At: > +After a command is executed, if point moved into a region that has > +special properties (e.g. composition, display), Emacs adjusts point to > +the boundary of the region. But when a command binds this variable to > +non-nil, this point adjustment is suppressed. Why did you replace "sets" with "binds"? AFAIK let-binding this variable has no effect because the variable is consulted only after the command finishes, i.e. after the binding has been undone. Stefan