changeset 126:8d3d8804b430

all_va_args -> varargin{:}. Now works on 2.1.58
author jmones
date Thu, 09 Sep 2004 19:36:35 +0000
parents 7d6225a67ba1
children 22b50173f594
files qtdecomp.m
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/qtdecomp.m
+++ b/qtdecomp.m
@@ -202,7 +202,7 @@
 	  b(:,:,r)=I(offsets(r,1):rbc(r,1),offsets(r,2):rbc(r,2));
 	endfor
 
-	db=feval(fun, b, all_va_args);
+	db=feval(fun, b, varargin{:});
       else
 	error("qtdecomp: execution shouldn't reach here. Please report this as a bug.");
       endif
@@ -300,6 +300,9 @@
 
 %
 % $Log$
+% Revision 1.6  2004/09/09 19:36:35  jmones
+% all_va_args -> varargin{:}. Now works on 2.1.58
+%
 % Revision 1.5  2004/09/08 14:07:22  pkienzle
 % Fix test for 'inline function'
 %