Hello I've been having to work in a Delphi 7 project recently and one thing that constantly bugs me is the *.dfm files. Anytime I even open up a form, it will change the .dfm file.
For example, this diff was made just by opening the project and viewing a file and form(note, I didn't change anything on the form itself)
@@ -1,6 +1,6 @@
object FormPartnerInfo: TFormPartnerInfo
- Left = 85
- Top = 454
+ Left = 554
+ Top = 322
BorderIcons = [biSystemMenu]
BorderStyle = bsToolWindow
Is there anyway to force Delphi 7 to not update this pointless design-time information? I'd prefer to have it play nice in SVN so I don't have to keep reverting files before doing a commit
-
and+
indicate lines that were different; lines with nothing in front of them are contextual. – Penmandiff
output,object
clause andBorderIcons
denotes the context of changed lines. Or better, get Win32 port ofdiffutils
, it is quite powerful. – Cuprum