OSDN Git Service

Change // to /* */
authorBruce Momjian <bruce@momjian.us>
Fri, 26 Nov 1999 17:26:38 +0000 (17:26 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 26 Nov 1999 17:26:38 +0000 (17:26 +0000)
src/bin/psql/stringutils.c
src/bin/psql/tab-complete.c

index b4f5be9..8473fd1 100644 (file)
@@ -2,12 +2,11 @@
 #include <c.h>
 #include "stringutils.h"
 
-//
 #include <ctype.h>
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
-//
+
 #include <stdio.h>
 
 #include <postgres.h>
index 6dd36cf..f2025b0 100644 (file)
@@ -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 = "()'";