Bug introduced in 8.0 and fixed in 10.0.0
I would like to generate a ListLogLinearPlot that automatically shows all the data points. However the option PlotRange -> All does not achieve this. Why does All not include all of the data in this case?
For Example:
x = Range[0.001, 1000]; y = 5 - Log[x]; ListPlot[Transpose[{x, y}], PlotRange -> All] ListLogLinearPlot[Transpose[{x, y}], PlotRange -> All] In the resulting plots, the ListPlot looks as expected:

but the LisLogLinearPlot cuts off several points on the left:
