@@ -2412,7 +2412,7 @@ _align2string(enum printFormat in)
24122412}
24132413
24142414/*
2415- * Parse enteredunicode linestyle. If ok, update *linestyle and return
2415+ * Parse enteredUnicode linestyle. If ok, update *linestyle and return
24162416 * true, else return false.
24172417 */
24182418static bool
@@ -2515,7 +2515,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25152515refresh_utf8format (& (popt -> topt ));
25162516else
25172517{
2518- psql_error ("\\pset: allowedunicode borderlinestyles are single, double\n" );
2518+ psql_error ("\\pset: allowedUnicode borderline styles are single, double\n" );
25192519return false;
25202520}
25212521}
@@ -2530,7 +2530,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25302530refresh_utf8format (& (popt -> topt ));
25312531else
25322532{
2533- psql_error ("\\pset: allowedunicode columnlinestyles are single, double\n" );
2533+ psql_error ("\\pset: allowedUnicode columnline styles are single, double\n" );
25342534return false;
25352535}
25362536}
@@ -2545,7 +2545,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25452545refresh_utf8format (& (popt -> topt ));
25462546else
25472547{
2548- psql_error ("\\pset: allowedunicode headerlinestyles are single, double\n" );
2548+ psql_error ("\\pset: allowedUnicode headerline styles are single, double\n" );
25492549return false;
25502550}
25512551}
@@ -2855,22 +2855,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
28552855printf (_ ("Tuples only is off.\n" ));
28562856}
28572857
2858- /*unicode style formatting */
2858+ /*Unicode style formatting */
28592859else if (strcmp (param ,"unicode_border_linestyle" )== 0 )
28602860{
2861- printf (_ ("Unicode borderlinestyle is \"%s\".\n" ),
2861+ printf (_ ("Unicode borderline style is \"%s\".\n" ),
28622862_unicode_linestyle2string (popt -> topt .unicode_border_linestyle ));
28632863}
28642864
28652865else if (strcmp (param ,"unicode_column_linestyle" )== 0 )
28662866{
2867- printf (_ ("Unicode columnlinestyle is \"%s\".\n" ),
2867+ printf (_ ("Unicode columnline style is \"%s\".\n" ),
28682868_unicode_linestyle2string (popt -> topt .unicode_column_linestyle ));
28692869}
28702870
28712871else if (strcmp (param ,"unicode_header_linestyle" )== 0 )
28722872{
2873- printf (_ ("Unicode headerlinestyle is \"%s\".\n" ),
2873+ printf (_ ("Unicode headerline style is \"%s\".\n" ),
28742874_unicode_linestyle2string (popt -> topt .unicode_header_linestyle ));
28752875}
28762876