You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the expected output?
"Possible completions are:
columns format fread fwrite
get_chars get_line get_password nl
parse_erl_exprs parse_erl_form put_chars read
request requests rows scan_erl_exprs
scan_erl_form setopts write"
What do you see instead?
There are no completions.
What version of the product are you using? On what operating system?
Both distel from SVN revision 89 and the Xmas edition gives me this.
erl -version == Erlang (SMP,ASYNC_THREADS) (BEAM) emulator version 5.6.3
Ubuntu 8.10.
Possible fix? I don't know if this is preferable or not.
$ svn diff distel.erl
From http://code.google.com/p/distel/issues/detail?id=15
Reported by [email protected], Mar 2, 2009
What steps will reproduce the problem?
What is the expected output?
"Possible completions are:
columns format fread fwrite
get_chars get_line get_password nl
parse_erl_exprs parse_erl_form put_chars read
request requests rows scan_erl_exprs
scan_erl_form setopts write"
What do you see instead?
There are no completions.
What version of the product are you using? On what operating system?
Both distel from SVN revision 89 and the Xmas edition gives me this.
erl -version == Erlang (SMP,ASYNC_THREADS) (BEAM) emulator version 5.6.3
Ubuntu 8.10.
Possible fix? I don't know if this is preferable or not.
$ svn diff distel.erl
Index: distel.erl
--- distel.erl (revision 89)
+++ distel.erl (working copy)
@@ -672,7 +672,7 @@
xref_completions(F,A) ->
fun(server) -> distel_completions;
This fixes the problem for me. But maybe it breaks something else I don't
know about.
Best,
Ivar Refsdal.
Comment 1 by project member [email protected], Mar 6, 2009
works for me. please try (in the erlang shell);
distel:functions(io,"").
should print;
{ok,["columns","format","fread","fwrite","get_chars",
"get_line","nl","parse_erl_exprs","parse_erl_form",
"put_chars","read","rows","scan_erl_exprs","scan_erl_form",
"setopts","write"]}
Status: Started
Owner: mats.cronqvist
Comment 2 by [email protected], Mar 8, 2009
distel:functions(io, "").
{ok,[]}
distel:functions(rpc, "").
{ok,["abcast","async_call","block_call","call","cast",
"code_change","eval_everywhere","handle_call","handle_cast",
"handle_info","init","multi_server_call","multicall",
"nb_yield","parallel_eval","pinfo","pmap",
"safe_multi_server_call","sbcast","server_call","start",
"start_link","stop","terminate","yield"]}
Also tried installing Erlang from source, including erlang-mode. Same result.
The text was updated successfully, but these errors were encountered: