aboutsummaryrefslogtreecommitdiffhomepage
path: root/autoload.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-02-10 01:37:30 -0800
commitd975187433ed71120d603ab2815d11b9c80ae8be (patch)
tree790a1644dfb643b06bdd9b04d009bf5023141c33 /autoload.cpp
parent910863e9ea5e1a4db192b5be1630d125cff18485 (diff)
Removed some al_list functions
Diffstat (limited to 'autoload.cpp')
-rw-r--r--autoload.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/autoload.cpp b/autoload.cpp
index 2cbce79b..9617ec35 100644
--- a/autoload.cpp
+++ b/autoload.cpp
@@ -111,7 +111,7 @@ int autoload_t::load( const wcstring &cmd, bool reload )
/* Get the list of paths from which we will try to load */
std::vector<wcstring> path_list;
- tokenize_variable_array2( path_var, path_list );
+ tokenize_variable_array( path_var, path_list );
/* Try loading it */
res = this->locate_file_and_maybe_load_it( cmd, true, reload, path_list );
@@ -131,7 +131,7 @@ bool autoload_t::can_load( const wcstring &cmd, const env_vars &vars )
const wcstring path_var(path_var_ptr);
std::vector<wcstring> path_list;
- tokenize_variable_array2( path_var, path_list );
+ tokenize_variable_array( path_var, path_list );
return this->locate_file_and_maybe_load_it( cmd, false, false, path_list );
}