# HG changeset patch # User Rik # Date 1372717641 25200 # Node ID 76bd90f6ba6539b77cdcd85467e6c4e82b784d1e # Parent e1c70d72df040b15523f54121c137facbdc5825f __plt__.m: Use marker style '.' for vector/scalar plots (bug #38825). * scripts/plot/private/__plt__.m(__plt2sv__,__plt2vs__): Set marker style to "." if unspecified. diff --git a/scripts/plot/private/__plt__.m b/scripts/plot/private/__plt__.m --- a/scripts/plot/private/__plt__.m +++ b/scripts/plot/private/__plt__.m @@ -373,7 +373,9 @@ linestyle = options(i).linestyle; marker = options(i).marker; if (isempty (marker) && isempty (linestyle)) - [linestyle, marker] = __next_line_style__ (); + ## If unspecified, marker for a point is always "." + linestyle = "-"; + marker = "."; endif color = options(i).color; if (isempty (color)) @@ -443,7 +445,9 @@ linestyle = options(i).linestyle; marker = options(i).marker; if (isempty (marker) && isempty (linestyle)) - [linestyle, marker] = __next_line_style__ (); + ## If unspecified, marker for a point is always "." + linestyle = "-"; + marker = "."; endif color = options(i).color; if (isempty (color))