From 3b2b7eb19e983ddeca1489231a1cf409bacdf28e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 31 Dec 2000 11:57:58 +0000 Subject: [PATCH] Remove incorrect use of rl_special_prefixes until further evaluation. --- src/bin/psql/tab-complete.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 9feb9055a9..f8c1919193 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; -- 2.11.0