# HG changeset patch # User Dirkjan Ochtman # Date 1218095607 -7200 # Node ID 0ff5d2bbd8b1c665d113bace862e6d64696c0eb3 # Parent 105d8676a688a50fcf82b9ee781d97ea833a9133# Parent d923a051f84c47e7cc65d1684c24a7fff29dbda2 merge with crew-stable diff -r 105d8676a688 -r 0ff5d2bbd8b1 hgext/notify.py --- a/hgext/notify.py Wed Aug 06 17:19:14 2008 -0500 +++ b/hgext/notify.py Thu Aug 07 09:53:27 2008 +0200 @@ -234,7 +234,7 @@ maxdiff = int(self.ui.config('notify', 'maxdiff', 300)) prev = self.repo.changelog.parents(node)[0] self.ui.pushbuffer() - patch.diff(self.repo, prev, ref) + patch.diff(self.repo, prev, ref, opts=patch.diffopts(self.ui)) difflines = self.ui.popbuffer().splitlines(1) if self.ui.configbool('notify', 'diffstat', True): s = patch.diffstat(difflines)