瀏覽代碼

Shorten filenames slightly

pull/823/head
Heinz N. Gies 9 年之前
父節點
當前提交
cbbd8b60a1
共有 1 個檔案被更改,包括 12 行新增1 行删除
  1. +12
    -1
      src/rebar_dialyzer_format.erl

+ 12
- 1
src/rebar_dialyzer_format.erl 查看文件

@ -57,7 +57,7 @@ format_warning({Tag, {File, Line, _MFA}, Msg}, FOpt) ->
format_warning({_Tag, {File, Line}, Msg}, FOpt) when is_list(File),
is_integer(Line) ->
F = case FOpt of
fullpath -> File;
fullpath -> re:replace(File, "^.*/_build/", "_build/");
basename -> filename:basename(File)
end,
String = lists:flatten(message_to_string(Msg)),
@ -371,9 +371,20 @@ highlight([N | Nr], N, C, [Arg | Rest]) ->
highlight(Ns, N, C, [Arg | Rest]) ->
[Arg | highlight(Ns, N + 1, C, Rest)].
%% highlight([], _N, _C, Rest) ->
%% [[?NG, A, ?R] || A <- Rest];
%% highlight([N | Nr], N, C, [Arg | Rest]) ->
%% [[?NR, Arg, ?R] | highlight(Nr, N+1, C, Rest)];
%% highlight(Ns, N, C, [Arg | Rest]) ->
%% [[?NG, Arg, ?R] | highlight(Ns, N + 1, C, Rest)].
seperate_args([$( | S]) ->
seperate_args([], S, "", []).
%% We strip this space since dialyzer is inconsistant in adding or not adding
%% it ....
seperate_args([], [$,, $\s | R], Arg, Args) ->

Loading…
取消
儲存