diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 8156b763e92..5163c765bae 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -2637,7 +2637,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet) } /* set title override */ - else if (strcmp(param, "title") == 0) + else if (strcmp(param, "C") == 0 || strcmp(param, "title") == 0) { free(popt->title); if (!value) @@ -2837,7 +2837,7 @@ printPsetInfo(const char *param, struct printQueryOpt *popt) } /* show title override */ - else if (strcmp(param, "title") == 0) + else if (strcmp(param, "C") == 0 || strcmp(param, "title") == 0) { if (popt->title) printf(_("Title is \"%s\".\n"), popt->title); |