|
3 | 3 | *
|
4 | 4 | * Copyright 2000 by PostgreSQL Global Development Group
|
5 | 5 | *
|
6 |
| - * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.55 2001/06/02 18:25:17 petere Exp $ |
| 6 | + * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.56 2001/06/08 23:53:48 petere Exp $ |
7 | 7 | */
|
8 | 8 | #include"postgres_fe.h"
|
9 | 9 | #include"command.h"
|
@@ -149,7 +149,7 @@ HandleSlashCmds(const char *line,
|
149 | 149 |
|
150 | 150 | #if0/* turned out to be too annoying */
|
151 | 151 | if (status!=CMD_UNKNOWN&&isalpha((unsignedchar)new_cmd[0]))
|
152 |
| -psql_error("Warning:this syntax is deprecated\n"); |
| 152 | +psql_error("Warning:This syntax is deprecated.\n"); |
153 | 153 | #endif
|
154 | 154 | }
|
155 | 155 |
|
@@ -442,7 +442,7 @@ exec_command(const char *cmd,
|
442 | 442 | SetVariable(pset.vars,"ENCODING",pg_encoding_to_char(pset.encoding));
|
443 | 443 | }
|
444 | 444 | #else
|
445 |
| -psql_error("\\%s:multi-byte support is not enabled\n",cmd); |
| 445 | +psql_error("\\%s:multibyte support is not enabled\n",cmd); |
446 | 446 | #endif
|
447 | 447 | free(encoding);
|
448 | 448 | }
|
@@ -1483,7 +1483,7 @@ do_edit(const char *filename_arg, PQExpBuffer query_buf)
|
1483 | 1483 |
|
1484 | 1484 | if (fd==-1|| !stream)
|
1485 | 1485 | {
|
1486 |
| -psql_error("couldn'topentemp file %s: %s\n",fname,strerror(errno)); |
| 1486 | +psql_error("could notopentemporary file %s: %s\n",fname,strerror(errno)); |
1487 | 1487 | error= true;
|
1488 | 1488 | }
|
1489 | 1489 | else
|
|