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 9ce1d38: Use curved quotes in core elisp diagnostics Date: Tue, 18 Aug 2015 20:52:52 -0700 Organization: UCLA Computer Science Department Message-ID: <55D3FD94.5000309@cs.ucla.edu> References: <20150816160149.9416.80132@vcs.savannah.gnu.org> <55D1043C.3030909@yandex.ru> <20150816225346.GA5367@acm.fritz.box> <55D2C080.2000806@cs.ucla.edu> <87wpwt5619.fsf@gnu.org> <55D36CB5.10803@cs.ucla.edu> <878u9879q9.fsf@igel.home> <19BD5D76-06A0-4FC0-A46F-760B2C27D321@gmail.com> 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 1439956407 2069 80.91.229.3 (19 Aug 2015 03:53:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 19 Aug 2015 03:53:27 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Aug 19 05:53:11 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 1ZRuR5-0005uR-1w for ged-emacs-devel@m.gmane.org; Wed, 19 Aug 2015 05:53:11 +0200 Original-Received: from localhost ([::1]:60401 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRuR4-0006VM-9m for ged-emacs-devel@m.gmane.org; Tue, 18 Aug 2015 23:53:10 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:56968) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRuQs-0006V6-0Q for emacs-devel@gnu.org; Tue, 18 Aug 2015 23:52:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZRuQo-0006Re-QQ for emacs-devel@gnu.org; Tue, 18 Aug 2015 23:52:57 -0400 Original-Received: from zimbra.cs.ucla.edu ([131.179.128.68]:41439) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZRuQo-0006RV-Ke; Tue, 18 Aug 2015 23:52:54 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id AA740160D22; Tue, 18 Aug 2015 20:52:53 -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 WpPXE4gL1Gnb; Tue, 18 Aug 2015 20:52:53 -0700 (PDT) Original-Received: from localhost (localhost [127.0.0.1]) by zimbra.cs.ucla.edu (Postfix) with ESMTP id 0AF3D160D91; Tue, 18 Aug 2015 20:52:53 -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 9QXI4moxr9AY; Tue, 18 Aug 2015 20:52:52 -0700 (PDT) Original-Received: from [192.168.1.9] (pool-100-32-155-148.lsanca.fios.verizon.net [100.32.155.148]) by zimbra.cs.ucla.edu (Postfix) with ESMTPSA id E30D4160D22; Tue, 18 Aug 2015 20:52:52 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.8.0 In-Reply-To: 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:188927 Archived-At: Richard Stallman wrote: > Tex mode automatically turns " into `` or '' according to the context. > Couldn't we easily have a mode for use in Text mode, that turns ' into > =E2=80=98 or =E2=80=99 according to the context? (Maybe we already do.= ) Yes we do, in Emacs master. It's Electric Quote mode. You can try it ou= t by=20 putting this into your ~/.emacs file: (if (fboundp 'electric-quote-mode) (electric-quote-mode))