Sometimes with \raggedright, if a line is too long, but only slighly so, it will be shrunk instead of broken up. Here is an example:
\documentclass{article}
\raggedright
\begin{document}
This is a line that is shrunk to fit the page width despite the use of raggedright.
This is a line that is shrunk to fit the page width despite the use of \ldots
\end{document}
Is there a way to prevent this? In particular, I want all text in my document to be ragged right, and I want to make sure that everywhere in the document, text is never shrunk (neither stretched, but this is never an issue with ragged-right text).
