Skip to content

Commit

Permalink
Merge branch 'dev' into major
Browse files Browse the repository at this point in the history
  • Loading branch information
proxyles committed Aug 29, 2011
2 parents efc604e + f94beb7 commit b9ef732
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Expand Up @@ -27,7 +27,7 @@ on Unix. For detailed instructions on how to
Binary releases for Windows can be found at Binary releases for Windows can be found at
<http://www.erlang.org/download.html>. <http://www.erlang.org/download.html>.


Before reading the above mensioned documents you are in any case advised to Before reading the above mentioned documents you are in any case advised to
read this document first, since it covers building Erlang/OTP in general as read this document first, since it covers building Erlang/OTP in general as
well as other important information. well as other important information.


Expand Down
6 changes: 2 additions & 4 deletions lib/odbc/test/odbc_data_type_SUITE.erl
Expand Up @@ -89,17 +89,15 @@ init_per_group(GroupName, Config) when GroupName == fixed_char;
end; end;


init_per_group(unicode, Config) -> init_per_group(unicode, Config) ->
%% Uses parameterized queries case {os:type(), erlang:system_info({wordsize, external})} of
case {os:type(), erlang:system_info(wordsize)} of
{{unix, _}, 4} -> {{unix, _}, 4} ->
Config; Config;
{{unix, _}, _} -> {{unix, _}, _} ->
{skip, "Not supported by driver"}; {skip, "Postgres drivers pre version psqlODBC 08.04.0200 have utf8-problems"};
_ -> _ ->
Config Config
end; end;



init_per_group(_GroupName, Config) -> init_per_group(_GroupName, Config) ->
Config. Config.


Expand Down
6 changes: 3 additions & 3 deletions lib/stdlib/doc/src/gen_fsm.xml
Expand Up @@ -639,9 +639,9 @@ gen_fsm:sync_send_all_state_event -----> Module:handle_sync_event/4
<v>StateName = atom()</v> <v>StateName = atom()</v>
<v>StateData = term()</v> <v>StateData = term()</v>
<v>Result = {next_state,NextStateName,NewStateData}</v> <v>Result = {next_state,NextStateName,NewStateData}</v>
<v>&nbsp;>&nbsp;| {next_state,NextStateName,NewStateData,Timeout}</v> <v>&nbsp;&nbsp;| {next_state,NextStateName,NewStateData,Timeout}</v>
<v>&nbsp;>&nbsp;| {next_state,NextStateName,NewStateData,hibernate}</v> <v>&nbsp;&nbsp;| {next_state,NextStateName,NewStateData,hibernate}</v>
<v>&nbsp;>&nbsp;| {stop,Reason,NewStateData}</v> <v>&nbsp;&nbsp;| {stop,Reason,NewStateData}</v>
<v>&nbsp;NextStateName = atom()</v> <v>&nbsp;NextStateName = atom()</v>
<v>&nbsp;NewStateData = term()</v> <v>&nbsp;NewStateData = term()</v>
<v>&nbsp;Timeout = int()>0 | infinity</v> <v>&nbsp;Timeout = int()>0 | infinity</v>
Expand Down

0 comments on commit b9ef732

Please sign in to comment.