Is there a way to remove the indentation at the beginning of a paragraph for a single paragraph. I know I could do
\setlength{\parindent}{0cm}
This is my paragraph. Blah blah blah.
\setlength{\parindent}{default}
Where default is whatever the default indentation is for the document class I am using (part of the problem is that I don't know what this default value is). I feel as if there should be a better way to accomplish this than by the above method. I am looking for a solution of the form:
\noindent
This is my paragraph. Blah blah blah.
Is there a way to do this, or will I have to resort to the former method? If I have to resort to the former method, what is the default indentation value for the amsart document class?

\noindentdoes not work for you? If so, can you provide a a fully compilable MWE that illustrates the problem including the\documentclass. – Peter Grill Dec 19 '11 at 21:57\the\parindent, normally defined as 1.5em for full width text and 1em for two column. – mathspasha Dec 19 '11 at 21:57\noindent, since it works. – Ryan Reich Dec 19 '11 at 22:46\noindent. I just used the '\noindent' example to illustrated the kind of solution I was looking for. I did not realize it would actually work! – Jonathan Gleason Dec 20 '11 at 00:46