From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexis Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Run hook when variable is set Date: Sun, 01 Feb 2015 13:04:37 +1100 Message-ID: <87oapecrpm.fsf@gmail.com> References: <7Dw4GTuMVOnntNGptSuTBkSMdmkHqNdTLkatZ8yKiM7@local> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1422756306 19764 80.91.229.3 (1 Feb 2015 02:05:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 1 Feb 2015 02:05:06 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Feb 01 03:05:06 2015 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 1YHjuI-00044d-Up for ged-emacs-devel@m.gmane.org; Sun, 01 Feb 2015 03:05:03 +0100 Original-Received: from localhost ([::1]:43304 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YHjuI-0003ER-36 for ged-emacs-devel@m.gmane.org; Sat, 31 Jan 2015 21:05:02 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:55714) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YHju5-0003EL-E1 for emacs-devel@gnu.org; Sat, 31 Jan 2015 21:04:50 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YHju0-0002WU-Cd for emacs-devel@gnu.org; Sat, 31 Jan 2015 21:04:49 -0500 Original-Received: from mail-pa0-x231.google.com ([2607:f8b0:400e:c03::231]:54570) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YHju0-0002WN-56 for emacs-devel@gnu.org; Sat, 31 Jan 2015 21:04:44 -0500 Original-Received: by mail-pa0-f49.google.com with SMTP id fa1so67700476pad.8 for ; Sat, 31 Jan 2015 18:04:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=references:from:to:subject:in-reply-to:date:message-id:mime-version :content-type; bh=fhBNKLX5DbVt6mlb40m//NE1cQxti3PNMEexE8b3Fas=; b=N+EmNTTZ7R2SKYRFwFJt0mYZq2gUb9hvVM2jW8Q6RdKZ1GgKWmuxrxRdYd683sn8f8 COIpru5AT6gfk5eg44jAijjw5FgSlgNZ1iRsWimsqZQjyDhN2Zj9jHdqR9SHMktrrTDI sJyqPzrXeP+QV4K9ZVJYn1sA+b/CIBYGyMBSQ5EO1hPsAgiT14E1xuwYZAwFYbGLCFKO Pu2BABhlojycuZv/LEyJ+Za9D2SvO8R+HBlc42HJZV3NYQp8lfIeKaG4MZN5j/IfXT4m lDKXpRqBt3IfdMkj6+lthih45pZ/cTNebXddNPjlC1srIBQleiFcF80zuc2VXuj5X705 HTgQ== X-Received: by 10.70.93.41 with SMTP id cr9mr19734272pdb.154.1422756283128; Sat, 31 Jan 2015 18:04:43 -0800 (PST) Original-Received: from localhost (ppp118-209-63-224.lns20.mel4.internode.on.net. [118.209.63.224]) by mx.google.com with ESMTPSA id ib3sm14794895pbc.41.2015.01.31.18.04.40 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 31 Jan 2015 18:04:41 -0800 (PST) In-reply-to: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c03::231 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:182156 Archived-At: Stefan Monnier writes: > For the same reason I want to kill the `intangible' text-property: > this operates at too-low a level, so it's bound to introduce buggy > interactions between unsuspecting packages. So what is now the best way to achieve the same effects/behaviours as the 'intangible' text-property? One of the packages i maintain uses 'intangible' on some text in a minibuffer, to facilitate movement between the two fields whose contents users can modify: left- and right-movement doesn't move point through individual characters of non-modifiable text, but moves point past the entirety of that text. Alexis.