no markers when using figlegend

Version: matplotlib 0.98.3

I get no markers inside of the figure legend (using figlegend). Using "legend" shows the markers.

Try the following:

from pylab import *
lines = plot([1, 2, 3, 4], [2, 4, 7, 8], 'ro')
legend(lines, ["foo"])
figlegend(lines, ["foo"], "upper right")
show()

If I use 'r-' for the marker instead of 'ro', the figlegend() output matches the legend() output.

I believe this worked okay in version 0.82.

Great package. Thanks to the developers.

Rick

p.s. I did not file a bug on this. I would guess one may already exist, but a quick query of the mailing lists did not show anything that was obviously a similar posting.