From d341c8cac75622295445341945af4909c2618b02 Mon Sep 17 00:00:00 2001
From: Sven Gestegard Robertz <sven.robertz@cs.lth.se>
Date: Wed, 25 Jun 2014 10:21:14 +0200
Subject: [PATCH] added RAPID to help text

---
 compiler/LabComm.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/compiler/LabComm.java b/compiler/LabComm.java
index c86125a..9dbbafb 100644
--- a/compiler/LabComm.java
+++ b/compiler/LabComm.java
@@ -30,6 +30,8 @@ public class LabComm {
     println("[ Python options ]");
     println(" -P                      Generates Python code in FILE.py");
     println(" --python=PFILE          Generates Python code in PFILE");
+    println("[ RAPID options ]");
+    println(" --rapid=FILE            Generates RAPID code in FILE");
     println("[ Misc options ]");
     println(" --pretty                Pretty prints on standard output");
     println(" --typeinfo=TIFILE       Generates typeinfo in TIFILE");
@@ -92,7 +94,7 @@ public class LabComm {
     String pythonFile = null;
     String prettyFile = null;
     String typeinfoFile = null;
-	String rapidFile = null;
+    String rapidFile = null;
 
     for (int i = 0 ; i < args.length ; i++) {
       if (fileName == null ||
-- 
GitLab