comparison scripts/plot/refreshdata.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents fd0a3ac60b0e
children 5ec6aa05638d
comparison
equal deleted inserted replaced
11586:12df7854fa7c 11587:c792872f8942
63 error ("refreshdata: expecting a list of figure handles"); 63 error ("refreshdata: expecting a list of figure handles");
64 endif 64 endif
65 if (nargin < 2) 65 if (nargin < 2)
66 workspace = "base"; 66 workspace = "base";
67 else 67 else
68 if ( !ischar (workspace) 68 if ( !ischar (workspace)
69 || !(strcmpi (workspace, "base") 69 || !(strcmpi (workspace, "base")
70 || strcmpi (workspace, "caller"))) 70 || strcmpi (workspace, "caller")))
71 error ("refreshdata: expecting WORKSPACE to be \"base\" or ""caller\""); 71 error ("refreshdata: expecting WORKSPACE to be \"base\" or ""caller\"");
72 else 72 else
73 workspace = tolower (workspace); 73 workspace = tolower (workspace);