Changeset 392
- Timestamp:
- 09/23/08 14:48:36 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jasko.tim.lisp/src/jasko/tim/lisp/builder/LispBuilder.java
r352 r392 348 348 boolean cancompile = true; 349 349 // check if package dependence is satisfied: 350 ArrayList<String> pkgs = LispPlugin.getDefault().getSwank().getAvailablePackages( 2000);350 ArrayList<String> pkgs = LispPlugin.getDefault().getSwank().getAvailablePackages(3000); 351 351 for( LispNode node: code.params ){ 352 352 String nodetype = node.car().value.toLowerCase(); … … 553 553 i = line.length(); 554 554 break; 555 } else if (c == '"' && !(i > 1 && ( line.charAt(i-1) == '\\' || line.charAt(i-2) == '#'))) {555 } else if (c == '"' && !(i > 1 && (!inQuotes && (line.charAt(i-1) == '\\' || line.charAt(i-2) == '#')))) { 556 556 inQuotes = !inQuotes; 557 } else if (c == '#' && ! (i > 1 && (line.charAt(i-1) == '\\' || line.charAt(i-2) == '#'))) {557 } else if (c == '#' && !inQuotes && !(i > 1 && (line.charAt(i-1) == '\\' || line.charAt(i-2) == '#'))) { 558 558 if (i+1 < line.length()) { 559 559 if (line.charAt(i+1) == '|') { jasko.tim.lisp/src/jasko/tim/lisp/wizards/NewProjectWiz.java
r359 r392 106 106 */ 107 107 private void doFinish (String projectName, String customProjectPath, 108 boolean useLispUnit, boolean makeExample,108 final boolean useLispUnit, boolean makeExample, 109 109 IProgressMonitor monitor) throws CoreException { 110 110 monitor.beginTask("Creating " + projectName, 10); … … 209 209 IDE.openEditor(page, asd, true); 210 210 IDE.openEditor(page, defpackage, true); 211 IDE.openEditor(page, tests, true); 211 if (useLispUnit) { 212 IDE.openEditor(page, tests, true); 213 } 212 214 IDE.openEditor(page, main, true); 213 215
