33 *
44 * Copyright (c) 2000-2007, PostgreSQL Global Development Group
55 *
6- * $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.27 2007/11/15 23:23:44 momjian Exp $
6+ * $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.28 2007/11/16 01:11:04 momjian Exp $
77 *
88 * XXX this file does not really belong in psql/. Perhaps move to libpq?
99 * It also seems that the mbvalidate function is redundant with existing
@@ -246,7 +246,7 @@ pg_wcssize(unsigned char *pwcs, size_t len, int encoding, int *result_width,
246246 linewidth += 4 ;
247247 format_size += 4 ;
248248 }
249- else /* Output it as-is */
249+ else /* Output it as-is */
250250 {
251251 linewidth += w ;
252252 format_size += 1 ;
@@ -257,7 +257,7 @@ pg_wcssize(unsigned char *pwcs, size_t len, int encoding, int *result_width,
257257 linewidth += 6 ; /* \u0000 */
258258 format_size += 6 ;
259259 }
260- else /* All other chars */
260+ else /* All other chars */
261261 {
262262 linewidth += w ;
263263 format_size += chlen ;
@@ -321,7 +321,7 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
321321 linewidth += 4 ;
322322 ptr += 4 ;
323323 }
324- else /* Output it as-is */
324+ else /* Output it as-is */
325325 {
326326 linewidth += w ;
327327 * ptr ++ = * pwcs ;
@@ -343,7 +343,7 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
343343 ptr += 6 ;
344344 linewidth += 6 ;
345345 }
346- else /* All other chars */
346+ else /* All other chars */
347347 {
348348 int i ;
349349
0 commit comments