# HG changeset patch # User John W. Eaton # Date 1233115328 18000 # Node ID fcf762ba66cf82be71f94090f05e5a197618ee69 # Parent 5cc1fba0a7d62d2997c15a99cffa417e1f9b2441 load-path.cc (Fcommand_line_path): rename from Fcommandlinepath diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2009-01-27 John W. Eaton + + * path/savepath.m: Call command_line_path instead of commandlinepath. + 2009-01-27 Jason Riedy * miscellaneous/orderfields.m: Really fix the indexing for struct diff --git a/scripts/path/savepath.m b/scripts/path/savepath.m --- a/scripts/path/savepath.m +++ b/scripts/path/savepath.m @@ -116,7 +116,7 @@ ## Remove the portion of the path defined via the command line ## and/or the environment. workingpath = parsepath (path); - command_line_path = parsepath (commandlinepath ()); + command_line_path = parsepath (command_line_path ()); octave_path = parsepath (getenv ("OCTAVE_PATH")); if (isempty (pathdef ())) ## This occurs when running octave via run-octave. In this instance diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2009-01-27 John W. Eaton + + * load-path.cc (Fcommand_line_path): Rename from Fcommandlinepath. + 2009-01-27 Ben Abbott * graphics.cc (convert_position): Handle character units. diff --git a/src/load-path.cc b/src/load-path.cc --- a/src/load-path.cc +++ b/src/load-path.cc @@ -1789,9 +1789,9 @@ return retval; } -DEFUN (commandlinepath, , , +DEFUN (command_line_path, , , "-*- texinfo -*-\n\ -@deftypefn {Built-in Function} {} commandlinepath (@dots{})\n\ +@deftypefn {Built-in Function} {} command_line_path (@dots{})\n\ Return the command line path variable.\n\ \n\ @seealso{path, addpath, rmpath, genpath, pathdef, savepath, pathsep}\n\