@@ -2412,7 +2412,7 @@ _align2string(enum printFormat in)
24122412}
24132413
24142414/*
2415- * Parse entered unicode linestyle. If ok, update *linestyle and return
2415+ * Parse entered Unicode 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)
25152515 refresh_utf8format (& (popt -> topt ));
25162516 else
25172517 {
2518- psql_error ("\\pset: allowed unicode border linestyles are single, double\n" );
2518+ psql_error ("\\pset: allowed Unicode border line styles are single, double\n" );
25192519 return false;
25202520 }
25212521 }
@@ -2530,7 +2530,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25302530 refresh_utf8format (& (popt -> topt ));
25312531 else
25322532 {
2533- psql_error ("\\pset: allowed unicode column linestyles are single, double\n" );
2533+ psql_error ("\\pset: allowed Unicode column line styles are single, double\n" );
25342534 return false;
25352535 }
25362536 }
@@ -2545,7 +2545,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
25452545 refresh_utf8format (& (popt -> topt ));
25462546 else
25472547 {
2548- psql_error ("\\pset: allowed unicode header linestyles are single, double\n" );
2548+ psql_error ("\\pset: allowed Unicode header line styles are single, double\n" );
25492549 return false;
25502550 }
25512551 }
@@ -2855,22 +2855,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
28552855 printf (_ ("Tuples only is off.\n" ));
28562856 }
28572857
2858- /* unicode style formatting */
2858+ /* Unicode style formatting */
28592859 else if (strcmp (param , "unicode_border_linestyle" ) == 0 )
28602860 {
2861- printf (_ ("Unicode border linestyle is \"%s\".\n" ),
2861+ printf (_ ("Unicode border line style is \"%s\".\n" ),
28622862 _unicode_linestyle2string (popt -> topt .unicode_border_linestyle ));
28632863 }
28642864
28652865 else if (strcmp (param , "unicode_column_linestyle" ) == 0 )
28662866 {
2867- printf (_ ("Unicode column linestyle is \"%s\".\n" ),
2867+ printf (_ ("Unicode column line style is \"%s\".\n" ),
28682868 _unicode_linestyle2string (popt -> topt .unicode_column_linestyle ));
28692869 }
28702870
28712871 else if (strcmp (param , "unicode_header_linestyle" ) == 0 )
28722872 {
2873- printf (_ ("Unicode header linestyle is \"%s\".\n" ),
2873+ printf (_ ("Unicode header line style is \"%s\".\n" ),
28742874 _unicode_linestyle2string (popt -> topt .unicode_header_linestyle ));
28752875 }
28762876
0 commit comments