# HG changeset patch # User jwe # Date 1028566237 0 # Node ID ca18dc3d5596d1e558557dd9a43defcb51acc8bc # Parent c6d7ae9fcdb92c12f0fe9aa29b98bfe7d614fb39 [project @ 2002-08-05 16:50:37 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -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 --git a/scripts/plot/__errcomm__.m b/scripts/plot/__errcomm__.m --- a/scripts/plot/__errcomm__.m +++ b/scripts/plot/__errcomm__.m @@ -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);