aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/test/bs_match_int_SUITE.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-03-02 06:33:45 +0100
committerBjörn Gustavsson <[email protected]>2016-04-18 08:27:49 +0200
commit37348d31616fa55130eead33f08a50141b355151 (patch)
tree4d29cfcf639241c7a56ac4dfad7a3ccfdcaa0012 /lib/debugger/test/bs_match_int_SUITE.erl
parente51364ed716fe373a0f4c6a02ed5d9740428265f (diff)
downloadotp-37348d31616fa55130eead33f08a50141b355151.tar.gz
otp-37348d31616fa55130eead33f08a50141b355151.tar.bz2
otp-37348d31616fa55130eead33f08a50141b355151.zip
Replace "%" with "%%" at the beginning of a line
We want to re-ident the source files after having taken out all ?line macros. When re-indenting using Emacs, it's important that comments that should be at the beginning of a line (or follow the indentation of statements around it) must start with "%%".
Diffstat (limited to 'lib/debugger/test/bs_match_int_SUITE.erl')
-rw-r--r--lib/debugger/test/bs_match_int_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debugger/test/bs_match_int_SUITE.erl b/lib/debugger/test/bs_match_int_SUITE.erl
index c2d50a29e6..537a65ee35 100644
--- a/lib/debugger/test/bs_match_int_SUITE.erl
+++ b/lib/debugger/test/bs_match_int_SUITE.erl
@@ -134,7 +134,7 @@ dynamic(Bin, S1) when S1 >= 0 ->
dynamic(_, _) -> ok.
dynamic(Bin, S1, S2, A, B) ->
-% io:format("~p ~p ~p ~p\n", [S1,S2,A,B]),
+%% io:format("~p ~p ~p ~p\n", [S1,S2,A,B]),
case Bin of
<<A:S1,B:S2>> ->
io:format("~p ~p ~p ~p\n", [S1,S2,A,B]),
@@ -145,7 +145,7 @@ dynamic(Bin, S1, S2, A, B) ->
%% Extract integers at different alignments and of different sizes.
more_dynamic(Config) when is_list(Config) ->
- % Unsigned big-endian numbers.
+ %% Unsigned big-endian numbers.
Unsigned = fun(Bin, List, SkipBef, N) ->
SkipAft = 8*size(Bin) - N - SkipBef,
<<_:SkipBef,Int:N,_:SkipAft>> = Bin,