Changeset 15003
- Timestamp:
- Mar 9, 2013, 1:42:05 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/InterpreterV8.cc
r14994 r15003 1877 1877 1878 1878 // If line ends with a backslash, allow addition of next line 1879 if (command.back()=='\\') 1879 auto back = command.rbegin(); 1880 if (*back=='\\') 1880 1881 { 1881 command[command.length()-1]= ' ';1882 *back = ' '; 1882 1883 command = Tools::Trim(command); 1883 1884 continue;
Note: See TracChangeset
for help on using the changeset viewer.