Backport fix for #7338

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@37882 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2011-03-08 15:01:12 +00:00
parent 3165f5671d
commit adbe546d65
2 changed files with 5 additions and 0 deletions

View File

@ -152,6 +152,9 @@ string LyXVC::checkIn()
if (ok) {
if (response.empty())
response = _("(no log message)");
//shell collisions
response = subst(response, from_utf8("\""), from_utf8("\\\""));
log = vcs->checkIn(to_utf8(response));
} else {
LYXERR(Debug::LYXVC, "LyXVC: user cancelled");

View File

@ -71,6 +71,8 @@ What's new
- Show mnemonics in context menus that are requested by the keyboard
key (only Windows; bug 5414).
- Fix broken commits in VCS when message contains quotes (bug 7338).
* DOCUMENTATION AND LOCALIZATION