--- a/mercurial/ui.py Mon Aug 14 15:07:00 2006 -0500
+++ b/mercurial/ui.py Tue Aug 15 11:34:08 2006 -0500
@@ -169,18 +169,6 @@
result[key.lower()] = value
return result
- def diffopts(self, opts={}):
- return mdiff.diffopts(
- text=opts.get('text'),
- showfunc=(opts.get('show_function') or
- self.configbool('diff', 'showfunc', None)),
- ignorews=(opts.get('ignore_all_space') or
- self.configbool('diff', 'ignorews', None)),
- ignorewsamount=(opts.get('ignore_space_change') or
- self.configbool('diff', 'ignorewsamount', None)),
- ignoreblanklines=(opts.get('ignore_blank_lines') or
- self.configbool('diff', 'ignoreblanklines', None)))
-
def username(self):
"""Return default username to be used in commits.