Commit 432664b7 authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

Fixed issue #31212 - Не обрабатывается ошибка при вводе одинарной кавычки в...

Fixed issue #31212 - Не обрабатывается ошибка при вводе одинарной кавычки в качестве аргумента (http://bugzserver/show_bug.cgi?id=31212)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67059 954022d7-b5bf-4e40-9824-e11837661b57
parent c13374cb
......@@ -3858,7 +3858,7 @@ parserFormula.prototype = {
this.outStack = [];
this.elemArr = [];
return false;*/
if ( this.operand_str == null ) {
if ( this.operand_str == null || this.operand_str == "'" ) {
this.outStack.push( new cError( cErrorType.wrong_name ) );
this.error.push( c_oAscError.ID.FrmlAnotherParsingError );
return this.isParsed = false;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment