# HG changeset patch # User korDen # Date 1283072340 -14400 # Node ID cfa3747ebe4cba16e39e335e5eac2129c2cec435 # Parent 7e0d548de9e6523906080425f8cf913a4ed291bd Changed dmd to ddmd in the "usage" message and added "ported to D by community" to desription to distinguish from pure dmd build diff -r 7e0d548de9e6 -r cfa3747ebe4c commands.txt --- a/commands.txt Sun Aug 29 09:43:40 2010 +0100 +++ b/commands.txt Sun Aug 29 12:59:00 2010 +0400 @@ -17,7 +17,7 @@ -ofbin\ddmd.exe bridge.obj ddmd.def -dmd33\src\dmd\dmd.lib +dmd.lib main.d dbg\CallStackInfo.d dbg\Debug.d diff -r 7e0d548de9e6 -r cfa3747ebe4c dmd/Global.d --- a/dmd/Global.d Sun Aug 29 09:43:40 2010 +0100 +++ b/dmd/Global.d Sun Aug 29 12:59:00 2010 +0400 @@ -29,7 +29,7 @@ string ddoc_ext = "ddoc";; // for Ddoc macro include files string hdr_ext = "di"; // for D 'header' import files string copyright= "Copyright (c) 1999-2009 by Digital Mars"; - string written = "written by Walter Bright"; + string written = "written by Walter Bright, ported to D by community"; ///version (TARGET_NET) { /// "\nMSIL back-end (alpha release) by Cristian L. Vlasceanu and associates."; ///} diff -r 7e0d548de9e6 -r cfa3747ebe4c dmd/Util.d --- a/dmd/Util.d Sun Aug 29 09:43:40 2010 +0100 +++ b/dmd/Util.d Sun Aug 29 12:59:00 2010 +0400 @@ -511,7 +511,7 @@ writef( "Documentation: http://www.digitalmars.com/d/2.0/index.html\n" "Usage:\n" -" dmd files.d ... { -switch }\n" +" ddmd files.d ... { -switch }\n" "\n" " files.d D source files\n" " @cmdfile read arguments from cmdfile\n"