Changeset 400
- Timestamp:
- 09/25/08 17:36:13 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jasko.tim.lisp/src/jasko/tim/lisp/builder/LispBuilder.java
r392 r400 553 553 i = line.length(); 554 554 break; 555 } else if (c == '"' && !(i > 1 && ( !inQuotes && (line.charAt(i-1) == '\\' || line.charAt(i-2) == '#')))) {555 } else if (c == '"' && !(i > 1 && (line.charAt(i-1) == '\\' || line.charAt(i-2) == '#'))) { 556 556 inQuotes = !inQuotes; 557 } else if (c == '#' && ! inQuotes && !(i > 1 && (line.charAt(i-1) == '\\' || line.charAt(i-2) == '#'))) {557 } else if (c == '#' && !(i > 1 && (line.charAt(i-1) == '\\' || line.charAt(i-2) == '#'))) { 558 558 if (i+1 < line.length()) { 559 559 if (line.charAt(i+1) == '|') {
