# HG changeset patch # User jwe # Date 1028566237 0 # Node ID ca18dc3d5596d1e558557dd9a43defcb51acc8bc # Parent c6d7ae9fcdb92c12f0fe9aa29b98bfe7d614fb39 [project @ 2002-08-05 16:50:37 by jwe] diff -r c6d7ae9fcdb9 -r ca18dc3d5596 scripts/ChangeLog --- a/scripts/ChangeLog Mon Aug 05 16:42:36 2002 +0000 +++ b/scripts/ChangeLog Mon Aug 05 16:50:37 2002 +0000 @@ -1,3 +1,8 @@ +2002-08-05 Teemu Ikonen + + * plot/__errcomm__.m: If format is not specified, default to error + bar format. + 2002-08-01 John W. Eaton * miscellaneous/popen2.m: Use F_SETFL and O_NONBLOCK, not diff -r c6d7ae9fcdb9 -r ca18dc3d5596 scripts/plot/__errcomm__.m --- a/scripts/plot/__errcomm__.m Mon Aug 05 16:42:36 2002 +0000 +++ b/scripts/plot/__errcomm__.m Mon Aug 05 16:50:37 2002 +0000 @@ -56,7 +56,6 @@ sz = size (a); ndata = 1; arg1 = a; - fmt = " "; while (nargin) nargin--; a = varargin{k++}; @@ -87,7 +86,7 @@ endwhile if (! isstr (a)) - fmt = " "; + fmt = "~"; cmd = "__errplot__ (arg1"; for i = 2:ndata, cmd = sprintf ("%s, arg%d", cmd, i);