diff 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
line wrap: on
line diff
--- a/mercurial/mdiff.py	Tue Jan 15 15:49:24 2008 -0600
+++ b/mercurial/mdiff.py	Wed Jan 16 11:14:24 2008 -0600
@@ -30,7 +30,7 @@
     defaults = {
         'context': 3,
         'text': False,
-        'showfunc': True,
+        'showfunc': False,
         'git': False,
         'nodates': False,
         'ignorews': False,