diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-04-24 12:10:20 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-04-24 12:10:20 +0000 |
commit | 7500a961f169455b95a97b59bf8a3544ec851fd0 (patch) | |
tree | eb5dd05a4f0ba1da3ebf961dfd6f10db1a148fbe /src/interfaces/ecpg/preproc/ecpg.c | |
parent | f2b64d3593f71fb76a3164ffbf2d350de7aad177 (diff) |
From: Michael Meskes <meskes@topsystem.de>
+ Thu Apr 23 09:27:16 CEST 1998
+
+ - Also allow call in whenever statement with the same functionality
+ as do.
+
+ Thu Apr 23 12:29:28 CEST 1998
+
+ - Also rewrote variable declaration part. It is now possible to
+ declare more than one variable per line.
+ - Set version to 2.1.0
+
+ Fri Apr 24 13:50:15 CEST 1998
+
+ - Fixed some bugs.
+ - Set version to 2.1.1
Diffstat (limited to 'src/interfaces/ecpg/preproc/ecpg.c')
-rw-r--r-- | src/interfaces/ecpg/preproc/ecpg.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/interfaces/ecpg/preproc/ecpg.c b/src/interfaces/ecpg/preproc/ecpg.c index e156468f2b8..853088d4acf 100644 --- a/src/interfaces/ecpg/preproc/ecpg.c +++ b/src/interfaces/ecpg/preproc/ecpg.c @@ -27,7 +27,7 @@ static void usage(char *progname) { fprintf(stderr, "ecpg - the postgresql preprocessor, version: %d.%d.%d\n", MAJOR_VERSION, MINOR_VERSION, PATCHLEVEL); - fprintf(stderr, "Usage: %s: [-v] [-d] [-I include path] [ -o output file name] file1 [file2] ...\n", progname); + fprintf(stderr, "Usage: %s: [-v] [-I include path] [ -o output file name] file1 [file2] ...\n", progname); } static void @@ -51,7 +51,7 @@ main(int argc, char *const argv[]) add_include_path("/usr/local/include"); add_include_path("."); - while ((c = getopt(argc, argv, "vdo:I:")) != EOF) + while ((c = getopt(argc, argv, "vo:I:")) != EOF) { switch (c) { @@ -62,9 +62,6 @@ main(int argc, char *const argv[]) else out_option = 1; break; - case 'd': - debugging = 1; - break; case 'I': add_include_path(optarg); break; |