How to remove excess whitespace added to code by FTP program? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:12:55Z http://stackoverflow.com/feeds/question/312688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312688/how-to-remove-excess-whitespace-added-to-code-by-ftp-program 1 How to remove excess whitespace added to code by FTP program? Coder 2008-11-23T16:35:46Z 2009-07-10T04:26:36Z <p>This happens repeatedly and is very annoying. I upload some PHP code to a client's server. A few weeks pass. They ask for a change to be made and I re-download the code as they've made some changes. However, my code which used to be neat and tidy the last time I looked at it now has an extra lines of whitespace added everywhere. So now where I had two lines of space between some code, it now has 3. Where I had a bunch of lines sticking together because they were part of the same for loop or such, they're all scattered around now and there's no way to distinguish them.</p> <p>Is there any program/utility to fix this?</p> http://stackoverflow.com/questions/312688/how-to-remove-excess-whitespace-added-to-code-by-ftp-program/312690#312690 7 Answer by Paul Tomblin for How to remove excess whitespace added to code by FTP program? Paul Tomblin 2008-11-23T16:37:29Z 2008-11-23T16:46:09Z <p>Upload in binary mode instead of ascii. Ascii mode is changing all your linefeeds (unix end of line character) into carriage returns + linefeeds (Windows end of line characters).</p> http://stackoverflow.com/questions/312688/how-to-remove-excess-whitespace-added-to-code-by-ftp-program/312710#312710 1 Answer by Brian C. Lane for How to remove excess whitespace added to code by FTP program? Brian C. Lane 2008-11-23T16:55:06Z 2008-11-23T16:55:06Z <p>You may also be having a problem with the other editor using tabs when you are using spaces (you are using spaces, right?). I have seen similar problems when sharing source between developers on Linux/OSX and Windows.</p> http://stackoverflow.com/questions/312688/how-to-remove-excess-whitespace-added-to-code-by-ftp-program/312711#312711 1 Answer by wcm for How to remove excess whitespace added to code by FTP program? wcm 2008-11-23T16:56:09Z 2008-11-23T16:56:09Z <p>I'll bet this is caused by systems trying to convert text files created in a Windows System to files being used by a Unix/Linux system (and back again).</p> <p>Windows uses both a carriage return and a line feed and I think Unix uses only a line feed (or was it a carriage return). </p> <p>I used Ultra Edit as my main text editor (not that Emacs and vi don't rule :o) and it has a DOS mode and a Unix mode for just this kind of thing.</p> http://stackoverflow.com/questions/312688/how-to-remove-excess-whitespace-added-to-code-by-ftp-program/312744#312744 1 Answer by hasen j for How to remove excess whitespace added to code by FTP program? hasen j 2008-11-23T17:30:00Z 2008-11-23T17:30:00Z <p>Force your client to transfer all files in binary mode. This is also useful when you have unicode text in your files, you never know what assumptions text-mode might make!</p> http://stackoverflow.com/questions/312688/how-to-remove-excess-whitespace-added-to-code-by-ftp-program/312757#312757 1 Answer by Simon Callan for How to remove excess whitespace added to code by FTP program? Simon Callan 2008-11-23T17:45:24Z 2008-11-23T18:15:11Z <p>At a guess, I would say that you are developing on a Unix / Max system, but the customer is running on a Windows system (or vice-versa). I would also guess that you are uploading / downloading your files in Binary mode. The windows editor is probably converting the Unix LF to a LF/CR pair, which your editor thren treats as two new lines. If you upload and download in ASCII mode, the files will be automatically converted between the two formats.</p>