~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/help_topics/en/configuration.txt

  • Committer: Patch Queue Manager
  • Date: 2012-08-02 14:22:37 UTC
  • mfrom: (6549.1.1 dead-code)
  • Revision ID: pqm@pqm.ubuntu.com-20120802142237-yjnpeqh1d55kb2sw
(vila) Remove dead code bzrlib.filters.ContentFilterContext.config(): wasn't
 tested nor used. (Vincent Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
713
713
 
714
714
  bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}
715
715
 
716
 
Because ``mergetool`` and ``config`` itself both use curly braces as
717
 
interpolation markers, trying to display the mergetool line results in the
718
 
following problem::
719
 
 
720
 
 
721
 
  $ bzr config bzr.mergetool.kdiff3='kdiff3 {base} {this} {other} -o {result}'
722
 
  $ bzr config bzr.mergetool.kdiff3
723
 
  bzr: ERROR: Option base is not defined while expanding "kdiff3 {base} {this} {other} -o {result}".
724
 
 
725
 
To avoid this, ``config`` can be instructed not to try expanding variables::
726
 
 
727
 
  $ bzr config --all bzr.mergetool.kdiff3
728
 
  branch:
729
 
    bzr.mergetool.kdiff3 = kdiff3 {base} {this} {other} -o {result}
730
 
 
731
 
 
732
716
bzr.default_mergetool
733
717
~~~~~~~~~~~~~~~~~~~~~
734
718