Skip to content
Snippets Groups Projects
Commit 14332f1a authored by Honza Petrous's avatar Honza Petrous
Browse files

* -> array

Rev: lib/modules/Tools.pmod/Hilfe.pmod:1.14
parent f6493322
Branches
Tags
No related merge requests found
...@@ -23,9 +23,9 @@ import Getopt; ...@@ -23,9 +23,9 @@ import Getopt;
mapping variables=([]); mapping variables=([]);
mapping(string:mixed) constants=([]); mapping(string:mixed) constants=([]);
string *functions=({}); array(string) functions=({});
string *function_names=({}); array(string) function_names=({});
string *imports_and_inherits=({}); array(string) imports_and_inherits=({});
mapping query_variables() { return variables; } mapping query_variables() { return variables; }
/* do nothing */ /* do nothing */
...@@ -172,7 +172,7 @@ import Getopt; ...@@ -172,7 +172,7 @@ import Getopt;
return 0; return 0;
} }
string *get_name(string f) array(string) get_name(string f)
{ {
int e,d; int e,d;
string rest; string rest;
...@@ -571,7 +571,8 @@ import Getopt; ...@@ -571,7 +571,8 @@ import Getopt;
void add_input_line(string s) void add_input_line(string s)
{ {
string *tmp,a,b,c,f,name; string a,b,c,f,name;
array(string) tmp;
int e,d; int e,d;
object foo; object foo;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment