diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-11-26 17:26:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-11-26 17:26:38 +0000 |
commit | a7f14616c6273ab4f7b5f1ea2ae65cbf542e50b4 (patch) | |
tree | 370a788eb8709a6534a33b18943a580d4d0addc5 /src/bin/psql/tab-complete.c | |
parent | 1592c3179fd72e90d230f7ee18b490d7281534b1 (diff) |
Change // to /* */
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 6dd36cfa88d..f2025b0d26a 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -65,7 +65,7 @@ static char * complete_from_list(char *text, int state); static PGresult * exec_query(char * query); char * quote_file_name(char *text, int match_type, char * quote_pointer); -//static char * dequote_file_name(char *text, char quote_char); +/*static char * dequote_file_name(char *text, char quote_char);*/ static char * previous_word(int point, int skip); /* These variables are used to pass information into the completion functions. @@ -98,7 +98,7 @@ void initialize_readline(PGconn ** conn) rl_attempted_completion_function = psql_completion; rl_filename_quoting_function = quote_file_name; -// rl_filename_dequoting_function = dequote_file_name; + /*rl_filename_dequoting_function = dequote_file_name;*/ rl_filename_quote_characters = "qwertyuioplkjhgfdsazxcvbnm"; rl_special_prefixes = "()'"; |