diff options
author | Björn Gustavsson <[email protected]> | 2016-03-02 06:33:45 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-04-18 08:27:49 +0200 |
commit | 37348d31616fa55130eead33f08a50141b355151 (patch) | |
tree | 4d29cfcf639241c7a56ac4dfad7a3ccfdcaa0012 /lib/debugger/test/bs_match_misc_SUITE.erl | |
parent | e51364ed716fe373a0f4c6a02ed5d9740428265f (diff) | |
download | otp-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_misc_SUITE.erl')
-rw-r--r-- | lib/debugger/test/bs_match_misc_SUITE.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/debugger/test/bs_match_misc_SUITE.erl b/lib/debugger/test/bs_match_misc_SUITE.erl index f184e8fc41..317bf66f9f 100644 --- a/lib/debugger/test/bs_match_misc_SUITE.erl +++ b/lib/debugger/test/bs_match_misc_SUITE.erl @@ -296,9 +296,9 @@ getBase64Char(62) -> "+"; getBase64Char(63) -> "/"; getBase64Char(_Else) -> %% This is an illegal input. -% cgLogEM:log(error, ?MODULE, getBase64Char, [Else], -% "illegal input", -% ?LINE, version()), +%% cgLogEM:log(error, ?MODULE, getBase64Char, [Else], +%% "illegal input", +%% ?LINE, version()), "**". -define(M(F), <<F>> = <<F>>). |