From: Peter Eisentraut Date: Sun, 31 Dec 2000 11:57:58 +0000 (+0000) Subject: Remove incorrect use of rl_special_prefixes until further evaluation. X-Git-Tag: REL7_1_BETA2~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3b2b7eb19e983ddeca1489231a1cf409bacdf28e;p=thirdparty%2Fpostgresql.git Remove incorrect use of rl_special_prefixes until further evaluation. --- diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 9feb9055a97..f8c19191932 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.24 2000/12/03 20:45:38 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.25 2000/12/31 11:57:58 petere Exp $ */ /*---------------------------------------------------------------------- @@ -102,8 +102,7 @@ initialize_readline(void) rl_readline_name = pset.progname; rl_attempted_completion_function = psql_completion; - rl_special_prefixes = "()'"; - rl_basic_word_break_characters = "\t\n\"'`@$><=;|&{ "; + rl_basic_word_break_characters = "\t\n@$><=;|&{( "; completion_max_records = 100;