Hi
I'm comparing two files, one with Zero in and one with 0x00 in. In the code these are equivalent values, and I can't work out how to ignore them.
Any help appreciated.
Thanks
Ignore words in each file
Moderator: SourceGear
-
- Posts: 534
- Joined: Tue Jun 05, 2007 11:37 am
- Location: SourceGear
- Contact:
Re: Ignore words in each file
Sorry, there's no way to get those 2 strings to be treated as equivalent in DiffMerge.
DiffMerge is looking at the files as text files; it doesn't understand the semantics of
any programming language constructs. All of the literals vs comments stuff is done
with REGEX rather than a real syntax parser. So there's no way for it to know what
those strings mean within the source.
Sorry
jeff
DiffMerge is looking at the files as text files; it doesn't understand the semantics of
any programming language constructs. All of the literals vs comments stuff is done
with REGEX rather than a real syntax parser. So there's no way for it to know what
those strings mean within the source.
Sorry
jeff
Re: Ignore words in each file
Thanks for letting me know.