[pypy-svn] r18736 - pypy/dist/pypy/tool

arigo at codespeak.net arigo at codespeak.net
Tue Oct 18 13:45:20 CEST 2005


Author: arigo
Date: Tue Oct 18 13:45:19 2005
New Revision: 18736

Modified:
   pypy/dist/pypy/tool/fixeol
Log:
Apparently, un-Windowsifying the content of the file to fix end-of-lines always
creates huge diffs.  Strangely enough, svn diff doesn't list these lines as
modified, but they still all show up in pypy-svn.  Go figure.



Modified: pypy/dist/pypy/tool/fixeol
==============================================================================
--- pypy/dist/pypy/tool/fixeol	(original)
+++ pypy/dist/pypy/tool/fixeol	Tue Oct 18 13:45:19 2005
@@ -39,13 +39,11 @@
     if data != original:
         print "*"*30 
         print "--->  %s  <---" % path 
-        print ("Hum, in order to run fixeol on this file "
-               "you need to be on the platform which "
-               "matches its line-endings.  Modifying "
-               "the file content here would otherwise "
-               "lead to huge diffs!")
+        print ("WARNING: the file content was modified "
+               "by fixing the EOL style.")
         print "*"*30 
-        return False 
+        #return False
+        return True
     return True
 
 def checkeolfile(path):     



More information about the Pypy-commit mailing list