I've always copied code from posts directly into Visual Studio (or whatever) and it used to line-up nicely. A few days ago, the linebreaks stopped working and I get everything in one line so I'll have to do it manually.

I tested with IE8, Firefox 3.5, Opera and Google Chrome and it works for all, but fails in IE8 when there is actual syntax highlighting. (Like on Stack Overflow, but no problem below as the code below is currently not highlighted.)

Example: I copy this

public void AvatarClick(object param)
{
    //...
}

I get this

public void AvatarClick(object param) {     //... }

Usually no biggie but can be pretty anoying for large pieces of code. What I usually do now is click edit on the question and copy the code from there instead.

Just wanted to check, did something change?

Thanks

share|improve this question
Works on my machine™. Firefox 3.6, document the browser you use. – Uphill Luge Dec 21 '10 at 17:16
@Hans: Thanks, updated – Meleak Dec 21 '10 at 17:16
Just to validate: does it fail for the above example too? Lacking specific languages tags, you won't have code highlighting above, hence it's really just <pre><code> ... </code></pre> for your browser. If it's fine here, but not on Stack Overflow, than it might be related to code highlighting (which did change recently). – Arjan Dec 21 '10 at 17:19
@Hans: I tested with IE8, FireFox 3.5, Opera and Google Chrome and it works for all of them except IE8. Weird part is, it used to work until a few days ago.. Got any idea? Change browser maybe? :) – Meleak Dec 21 '10 at 17:22
@Arjan: Yes, it works when I copy it from here – Meleak Dec 21 '10 at 17:23
Then it might be a Google Code Prettify bug for IE8, though that does not seem to have changed since July. – Arjan Dec 21 '10 at 17:24
@Arjan: Ok, thanks for the answer. I'll just swap browser then :) – Meleak Dec 21 '10 at 17:32
If more folks using IE8 see this, then I guess this should be tagged [bug]. So, IE8 users, post your "me too"! – Arjan Dec 21 '10 at 17:44
I tried it with IE8 on 4 different computers now and same problem with all 4 – Meleak Dec 21 '10 at 17:54
@Grace Note: If you copy the code from this link: stackoverflow.com/questions/4502346/…. with IE8 and paste that into Notepad, does that really work for you? – Meleak Dec 21 '10 at 17:59
@Meleak Ah, yes, when I do it through Stack Overflow, it seems to be breaking. I did test with another question that didn't have a scrollbar, on the off-chance that had anything to do with it, but that met equal failure. Removed my no-longer-applicable comment. – Grace Note Dec 21 '10 at 18:01
@Grace Note: Ok, actually glad to know I wasn't the only one this was failing for :) Was trying computer after computer here with the same problem on all of them and here everyone was saying "works fine for me" – Meleak Dec 21 '10 at 18:08
@Brandon, I guess that leaves the same question for you ;-) – Arjan Dec 21 '10 at 18:12
@Arjan, what Grace said. Although I thought I did try it through SO at first. My mistake. – Brandon Dec 21 '10 at 18:21
3  
By the way, this question might be related: meta.stackoverflow.com/questions/11428/… It could have broken again. – Brandon Dec 21 '10 at 18:27
show 2 more comments

1 Answer

I've noticed the same problem with IE7, and I'll be closing my duplicate question.

I've done some experimenting. Copying from Firefox and pasting into IE8 is not a problem, while copying from IE8 and pasting into Firefox reproduces the problem. My conclusion: the problem is with the copy and not the paste.

Pasting into Notepad reproduces the problem but pasting into Wordpad does not. I've seen this problem before with text which uses only LF for newlines, instead of the Windows standard of CR+LF.

I'd like to reiterate the OP's observation that this is a recent problem. I've done this many many times in the past.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged