diff options
author | olgeni <olgeni@FreeBSD.org> | 2007-02-24 04:14:54 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2007-02-24 04:14:54 +0800 |
commit | 7958c306c9134211323ba2e641cf56956a9663b7 (patch) | |
tree | 48c285d983c5c9463e75b7f210332e4c9d5f9825 /lang/erlang | |
parent | 19cba8b82a37229326d31077a1601ff4656325ee (diff) | |
download | freebsd-ports-gnome-7958c306c9134211323ba2e641cf56956a9663b7.tar.gz freebsd-ports-gnome-7958c306c9134211323ba2e641cf56956a9663b7.tar.zst freebsd-ports-gnome-7958c306c9134211323ba2e641cf56956a9663b7.zip |
Fix formatting exception in io:format.
Obtained from: Hans Bolinder <hans.bolinder(at)ericsson.com>
Diffstat (limited to 'lang/erlang')
-rw-r--r-- | lang/erlang/Makefile | 2 | ||||
-rw-r--r-- | lang/erlang/files/patch-lib_stdlib_src_io__lib__pretty.erl | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/lang/erlang/Makefile b/lang/erlang/Makefile index 5065c6f97900..a94778ac80e2 100644 --- a/lang/erlang/Makefile +++ b/lang/erlang/Makefile @@ -7,7 +7,7 @@ PORTNAME= erlang PORTVERSION= r11b3 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= lang parallel MASTER_SITES= http://www.erlang.org/download/ \ diff --git a/lang/erlang/files/patch-lib_stdlib_src_io__lib__pretty.erl b/lang/erlang/files/patch-lib_stdlib_src_io__lib__pretty.erl new file mode 100644 index 000000000000..0f3305e2fd57 --- /dev/null +++ b/lang/erlang/files/patch-lib_stdlib_src_io__lib__pretty.erl @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- lib/stdlib/src/io_lib_pretty.erl.orig ++++ lib/stdlib/src/io_lib_pretty.erl +@@ -159,7 +159,9 @@ + %% Reuse the list created by io_lib:write_binary()... + pp_binary([LT,LT,S,GT,GT], Col, Ll, Ind, LD) -> + N = max(8, Ll - Col - LD), +- [LT,LT,pp_binary(S, N, N, Ind),GT,GT]. ++ [LT,LT,pp_binary(S, N, N, Ind),GT,GT]; ++pp_binary(S, _Col, _Ll, _Ind, _LD) -> ++ S. + + pp_binary([BS, $, | S], N, N0, Ind) -> + Len = length(BS) + 1, |