1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

Cleanup of patch just applied.

This commit is contained in:
Bruce Momjian 1999-07-19 16:49:17 +00:00
parent 2b8c9e793d
commit 50644a2202

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.185 1999/07/19 16:46:53 momjian Exp $ * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.186 1999/07/19 16:49:17 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -2876,13 +2876,9 @@ main(int argc, char **argv)
pqsignal(SIGINT, handle_sigint); /* control-C => cancel */ pqsignal(SIGINT, handle_sigint); /* control-C => cancel */
#ifdef USE_READLINE #ifdef USE_READLINE
settings.useReadline = 1; settings.useReadline = 1;
{ /* Set the application name, used for parsing .inputrc */
/* char *progname = strrchr(argv[0], SEP_CHAR);
* Set the application name, used for parsing .inputrc -- dz rl_readline_name = (progname ? progname+1 : argv[0]);
*/
char *progname = strrchr(argv[0], SEP_CHAR);
rl_readline_name = (progname ? progname+1 : argv[0]);
}
#endif #endif
} }
#ifdef PSQL_ALWAYS_GET_PASSWORDS #ifdef PSQL_ALWAYS_GET_PASSWORDS