# HG changeset patch # User Mike Miller # Date 1347056648 14400 # Node ID cc18c566a7cd14a80855c6d71b8e79aee58d1ea7 # Parent 81fe6665ed3c0819ce54fddb6084cdf0c8262706 Fix --image-path option * octave.cc (octave_initialize_interpreter): Fix typo calling set_exec_path instead of set_image_path. diff -r 81fe6665ed3c -r cc18c566a7cd libinterp/octave.cc --- a/libinterp/octave.cc Fri Sep 07 18:14:14 2012 -0400 +++ b/libinterp/octave.cc Fri Sep 07 18:24:08 2012 -0400 @@ -953,7 +953,7 @@ set_exec_path (exec_path); if (! image_path.empty ()) - set_exec_path (image_path); + set_image_path (image_path); if (! info_file.empty ()) bind_internal_variable ("info_file", info_file);