diff options
author | Tuncer Ayaz <[email protected]> | 2010-07-12 17:02:13 +0200 |
---|---|---|
committer | Tuncer Ayaz <[email protected]> | 2010-07-12 17:05:44 +0200 |
commit | c43d20b744dd953c01c10091f167a8a42bf194e5 (patch) | |
tree | 01d4be9a509f6789650be1ff5c7fbe2ee3b676e2 | |
parent | c4b4edaaf03ac12e12080cb4a3768edbb6ecf77d (diff) | |
download | otp-c43d20b744dd953c01c10091f167a8a42bf194e5.tar.gz otp-c43d20b744dd953c01c10091f167a8a42bf194e5.tar.bz2 otp-c43d20b744dd953c01c10091f167a8a42bf194e5.zip |
asn1ct: change unusual whitespace char from 0xA0 to 0x20
Replace 0xA0 with 0x20.
Signed-off-by: Tuncer Ayaz <[email protected]>
-rw-r--r-- | lib/asn1/src/asn1ct.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/src/asn1ct.erl b/lib/asn1/src/asn1ct.erl index ae681a4a78..968468cb7f 100644 --- a/lib/asn1/src/asn1ct.erl +++ b/lib/asn1/src/asn1ct.erl @@ -1674,7 +1674,7 @@ create_pdec_inc_command(ModName, % [concat_sequential(lists:reverse(Comms), % [LastComm,CompAcc])|Acc] case lists:reverse(TagCommand) of - [Atom|Comms]�when is_atom(Atom) -> + [Atom|Comms] when is_atom(Atom) -> [concat_sequential(lists:reverse(Comms), [Atom,CompAcc])|Acc]; [[Command2,Tag2]|Comms] -> |