emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: "Error: Non-hex digit used for Unicode escape"


From: Eli Zaretskii
Subject: Re: "Error: Non-hex digit used for Unicode escape"
Date: Thu, 22 Jun 2006 06:22:45 +0300

> Date: Wed, 21 Jun 2006 13:58:22 -0700
> From: "Andrew M. Scott" <address@hidden>
> Cc: address@hidden
> 
> 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).




reply via email to

[Prev in Thread] Current Thread [Next in Thread]