From bug-request at octave dot org Tue Dec 7 10:42:33 2004 Subject: varargin in range.m From: Heikki Johannes Junes To: bug at octave dot org Date: Tue, 7 Dec 2004 10:12:53 -0600 I installed octave (2.1.60) from debian-testing. The following error was found: parse error near line 35 of file /usr/share/octave/2.1.60/m/statistics/base/range.m syntax error >>> function y = range (x, varargin{:}) ^ Here is the diff which corrects the problem against cvs: $ cvs diff scripts/statistics/base/range.m cvs: WARNING: Read-only repository access mode selected via `cvs -R'. Using this option to access a repository which some users write to may cause intermittent sandbox corruption. Index: scripts/statistics/base/range.m =================================================================== RCS file: /cvs/octave/scripts/statistics/base/range.m,v retrieving revision 1.7 diff -r1.7 range.m 35c35 < function y = range (x, varargin{:}) --- > function y = range (x, varargin) -- Terveisin Heikki Junes ------------------------------------------------------------- Octave is freely available under the terms of the GNU GPL. Octave's home on the web: http://www.octave.org How to fund new projects: http://www.octave.org/funding.html Subscription information: http://www.octave.org/archive.html -------------------------------------------------------------