diff --git a/src/Partcl/commands/info.pm b/src/Partcl/commands/info.pm index 721ecdb..d50a01b 100644 --- a/src/Partcl/commands/info.pm +++ b/src/Partcl/commands/info.pm @@ -1,248 +1,248 @@ -#sub info(*@args) { -# Info::dispatch_command(|@args); -#} -# -#module Info { -# -#our %Arg_limits; -#our %Info_funcs; -# -#INIT { -# %Info_funcs := Info::args; -# %Arg_limits := [1, 1, 'procname']; -# -# %Info_funcs := Info::body; -# %Arg_limits := [1, 1, 'procname']; -# -# %Info_funcs := Info::cmdcount; -# %Arg_limits := [0, 0, '']; -# -# %Info_funcs := Info::commands; -# %Arg_limits := [0, 1, '?pattern?']; -# -# %Info_funcs := Info::complete; -# %Arg_limits := [1, 1, 'complete']; -# -# %Info_funcs := Info::default; -# %Arg_limits := [3, 3, 'procname arg varname']; -# -# %Info_funcs := Info::exists; -# %Arg_limits := [1, 1, 'varName']; -# -# %Info_funcs := Info::frame; -# %Arg_limits := [0, 1, '?number?']; -# -# %Info_funcs := Info::functions; -# %Arg_limits := [0, 1, '?pattern?']; -# -# %Info_funcs := Info::globals; -# %Arg_limits := [0, 1, '?pattern?']; -# -# %Info_funcs := Info::hostname; -# %Arg_limits := [0, 0, '']; -# -# %Info_funcs := Info::level; -# %Arg_limits := [0, 1, '?number?']; -# -# %Info_funcs := Info::library; -# %Arg_limits := [0, 0, '']; -# -# %Info_funcs := Info::loaded; -# %Arg_limits := [0, 1, '?interp?']; -# -# %Info_funcs := Info::locals; -# %Arg_limits := [0, 1, '?pattern?']; -# -# %Info_funcs := Info::nameofexecutable; -# %Arg_limits := [0, 0, '']; -# -# %Info_funcs := Info::patchlevel; -# %Arg_limits := [0, 0, '']; -# -# %Info_funcs := Info::procs; -# %Arg_limits := [0, 1, '?pattern?']; -# -# %Info_funcs