The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 6633a93b6dad082b892720d3c3a420219e9f6462 Author: Richard Heck <[email protected]> Date: Tue Mar 12 13:12:45 2013 -0400 Forgot the crucial piece of the last commit!! diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index ec2ff51..8df7ab7 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -3142,13 +3142,16 @@ docstring Paragraph::stringify(pos_type beg, pos_type end, int options, && !d->params_.labelString().empty()) os << d->params_.labelString() << ' '; + OutputParams op = runparams; + op.for_search = true; + for (pos_type i = beg; i < end; ++i) { char_type const c = d->text_[i]; if (isPrintable(c) || c == '\t' || (c == '\n' && (options & AS_STR_NEWLINES))) os.put(c); else if (c == META_INSET && (options & AS_STR_INSETS)) { - getInset(i)->plaintext(os, runparams); + getInset(i)->plaintext(os, op); } } ----------------------------------------------------------------------- Summary of changes: src/Paragraph.cpp | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
