From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#13129: 24.1; Please add curly single quotes to text-mode's syntax table as word components Date: Tue, 11 Dec 2012 01:35:07 +0200 Organization: JURTA Message-ID: <877gopeb10.fsf@mail.jurta.org> References: <87r4myc3w4.fsf@sc3d.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1355182713 5262 80.91.229.3 (10 Dec 2012 23:38:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 10 Dec 2012 23:38:33 +0000 (UTC) Cc: 13129@debbugs.gnu.org To: Reuben Thomas Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Tue Dec 11 00:38:47 2012 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1TiCvr-000491-1v for geb-bug-gnu-emacs@m.gmane.org; Tue, 11 Dec 2012 00:38:43 +0100 Original-Received: from localhost ([::1]:33777 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TiCve-0001kZ-G7 for geb-bug-gnu-emacs@m.gmane.org; Mon, 10 Dec 2012 18:38:30 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:36063) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TiCva-0001iL-L1 for bug-gnu-emacs@gnu.org; Mon, 10 Dec 2012 18:38:28 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TiCvZ-0002mh-Jp for bug-gnu-emacs@gnu.org; Mon, 10 Dec 2012 18:38:26 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:54028) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TiCvZ-0002md-GO for bug-gnu-emacs@gnu.org; Mon, 10 Dec 2012 18:38:25 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.72) (envelope-from ) id 1TiCwB-0001uA-1y for bug-gnu-emacs@gnu.org; Mon, 10 Dec 2012 18:39:03 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 10 Dec 2012 23:39:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 13129 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: Original-Received: via spool by 13129-submit@debbugs.gnu.org id=B13129.13551827077240 (code B ref 13129); Mon, 10 Dec 2012 23:39:02 +0000 Original-Received: (at 13129) by debbugs.gnu.org; 10 Dec 2012 23:38:27 +0000 Original-Received: from localhost ([127.0.0.1]:36043 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TiCva-0001sh-F4 for submit@debbugs.gnu.org; Mon, 10 Dec 2012 18:38:27 -0500 Original-Received: from ps18281.dreamhost.com ([69.163.218.105]:51678 helo=ps18281.dreamhostps.com) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TiCvU-0001sR-Fj for 13129@debbugs.gnu.org; Mon, 10 Dec 2012 18:38:22 -0500 Original-Received: from localhost (ps18281.dreamhostps.com [69.163.218.105]) by ps18281.dreamhostps.com (Postfix) with ESMTP id A48DF451E1E6; Mon, 10 Dec 2012 15:37:41 -0800 (PST) In-Reply-To: <87r4myc3w4.fsf@sc3d.org> (Reuben Thomas's message of "Sun, 09 Dec 2012 21:27:39 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (x86_64-pc-linux-gnu) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:68298 Archived-At: > Moving over words like =E2=80=9Cdidn=E2=80=99t=E2=80=9D, Emacs stops at= the curly quote; it > should treat it like a straight quote. (Tested also in the default > branch of current Bazaar.) `text-mode' does this for a straight quote in `text-mode-syntax-table': ;; We add `p' so that M-c on 'hello' leads to 'Hello' rather than 'he= llo'. (modify-syntax-entry ?' "w p" st) Perhaps it could also define a word syntax for the curly quote.