]> git.lyx.org Git - features.git/commitdiff
Revert "Work around bug #9841"
authorGuillaume Munch <gm@lyx.org>
Sun, 20 Dec 2015 13:08:49 +0000 (13:08 +0000)
committerGuillaume Munch <gm@lyx.org>
Tue, 12 Jan 2016 21:25:34 +0000 (21:25 +0000)
This reverts commit dc016de34eab3fe24d9673a48cabf754bebbadaa.

See discussion at http://mid.gmane.org/n53ar8$1tj$1@ger.gmane.org

src/BufferParams.cpp

index 8024d4a5b13fcf0ff467241445a4db132820b745..618aed3d3adeca0d58d421df583d775cd65d47ca 100644 (file)
@@ -1274,14 +1274,9 @@ void BufferParams::writeFile(ostream & os, Buffer const * buf) const
        }
 
        os << "\\tracking_changes " << convert<string>(track_changes) << '\n'
+          << "\\output_changes " << convert<string>(output_changes) << '\n'
           << "\\html_math_output " << html_math_output << '\n'
           << "\\html_css_as_file " << html_css_as_file << '\n'
-               // \output_changes is output at a distance from \tracking changes as a
-               // workaround to bug #9841: both parameters can be seen as per-user
-               // preferences and therefore can cause undesirable merge conflicts, in a
-               // multi-author setting, if it were treated as a single block by the
-               // version control system.
-          << "\\output_changes " << convert<string>(output_changes) << '\n'
           << "\\html_be_strict " << convert<string>(html_be_strict) << '\n';
 
        if (html_math_img_scale != 1.0)