# HG changeset patch # User Aditya Puranik # Date 1480095713 -19800 # Fri Nov 25 23:11:53 2016 +0530 # Node ID f593405e8ad284c957e7924c45c073854b84bc29 # Parent c88f8829678963c40d11a74368e2f49ff247dc6a Fixed bug #49696. Gives the user warning that only the 1st row will be evaluated. diff -r c88f88296789 -r f593405e8ad2 libinterp/parse-tree/oct-parse.in.yy --- a/libinterp/parse-tree/oct-parse.in.yy Thu Nov 24 09:00:20 2016 -0800 +++ b/libinterp/parse-tree/oct-parse.in.yy Fri Nov 25 23:11:53 2016 +0530 @@ -5094,6 +5094,9 @@ int nargin = args.length (); + if(args(0).rows() > 1) + warning("Only row 1 will be evaluated"); + if (nargin == 0) print_usage ();