diff options
author | Fredrik Gustafsson <[email protected]> | 2013-10-14 14:39:19 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2013-10-14 14:39:19 +0200 |
commit | 77eba492997f8340425d0828835c2a60cf81550e (patch) | |
tree | 14a44f4170f0f99a8d871551b09216aacdb6bc0b /system | |
parent | db460f90313bb7adea4ebd4cf0f3cca568ddf118 (diff) | |
parent | 21095e6830f37676dd29c33a590851ba2c76499b (diff) | |
download | otp-77eba492997f8340425d0828835c2a60cf81550e.tar.gz otp-77eba492997f8340425d0828835c2a60cf81550e.tar.bz2 otp-77eba492997f8340425d0828835c2a60cf81550e.zip |
Merge branch 'fenollp/treewide_remove_unexpected_0xff/OTP-11323' into maint
* fenollp/treewide_remove_unexpected_0xff/OTP-11323:
Remove ^L characters hidden randomly in the code. Not those used in text files as delimiters.
Diffstat (limited to 'system')
-rw-r--r-- | system/doc/top/src/erl_html_tools.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/doc/top/src/erl_html_tools.erl b/system/doc/top/src/erl_html_tools.erl index 1e2b8c86af..73d131ec0b 100644 --- a/system/doc/top/src/erl_html_tools.erl +++ b/system/doc/top/src/erl_html_tools.erl @@ -655,7 +655,7 @@ sub_repl([[{St, L}] |Ss], Fun, Acc0, S, Pos) -> {string:substr(S, Pos+1, St-Pos) ++ Rep ++ Rs, NewAcc}; sub_repl([], _Fun, Acc, S, Pos) -> {string:substr(S, Pos+1), Acc}. - + %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Error and warnings |