One of my favorite examples of why this is bad came at a CVS site. In CVS, if you put "$Log$" in your file, it puts the commit comment in the line right after that line. It's like putting the output of "cvs log" in your commit.
Some bright person put in as the commit comment "Added $Log$ line in file". Thus, right below the commit comment was the line:
Added $Log$ line in the file
In the next commit, both instances of $Log caused the commit comment to be repeated. And, since one of those comments contained "$Log", we now had four instances of "$Log$".
Every time a commit was made, we ended up doubling the amount of lines in the $Log$ entry. Removing the extraneous $Log$ lines didn't help because the next commit put them back in and doubled them again.
In the end, I had to edit the ,v file in the repository to wipe out the whole $Log$ mess.
In the Subversion documentation, they make their feelings about $Log$ very clear.