It seems that you are looking for something like
hg grep --all 'Save();'
This should give you every file change in the format
<file path>:<revision>:+ or -:<line of code changed>
The --all flag is useful to make sure you get all the links, since by default hg stops looking at the file after it finds the first link (search back through the revision list). Also note that you will almost certainly want to limit the scope of the revision you are searching for, as it takes quite a lot of time on a fairly large repo.
If you are on a unix system, you should be able to transfer the output of the grep command to a file (it takes some time to start, you may want to cache it if you do not receive later material for the first time)
cat saved_grep_results | awk 'BEGIN {FS=":"} {print $1" "$2}' | uniq
This should provide you with a list of files and fixes that you want to view.
source share