Remove unnecessary braces, to match the surrounding style.
authorHeikki Linnakangas
Wed, 12 Jul 2017 09:30:50 +0000 (12:30 +0300)
committerHeikki Linnakangas
Wed, 12 Jul 2017 09:31:14 +0000 (12:31 +0300)
Mostly in the new subscription-related commands. Backport the few that
were also present in older versions.

Thomas Munro

Discussion: https://www.postgresql.org/message-id/CAEepm=3CyW1QmXcXJXmqiJXtXzFDc8SvSfnxkEGD3Bkv2SrkeQ@mail.gmail.com

src/bin/psql/tab-complete.c

index 4fa21050a520849dc872bd7ba23536c094a8fbd1..b5d49ea40da1893656ebae2022300c2b591c7d49 100644 (file)
@@ -3083,13 +3083,9 @@ psql_completion(const char *text, int start, int end)
            COMPLETE_WITH_LIST_CS2("single", "double");
    }
    else if (TailMatchesCS1("\\unset"))
-   {
        matches = complete_from_variables(text, "", "", true);
-   }
    else if (TailMatchesCS1("\\set"))
-   {
        matches = complete_from_variables(text, "", "", false);
-   }
    else if (TailMatchesCS2("\\set", MatchAny))
    {
        if (TailMatchesCS1("AUTOCOMMIT|ON_ERROR_STOP|QUIET|"