Remove comment + CHANGELOG
This commit is contained in:
parent
f34b6ed982
commit
457f9cf4ea
@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Added
|
||||||
|
- Handle numeric escapes, i.e. `"\x19Ethereum Signed Message:\n"`, and similar strings.
|
||||||
### Changed
|
### Changed
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
@ -95,7 +95,6 @@ parse_char([$', C, $']) -> C.
|
|||||||
|
|
||||||
unescape(Str) -> unescape(Str, []).
|
unescape(Str) -> unescape(Str, []).
|
||||||
|
|
||||||
%% TODO: numeric escapes
|
|
||||||
unescape([$"], Acc) ->
|
unescape([$"], Acc) ->
|
||||||
list_to_binary(lists:reverse(Acc));
|
list_to_binary(lists:reverse(Acc));
|
||||||
unescape([$\\, $x, D1, D2 | Chars ], Acc) ->
|
unescape([$\\, $x, D1, D2 | Chars ], Acc) ->
|
||||||
|
Loading…
x
Reference in New Issue
Block a user