Mercurial > public > mercurial-scm > hg
comparison mercurial/mdiff.py @ 5863:3d1f9dcecdea
diff: don't show function name by default
We'd mistakenly made the -p option always on, which meant there was no
way to turn it off. It also meant that we were sometimes splitting
multibyte characters in function name, which isn't a good default.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 16 Jan 2008 11:14:24 -0600 |
parents | e5eedd74e70f |
children | 65029a3aafc2 |
comparison
equal
deleted
inserted
replaced
5861:b860b116dea4 | 5863:3d1f9dcecdea |
---|---|
28 ignoreblanklines ignores changes whose lines are all blank''' | 28 ignoreblanklines ignores changes whose lines are all blank''' |
29 | 29 |
30 defaults = { | 30 defaults = { |
31 'context': 3, | 31 'context': 3, |
32 'text': False, | 32 'text': False, |
33 'showfunc': True, | 33 'showfunc': False, |
34 'git': False, | 34 'git': False, |
35 'nodates': False, | 35 'nodates': False, |
36 'ignorews': False, | 36 'ignorews': False, |
37 'ignorewsamount': False, | 37 'ignorewsamount': False, |
38 'ignoreblanklines': False, | 38 'ignoreblanklines': False, |