From 37604def43e1396953b33304eaf06724253afd55 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Sun, 24 Jul 2016 14:57:54 -0400 Subject: [PATCH] updated readme, fix typo in ReadGlobal --- README.md | 17 ++++++++++++++--- ReadGlobal.c | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 961831b..a7a1ce5 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,10 @@ with a real MPW installation due to implementation differences. The tools are: +* Delete: replacement for the Delete command. + +* Echo: replacement for the Echo command. + * Duplicate: replacement for the Duplicate command. * GetEnv: new command to extract environment variables for use in makefiles. @@ -20,12 +24,19 @@ The tools are: file in the `$MPW:Help:` directory rather than searching through a single monolithic help file. +* ListRez: List the resources in a Macintosh resource file. + +* ListRezIIgs: List the resources in a IIgs resource file. + +* MakeEnums: Print struct offsets for various records (for use with MPW development). + * OverlayIIgs: replacement for the OverlayIIgs command. (This has been tested under MPW.) +* Parameters: replacement for the Parameters command. + +* ReadGlobal: Display a global value. + * SetFile: replacement for the SetFile command. Currently only filetype and creator type are supported. -* ListRez: List the resources in a Macintosh resource file. - -* ListRezIIgs: List the resources in a IIgs resource file. \ No newline at end of file diff --git a/ReadGlobal.c b/ReadGlobal.c index 0135960..19e928a 100644 --- a/ReadGlobal.c +++ b/ReadGlobal.c @@ -435,7 +435,7 @@ int getopt(char *opts, int argc, char **argv) exit(0); break; default: - fprintf(stderr, "Duplicate - Invalid flag: \"%c\"\n", c); + fprintf(stderr, "ReadGlobal - Invalid flag: \"%c\"\n", c); exit(1); break;