The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 5f0e82b72d25e1f3af9e102bff3b87e43621df8f Author: Richard Heck <[email protected]> Date: Mon Mar 18 18:08:31 2013 -0400 Fix bug #8597: Output only (ref) for \eqref, not: equation (ref). diff --git a/src/insets/InsetRef.cpp b/src/insets/InsetRef.cpp index 680323c..180abd1 100644 --- a/src/insets/InsetRef.cpp +++ b/src/insets/InsetRef.cpp @@ -225,7 +225,7 @@ docstring InsetRef::xhtml(XHTMLStream & xs, OutputParams const &) const // normally would be "on page #", but we have no pages display_string = _("elsewhere"); else if (cmd == "eqref") - display_string = bformat(from_ascii("equation (%1$s)"), value); + display_string = '(' + value + ')'; else if (cmd == "formatted" // we don't really have the ability to handle these // properly in XHTML output ----------------------------------------------------------------------- Summary of changes: src/insets/InsetRef.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
