diff options
author | Björn Gustavsson <[email protected]> | 2010-09-06 14:22:35 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-09-06 14:22:35 +0200 |
commit | 4d4578bc9c4c7ccb2345f6f1c083a9a5716ab2a1 (patch) | |
tree | 47ccc5402614e0cd1a63fcaab3a04c77ae8f0f25 | |
parent | 9c24be4cc8dcfd6e702c77a776f3788c824c9b5c (diff) | |
parent | c43d20b744dd953c01c10091f167a8a42bf194e5 (diff) | |
download | otp-4d4578bc9c4c7ccb2345f6f1c083a9a5716ab2a1.tar.gz otp-4d4578bc9c4c7ccb2345f6f1c083a9a5716ab2a1.tar.bz2 otp-4d4578bc9c4c7ccb2345f6f1c083a9a5716ab2a1.zip |
Merge branch 'ta/asn1ct-fix-whitespace' into dev
* ta/asn1ct-fix-whitespace:
asn1ct: change unusual whitespace char from 0xA0 to 0x20
-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] -> |