From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Artur Malabarba Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master 188f657: Fix false negatives in tex--prettify-symbols-compose-p. Date: Thu, 1 Oct 2015 02:19:30 +0100 Message-ID: References: <20150925210512.18505.12538@vcs.savannah.gnu.org> <8737xxjtkq.fsf@gnu.org> <87wpv8mgeh.fsf@gnu.org> <87bnckmbhd.fsf@gnu.org> Reply-To: bruce.connor.am@gmail.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1443699129 25948 80.91.229.3 (1 Oct 2015 11:32:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 1 Oct 2015 11:32:09 +0000 (UTC) To: Artur Malabarba , emacs-devel , Tassilo Horn Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 01 13:32:08 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 1Zhc5f-0006Lo-Rh for ged-emacs-devel@m.gmane.org; Thu, 01 Oct 2015 13:31:59 +0200 Original-Received: from localhost ([::1]:48508 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zhc5f-0006AC-5C for ged-emacs-devel@m.gmane.org; Thu, 01 Oct 2015 07:31:59 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45914) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhSWz-0001CP-GE for emacs-devel@gnu.org; Wed, 30 Sep 2015 21:19:34 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZhSWy-00035e-Q7 for emacs-devel@gnu.org; Wed, 30 Sep 2015 21:19:33 -0400 Original-Received: from mail-la0-x229.google.com ([2a00:1450:4010:c03::229]:35043) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhSWx-00034D-CX; Wed, 30 Sep 2015 21:19:31 -0400 Original-Received: by laer8 with SMTP id r8so65569099lae.2; Wed, 30 Sep 2015 18:19:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=4MnFDM8W/H49h1IQl0eaUKRDN1Yh9clhPieUldzgUzA=; b=QvNwOpTCT0D/mVYFOJ06U/rycHRuEqtXdKzQDbMokvg5Jv7SxvnvE38LbylQjV/WcR jvm0lZ65Q9NL45q0S9GmHg5SsUYK6wwjMREjciFs2fhdoINWOsHNj9EaIyCD8JTVcyx0 YooSe9ZtTIrJT916SHzQNwQapRxx8OzzH9kmGwtHgv8vIqN3MiO/gzS2Ega9s0qAQeKh So03XXACiOYn1n1hPZorX0Z54iRDCJixzjZs58z2AvEUk5WkbCHIsv/wmh89mD7/q/9k UlcN/HBspiINLWqMR2pR9mZ6ofywkzmWUSjrTqUWxTSTtM1oi2Bxm+biOkEe5vyRYr+Z 4Fgw== X-Received: by 10.152.22.228 with SMTP id h4mr1965218laf.21.1443662370474; Wed, 30 Sep 2015 18:19:30 -0700 (PDT) Original-Received: by 10.25.27.78 with HTTP; Wed, 30 Sep 2015 18:19:30 -0700 (PDT) In-Reply-To: <87bnckmbhd.fsf@gnu.org> X-Google-Sender-Auth: MNSk2knmwwZI9sxSJpvERpXVzLM X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::229 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:190533 Archived-At: >> Alright. I tested the code now and it works well. My only suggestion >> would be to change this: >> (< (point) (car prettify-symbols--current-symbol-bounds)) >> to this: >> (<= (point) (car prettify-symbols--current-symbol-bounds)) >> But I guess that's more of a personal preference. > > Yes, I think so too. But feel free to add that feature, e.g., by having > another possibile value for `prettify-symbols-unprettify-at-point'. Done!