Details
-
Bug
-
Resolution: Done
-
Major - P3
-
1.6.3, 1.6.4
-
None
-
Windows 7
-
ALL
Description
If I put the following jacascript in the console:
var SomeEvent = db.events.findOne(
);
SomeEvent.Summary =
"Some Text.\r\n\r\n" +
"Some more text.";
db.events.save(SomeEvent);
db.events.findOne(
);
I get the following:
> var SomeEvent = db.events.findOne(
);
> SomeEvent.Summary =
Expected behavior of the shell would be to hold the line ending in equals in a buffer and append the next line to it before executing.