diff options
-rw-r--r-- | basic/source/runtime/runtime.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx index 69eeb19b1d1f..abcee4bcc42d 100644 --- a/basic/source/runtime/runtime.cxx +++ b/basic/source/runtime/runtime.cxx @@ -1491,7 +1491,8 @@ namespace case '[': sResult.append(*start++); seenright = 0; - if (start < end && *start=='!'){ + if (start < end && *start == '!') + { sResult.append('^'); start++; } |