From a7f14616c6273ab4f7b5f1ea2ae65cbf542e50b4 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 26 Nov 1999 17:26:38 +0000 Subject: [PATCH] Change // to /* */ --- src/bin/psql/stringutils.c | 3 +-- src/bin/psql/tab-complete.c | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/bin/psql/stringutils.c b/src/bin/psql/stringutils.c index b4f5be926b..8473fd1394 100644 --- a/src/bin/psql/stringutils.c +++ b/src/bin/psql/stringutils.c @@ -2,12 +2,11 @@ #include #include "stringutils.h" -// #include #include #include #include -// + #include #include diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 6dd36cfa88..f2025b0d26 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 = "()'";