From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Paul Eggert Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master 9ffb6ce 5/5: Quoting fixes in lisp/internationa Date: Fri, 4 Sep 2015 10:49:47 -0700 Organization: UCLA Computer Science Department Message-ID: <55E9D9BB.90905@cs.ucla.edu> References: <55E9AFEC.9010309@cs.ucla.edu> <20150904162349.GC2991@acm.fritz.box> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1441389028 20250 80.91.229.3 (4 Sep 2015 17:50:28 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 4 Sep 2015 17:50:28 +0000 (UTC) Cc: Emacs Development To: Alan Mackenzie Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 04 19:50:12 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 1ZXv7q-0002VJ-UH for ged-emacs-devel@m.gmane.org; Fri, 04 Sep 2015 19:50:11 +0200 Original-Received: from localhost ([::1]:33963 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXv7q-0004VT-99 for ged-emacs-devel@m.gmane.org; Fri, 04 Sep 2015 13:50:10 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54847) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXv7c-0004Uv-19 for Emacs-devel@gnu.org; Fri, 04 Sep 2015 13:49:56 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZXv7V-0000cP-7Y for Emacs-devel@gnu.org; Fri, 04 Sep 2015 13:49:55 -0400 Original-Received: from zimbra.cs.ucla.edu ([131.179.128.68]:57781) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZXv7V-0000bR-1m for Emacs-devel@gnu.org; Fri, 04 Sep 2015 13:49:49 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 44BAE160FF7; Fri, 4 Sep 2015 10:49:48 -0700 (PDT) Original-Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id N5FRvq5YZ7Lr; Fri, 4 Sep 2015 10:49:47 -0700 (PDT) Original-Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 91C62160FFA; Fri, 4 Sep 2015 10:49:47 -0700 (PDT) X-Virus-Scanned: amavisd-new at zimbra.cs.ucla.edu Original-Received: from zimbra.cs.ucla.edu ([127.0.0.1]) by localhost (zimbra.cs.ucla.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id yiRvm0r1mWqx; Fri, 4 Sep 2015 10:49:47 -0700 (PDT) Original-Received: from Penguin.CS.UCLA.EDU (Penguin.CS.UCLA.EDU [131.179.64.200]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id 7AE9A160FF2; Fri, 4 Sep 2015 10:49:47 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 In-Reply-To: <20150904162349.GC2991@acm.fritz.box> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 131.179.128.68 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:189603 Archived-At: On 09/04/2015 09:23 AM, Alan Mackenzie wrote: > >> Please try adding (setq text-quoting-style 'grave) there. > It works. Thanks for checking. > I'd prefer to stick to the `text-quoting-style' Yes, and the intent of the current master is to do both: i.e., if you=20 have (setq text-quoting-style 'grave) in your .emacs, then both (1)=20 unescaped curved quotes are transliterated to ASCII characters in help=20 buffers and strings, and (2) all curved quotes are displayed as shadowed=20 ASCII characters. The shadowing is intended to assist you when you see=20 curved quotes in other contexts, so that you can distinguish curved=20 quotes from true ASCII characters. You should be able to see this by typ= ing a ` b C-x 8 [ c C-x 8 ] d ' e which should insert =E2=80=9Ca`b=E2=80=98c=E2=80=99d'e=E2=80=9D into your= buffer, and the curved quotes=20 should be distinguishable from the grave accent and apostrophe because=20 they're shadowed. I assume this works for you now, with (setq text-quoting-style 'grave)=20 in your .emacs; if not, please let me know.