diff options
author | Johan Claesson <[email protected]> | 2018-09-15 23:14:47 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2018-10-09 11:57:01 +0200 |
commit | 02e3a9b162a1fe193c271cd0db7a99c326b63844 (patch) | |
tree | ba9b693e0a82a7c9c4a3ac42455b613f3bc4e3f1 /lib/tools/test/emacs_SUITE.erl | |
parent | 8755c68695ee5c672a4105077ac2e5953939d528 (diff) | |
download | otp-02e3a9b162a1fe193c271cd0db7a99c326b63844.tar.gz otp-02e3a9b162a1fe193c271cd0db7a99c326b63844.tar.bz2 otp-02e3a9b162a1fe193c271cd0db7a99c326b63844.zip |
Emacs: do not accept compiler warnings in selected elisp files
Diffstat (limited to 'lib/tools/test/emacs_SUITE.erl')
-rw-r--r-- | lib/tools/test/emacs_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tools/test/emacs_SUITE.erl b/lib/tools/test/emacs_SUITE.erl index 387c93f9fa..0ad00d8fdb 100644 --- a/lib/tools/test/emacs_SUITE.erl +++ b/lib/tools/test/emacs_SUITE.erl @@ -150,7 +150,7 @@ test_erlang_mode_script(_Config) -> Script = filename:join([emacs_dir(), "test-erlang-mode"]), RcFile = string:trim(os:cmd("mktemp /tmp/emacs_SUITE.XXXXXX")), Output = os:cmd(Script ++ " -f; echo $? > " ++ RcFile), - io:format("~s output:~n~ts~n", [Script, Output]), + io:format("~s output:~n~n~ts~n", [Script, Output]), {ok, RcBin} = file:read_file(RcFile), ok = file:delete(RcFile), RcString = binary:bin_to_list(RcBin), |