From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Gutov Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master 9ce1d38: Use curved quotes in core elisp diagnostics Date: Mon, 17 Aug 2015 00:44:28 +0300 Message-ID: <55D1043C.3030909@yandex.ru> References: <20150816160149.9416.80132@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1439761501 3497 80.91.229.3 (16 Aug 2015 21:45:01 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 16 Aug 2015 21:45:01 +0000 (UTC) To: emacs-devel@gnu.org, Paul Eggert Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Aug 16 23:44:53 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 1ZR5jZ-0000A8-09 for ged-emacs-devel@m.gmane.org; Sun, 16 Aug 2015 23:44:53 +0200 Original-Received: from localhost ([::1]:53300 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZR5jY-0000f4-Bl for ged-emacs-devel@m.gmane.org; Sun, 16 Aug 2015 17:44:52 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:40149) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZR5jN-0000ew-Dd for emacs-devel@gnu.org; Sun, 16 Aug 2015 17:44:42 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZR5jK-0000oK-7u for emacs-devel@gnu.org; Sun, 16 Aug 2015 17:44:41 -0400 Original-Received: from mail-la0-x233.google.com ([2a00:1450:4010:c03::233]:36175) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZR5jJ-0000nx-WD for emacs-devel@gnu.org; Sun, 16 Aug 2015 17:44:38 -0400 Original-Received: by lagz9 with SMTP id z9so68623506lag.3 for ; Sun, 16 Aug 2015 14:44:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:subject:to:references:from:message-id:date:user-agent :mime-version:in-reply-to:content-type:content-transfer-encoding; bh=oGZhL0BUYqJ62Alk5yc3Uo4KSbTcrcUNBtYPgx+9o2U=; b=H5uq8x4s0JT1adFa5arTta2iIk02XezM1qWAcFk/5FPk9GYxXm/UbpGoysMPg2UZu4 8gM1kFT//GbmNbzE1rPzMUd6B7AbMz7nHwP2dUs7F5ImHwgw+qkfab5HvpbBbXuzWArs hGbT/ntfr9Yp++bdHAyLvE+BdnjwCdpQwLfFSBGLKERxHa6vyhL3I27BIJS63JTPbaim RNep7ozpkFy9ZPLkmn7WJVObDR1mvtxIaNirl4MEcBkgKXgc4M3ljhY6sOGdp61QP8SI s2eb7epn26d00BpZ6U+ItMP51mTqhIwJhjiKoGv+OqnKstBdh5gt1n5QY3lM6+8Vet4Q W0/g== X-Received: by 10.152.44.196 with SMTP id g4mr34947430lam.56.1439761476486; Sun, 16 Aug 2015 14:44:36 -0700 (PDT) Original-Received: from [192.168.1.190] ([178.252.127.222]) by smtp.googlemail.com with ESMTPSA id au10sm3341878lbc.1.2015.08.16.14.44.35 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 16 Aug 2015 14:44:35 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:40.0) Gecko/20100101 Thunderbird/40.0 In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c03::233 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:188822 Archived-At: On 08/16/2015 07:01 PM, Paul Eggert wrote: > branch: master > commit 9ce1d38890a77e93af0d20f51c53419c097200d3 > Author: Paul Eggert > Commit: Paul Eggert > > Use curved quotes in core elisp diagnostics And there we go, sneaking curved quotes everywhere in the Elisp source files. FTR, I hate that. > In the core elisp files, use curved quotes in diagnostic formats, > so that they follow user preference as per ‘text-quoting-style’ > rather than being hard-coded to quote `like this'. Why do you need that? Doesn't (format "Expand `%s'? " string) use the "preferred quoting style"? And if not, why don't you change it so it does?