@@ -2305,7 +2305,7 @@ _align2string(enum printFormat in)
23052305}
23062306
23072307/*
2308- * Parse enteredunicode linestyle. If ok, update *linestyle and return
2308+ * Parse enteredUnicode linestyle. If ok, update *linestyle and return
23092309 * true, else return false.
23102310 */
23112311static bool
@@ -2408,7 +2408,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
24082408refresh_utf8format (& (popt -> topt ));
24092409else
24102410{
2411- psql_error ("\\pset: allowedunicode borderlinestyles are single, double\n" );
2411+ psql_error ("\\pset: allowedUnicode borderline styles are single, double\n" );
24122412return false;
24132413}
24142414}
@@ -2423,7 +2423,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
24232423refresh_utf8format (& (popt -> topt ));
24242424else
24252425{
2426- psql_error ("\\pset: allowedunicode columnlinestyles are single, double\n" );
2426+ psql_error ("\\pset: allowedUnicode columnline styles are single, double\n" );
24272427return false;
24282428}
24292429}
@@ -2438,7 +2438,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
24382438refresh_utf8format (& (popt -> topt ));
24392439else
24402440{
2441- psql_error ("\\pset: allowedunicode headerlinestyles are single, double\n" );
2441+ psql_error ("\\pset: allowedUnicode headerline styles are single, double\n" );
24422442return false;
24432443}
24442444}
@@ -2748,22 +2748,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
27482748printf (_ ("Tuples only is off.\n" ));
27492749}
27502750
2751- /*unicode style formatting */
2751+ /*Unicode style formatting */
27522752else if (strcmp (param ,"unicode_border_linestyle" )== 0 )
27532753{
2754- printf (_ ("Unicode borderlinestyle is \"%s\".\n" ),
2754+ printf (_ ("Unicode borderline style is \"%s\".\n" ),
27552755_unicode_linestyle2string (popt -> topt .unicode_border_linestyle ));
27562756}
27572757
27582758else if (strcmp (param ,"unicode_column_linestyle" )== 0 )
27592759{
2760- printf (_ ("Unicode columnlinestyle is \"%s\".\n" ),
2760+ printf (_ ("Unicode columnline style is \"%s\".\n" ),
27612761_unicode_linestyle2string (popt -> topt .unicode_column_linestyle ));
27622762}
27632763
27642764else if (strcmp (param ,"unicode_header_linestyle" )== 0 )
27652765{
2766- printf (_ ("Unicode headerlinestyle is \"%s\".\n" ),
2766+ printf (_ ("Unicode headerline style is \"%s\".\n" ),
27672767_unicode_linestyle2string (popt -> topt .unicode_header_linestyle ));
27682768}
27692769