# HG changeset patch # User John W. Eaton # Date 1380758144 14400 # Node ID 2eeea8b67b63cfdc1eea4910dbf076f7f1279fbd # Parent fc31cd1bd503a210c03ba47d1dab580049b91ece fix incorrect function name * @ftp/saveobj.m: Call __ftp_pwd__, not __ftp_pwd. diff -r fc31cd1bd503 -r 2eeea8b67b63 scripts/@ftp/saveobj.m --- a/scripts/@ftp/saveobj.m Wed Oct 02 19:52:39 2013 -0400 +++ b/scripts/@ftp/saveobj.m Wed Oct 02 19:55:44 2013 -0400 @@ -19,6 +19,6 @@ function b = saveobj (a) b = a; b = rmfield (b, "curlhandle"); - b.dir = __ftp_pwd (a.curlhandle); + b.dir = __ftp_pwd__ (a.curlhandle); endfunction