The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 1b7d812e5116a39d3319cda234c652f64bec9dd3 Author: Richard Heck <[email protected]> Date: Thu Feb 7 08:44:42 2013 -0500 Fix really silly logic error. This should make prettyref-based files work better when converted to refstyle. diff --git a/src/insets/InsetRef.cpp b/src/insets/InsetRef.cpp index bae4992..49743ce 100644 --- a/src/insets/InsetRef.cpp +++ b/src/insets/InsetRef.cpp @@ -319,12 +319,13 @@ void InsetRef::validate(LaTeXFeatures & features) const string const fcmd = to_utf8(getFormattedCmd(data, label, prefix)); if (buffer().params().use_refstyle) { features.require("refstyle"); - if (!prefix.empty()) { + if (prefix == "cha") + features.addPreambleSnippet("\\let\\charef=\\chapref"); + else if (!prefix.empty()) { string lcmd = "\\AtBeginDocument{\\providecommand" + fcmd + "[1]{\\ref{" + to_utf8(prefix) + ":#1}}}"; features.addPreambleSnippet(lcmd); - } else if (prefix == "cha") - features.addPreambleSnippet("\\let\\charef=\\chapref"); + } } else { features.require("prettyref"); // prettyref uses "cha" for chapters, so we provide a kind of ----------------------------------------------------------------------- Summary of changes: src/insets/InsetRef.cpp | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) hooks/post-receive -- The LyX Source Repository
