/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Ian Clatworthy
  • Date: 2009-01-18 00:52:24 UTC
  • mto: (3964.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 3965.
  • Revision ID: ian.clatworthy@canonical.com-20090118005224-rkr66k4s31mgwy0z
first cut at log --show-diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1862
1862
                   help='Limit the output to the first N revisions.',
1863
1863
                   argname='N',
1864
1864
                   type=_parse_limit),
 
1865
            Option('show-diff',
 
1866
                   help='Show changes made in each revision.'),
1865
1867
            ]
1866
1868
    encoding_type = 'replace'
1867
1869
 
1874
1876
            change=None,
1875
1877
            log_format=None,
1876
1878
            message=None,
1877
 
            limit=None):
 
1879
            limit=None,
 
1880
            show_diff=False):
1878
1881
        from bzrlib.log import show_log
1879
1882
        direction = (forward and 'forward') or 'reverse'
1880
1883
 
1931
1934
                     start_revision=rev1,
1932
1935
                     end_revision=rev2,
1933
1936
                     search=message,
1934
 
                     limit=limit)
 
1937
                     limit=limit,
 
1938
                     show_diff=show_diff)
1935
1939
        finally:
1936
1940
            b.unlock()
1937
1941