From: Andres Freund Date: Mon, 22 Sep 2014 14:50:40 +0000 (+0200) Subject: Remove postgres --help blurb about the removed -A option. X-Git-Tag: REL9_5_ALPHA1~1448 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=0926ef43c160cc8334d3e86f364bf9a7aa2da43f;p=postgresql.git Remove postgres --help blurb about the removed -A option. I missed this in 3bdcf6a5a755503. Noticed by Merlin Moncure Discussion: CAHyXU0yC7uPeeVzQROwtnrOP9dxTEUPYjB0og4qUnbipMEV57w@mail.gmail.com --- diff --git a/src/backend/main/main.c b/src/backend/main/main.c index c1116e0f15d..413c9823c34 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -284,9 +284,6 @@ help(const char *progname) printf(_("%s is the PostgreSQL server.\n\n"), progname); printf(_("Usage:\n %s [OPTION]...\n\n"), progname); printf(_("Options:\n")); -#ifdef USE_ASSERT_CHECKING - printf(_(" -A 1|0 enable/disable run-time assert checking\n")); -#endif printf(_(" -B NBUFFERS number of shared buffers\n")); printf(_(" -c NAME=VALUE set run-time parameter\n")); printf(_(" -C NAME print value of run-time parameter, then exit\n"));