From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Chong Yidong Newsgroups: gmane.emacs.bugs Subject: bug#4153: error in `sentence-end-base' Date: Sat, 15 Aug 2009 17:56:17 -0400 Message-ID: <874os8n3lq.fsf@cyd.mit.edu> Reply-To: Chong Yidong , 4153@emacsbugs.donarmstrong.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1250374044 14921 80.91.229.12 (15 Aug 2009 22:07:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 15 Aug 2009 22:07:24 +0000 (UTC) Cc: stepnem@gmail.com, 4153@emacsbugs.donarmstrong.com To: Kenichi Handa Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Sun Aug 16 00:07:17 2009 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1McRPA-0003Bu-HZ for geb-bug-gnu-emacs@m.gmane.org; Sun, 16 Aug 2009 00:07:16 +0200 Original-Received: from localhost ([127.0.0.1]:46639 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1McRPA-0000GC-0G for geb-bug-gnu-emacs@m.gmane.org; Sat, 15 Aug 2009 18:07:16 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1McROs-00009G-L4 for bug-gnu-emacs@gnu.org; Sat, 15 Aug 2009 18:06:58 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1McROo-00008r-Ql for bug-gnu-emacs@gnu.org; Sat, 15 Aug 2009 18:06:58 -0400 Original-Received: from [199.232.76.173] (port=45232 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1McROo-00008V-Bs for bug-gnu-emacs@gnu.org; Sat, 15 Aug 2009 18:06:54 -0400 Original-Received: from rzlab.ucr.edu ([138.23.92.77]:37570) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1McROn-0007Dc-Ll for bug-gnu-emacs@gnu.org; Sat, 15 Aug 2009 18:06:53 -0400 Original-Received: from rzlab.ucr.edu (rzlab.ucr.edu [127.0.0.1]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n7FM6nQt025423; Sat, 15 Aug 2009 15:06:51 -0700 Original-Received: (from debbugs@localhost) by rzlab.ucr.edu (8.14.3/8.14.3/Submit) id n7FM08iY023703; Sat, 15 Aug 2009 15:00:08 -0700 X-Loop: owner@emacsbugs.donarmstrong.com Resent-From: Chong Yidong Resent-To: bug-submit-list@donarmstrong.com Resent-CC: Emacs Bugs Resent-Date: Sat, 15 Aug 2009 22:00:08 +0000 Resent-Message-ID: Resent-Sender: owner@emacsbugs.donarmstrong.com X-Emacs-PR-Message: followup 4153 X-Emacs-PR-Package: emacs X-Emacs-PR-Keywords: Original-Received: via spool by 4153-submit@emacsbugs.donarmstrong.com id=B4153.125037332023093 (code B ref 4153); Sat, 15 Aug 2009 22:00:08 +0000 Original-Received: (at 4153) by emacsbugs.donarmstrong.com; 15 Aug 2009 21:55:20 +0000 X-Spam-Bayes: score:0.5 Bayes not run. spammytokens:Tokens not available. hammytokens:Tokens not available. Original-Received: from cyd.mit.edu (CYD.MIT.EDU [18.115.2.24]) by rzlab.ucr.edu (8.14.3/8.14.3/Debian-5) with ESMTP id n7FLtIrB023090 for <4153@emacsbugs.donarmstrong.com>; Sat, 15 Aug 2009 14:55:19 -0700 Original-Received: by cyd.mit.edu (Postfix, from userid 1000) id 5C8AE57E21C; Sat, 15 Aug 2009 17:56:17 -0400 (EDT) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Resent-Date: Sat, 15 Aug 2009 18:06:58 -0400 X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:30224 Archived-At: > there is obviously an error in the `sentence-end-base' variable, > defined in lisp/textmodes/paragraphs.el (and also set in sgml-mode.el > and texinfo.el) as: > > "[.?!][]\"'=E2=80=9D=E2=80=9D)}]*" > > There are two `U+201D RIGHT DOUBLE QUOTATION MARK' characters in the > class The first cheracter has code-point 0x2149, and the second one has code-point 0x727D; both code-points refer to the character 8221. IIUC, this is some hold-over from pre-unicode Emacs. Handa, could you verify this? I assume it's ok to remove one of these characters?