I noticed that a post had a formatting issue (code appeared to not be indented). I opened the editor, and curiously enough the code seemed fine in the preview without me having to make any changes, so I just hit "Save Edits". The new revision has the proper formatting, but according to the revision page, I didn't change anything in terms of the post source; the indents appear to have already been in the first revision.
I looked at Data Explorer's snapshot of the post from earlier this month and it seems to have this for the body:
<p>_targetForm.dw_retailer.SetColumn(6);
_targetForm.dw_retailer.SetText(retailer.text);
_targetForm.dw_retailer.SetColumn(9);
_targetForm.dw_retailer.SetText(retailer.webname);</p>
...
Whereas if I view the page source, I see this:
<pre><code>_targetForm.dw_retailer.SetColumn(6);
_targetForm.dw_retailer.SetText(retailer.text);
_targetForm.dw_retailer.SetColumn(9);
_targetForm.dw_retailer.SetText(retailer.webname);
</code></pre>
...
What happened here? Did I trigger some sort of automated, silent, retroactive edit?