Re: [PATCH] Simplify and generalize rust-demangle's unescaping logic.

2019-09-03 Thread Jeff Law
On 8/28/19 9:16 AM, Eduard-Mihai Burtescu wrote: > Could you, or someone else, commit this for me (as I have no commit access)? I've added this to the trunk. Thanks, jeff > > Thanks. > > On Mon, Aug 26, 2019, at 11:04 PM, Ian Lance Taylor wrote: >> On Wed, Aug 14, 2019 at 10:24 AM Eduard-Mihai

Re: [PATCH] Simplify and generalize rust-demangle's unescaping logic.

2019-08-28 Thread Eduard-Mihai Burtescu
Could you, or someone else, commit this for me (as I have no commit access)? Thanks. On Mon, Aug 26, 2019, at 11:04 PM, Ian Lance Taylor wrote: > On Wed, Aug 14, 2019 at 10:24 AM Eduard-Mihai Burtescu wrote: > > > > Previously, rust-demangle.c was special-casing a fixed number > > of '$uXY$'

Re: [PATCH] Simplify and generalize rust-demangle's unescaping logic.

2019-08-26 Thread Ian Lance Taylor via gcc-patches
On Wed, Aug 14, 2019 at 10:24 AM Eduard-Mihai Burtescu wrote: > > Previously, rust-demangle.c was special-casing a fixed number > of '$uXY$' escapes, but 'XY' can technically be any hex value, > representing some Unicode codepoint. > > This patch adds more general support for '$u...$' escapes, >

[PING][PATCH] Simplify and generalize rust-demangle's unescaping logic.

2019-08-26 Thread Eduard-Mihai Burtescu
Ping: https://gcc.gnu.org/ml/gcc-patches/2019-08/msg01007.html On Wed, Aug 14, 2019, at 8:22 PM, Eduard-Mihai Burtescu wrote: > Previously, rust-demangle.c was special-casing a fixed number > of '$uXY$' escapes, but 'XY' can technically be any hex value, > representing some Unicode codepoint. >

[PATCH] Simplify and generalize rust-demangle's unescaping logic.

2019-08-14 Thread Eduard-Mihai Burtescu
Previously, rust-demangle.c was special-casing a fixed number of '$uXY$' escapes, but 'XY' can technically be any hex value, representing some Unicode codepoint. This patch adds more general support for '$u...$' escapes, similar to https://github.com/alexcrichton/rustc-demangle/pull/29, but only