If you upgrade to Rails 2.2.2 and start getting “The binding argument of #concat is no longer needed” then wherever you do something like this:
concat(content, block.binding) </pre>
change it to this:concat(content) </pre>
The 'block.binding' argument is no longer needed which is nice because who really wanted to type that over and over again anyway.