From f076b05e7ea13b503a04798ae4d44fbf5714d332 Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Fri, 11 Jan 2013 08:06:51 +0100 Subject: [PATCH] =?UTF-8?q?More=20information:=20Shows=20that=20the=20new?= =?UTF-8?q?=20compiler=20is=20used=20when=20doing=20"objjc=20--help".=20Ne?= =?UTF-8?q?w=20output:=20"Usage=20(objjc=202.0):=E2=80=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Objective-J/CommonJS/lib/objective-j/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-J/CommonJS/lib/objective-j/compiler.js b/Objective-J/CommonJS/lib/objective-j/compiler.js index 173fe0977..2c7d582b9 100644 --- a/Objective-J/CommonJS/lib/objective-j/compiler.js +++ b/Objective-J/CommonJS/lib/objective-j/compiler.js @@ -222,7 +222,7 @@ exports.main = function(args) if (argv[0] === "--help" || argv[0].substr(0, 1) == '-') { - print("Usage: " + args[0] + " [options] [--] file..."); + print("Usage (objjc 2.0): " + args[0] + " [options] [--] file..."); print(" -p, --print print the output directly to stdout"); print(" --unmarked don't tag the output with @STATIC header"); print("");