comparison scripts/deprecated/is_struct.m @ 7696:0a362fa8f3c8

Add warning to rest of deprecated functions
author David Bateman <dbateman@free.fr>
date Fri, 04 Apr 2008 10:18:35 -0400
parents 8e5371d47da6
children 1cdb42b372e8 72830070a17b
comparison
equal deleted inserted replaced
7695:eacf87a24f55 7696:0a362fa8f3c8
25 25
26 ## Deprecated in version 3.0 26 ## Deprecated in version 3.0
27 27
28 function retval = is_struct (varargin) 28 function retval = is_struct (varargin)
29 29
30 persistent warned = false;
31 if (! warned)
32 warned = true;
33 warning ("Octave:deprecated-function",
34 ["is_struct is obsolete and will be removed from a future\n",
35 "version of Octave, please use isstruct instead"]);
36 endif
37
30 retval = isstruct (varargin{:}); 38 retval = isstruct (varargin{:});
31 39
32 endfunction 40 endfunction