From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: "Error: Non-hex digit used for Unicode escape" Date: Thu, 22 Jun 2006 06:22:45 +0300 Message-ID: References: <200606212058.k5LKwMJL005423@chlr6710.ch.intel.com> Reply-To: Eli Zaretskii NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1150946601 29157 80.91.229.2 (22 Jun 2006 03:23:21 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 22 Jun 2006 03:23:21 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 22 05:23:19 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FtFmn-0000Ei-82 for ged-emacs-devel@m.gmane.org; Thu, 22 Jun 2006 05:23:17 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FtFmm-0007Vw-CA for ged-emacs-devel@m.gmane.org; Wed, 21 Jun 2006 23:23:16 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FtFmV-0007PV-GW for emacs-devel@gnu.org; Wed, 21 Jun 2006 23:22:59 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FtFmS-0007Mm-Cm for emacs-devel@gnu.org; Wed, 21 Jun 2006 23:22:59 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FtFmS-0007Mj-73 for emacs-devel@gnu.org; Wed, 21 Jun 2006 23:22:56 -0400 Original-Received: from [192.114.186.17] (helo=gandalf.inter.net.il) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FtFxL-000464-3h for emacs-devel@gnu.org; Wed, 21 Jun 2006 23:34:11 -0400 Original-Received: from nitzan.inter.net.il (nitzan.inter.net.il [192.114.186.20]) by gandalf.inter.net.il (MOS 3.7.1-GA) with ESMTP id IYU19200; Thu, 22 Jun 2006 06:22:46 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 (IGLD-80-230-152-42.inter.net.il [80.230.152.42]) by nitzan.inter.net.il (MOS 3.7.3-GA) with ESMTP id DVF09512 (AUTH halo1); Thu, 22 Jun 2006 06:22:44 +0300 (IDT) Original-To: "Andrew M. Scott" In-reply-to: <200606212058.k5LKwMJL005423@chlr6710.ch.intel.com> (amscott1@sedona.ch.intel.com) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:56073 Archived-At: > Date: Wed, 21 Jun 2006 13:58:22 -0700 > From: "Andrew M. Scott" > Cc: amscott1@sedona.ch.intel.com > > I downloaded Ilya's latest (v5.19) cperl-mode.el from > http://math.berkeley.edu/~ilya/software/emacs/cperl-mode.el.5.19.bz2 > today. > > bunzip2'ing and byte-compiling it on a June 21, 2006 Emacs CVS > snapshot and build gives this error in *Compile-Log*: > > cperl-mode.el:8825:1:Error: Non-hex digit used for Unicode escape That version of cperl-mode.el needs this patch: --- cperl-mode.el.~1~ 2006-06-01 15:13:22.000000000 +0300 +++ cperl-mode.el 2006-06-22 06:21:03.218750000 +0300 @@ -8963,8 +8963,8 @@ \\ Creates reference to what follows, like \$var, or quotes non-\w in strings. \\0 Octal char, e.g. \\033. \\E Case modification terminator. See \\Q, \\L, and \\U. -\\L Lowercase until \\E . See also \l, lc. -\\U Upcase until \\E . See also \u, uc. +\\L Lowercase until \\E . See also \\l, lc. +\\U Upcase until \\E . See also \\u, uc. \\Q Quote metacharacters until \\E . See also quotemeta. \\a Alarm character (octal 007). \\b Backspace character (octal 010).