We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent78bc83f commit09f185aCopy full SHA for 09f185a
src/bin/psql/tab-complete.c
@@ -65,7 +65,7 @@ static char * complete_from_list(char *text, int state);
65
66
staticPGresult*exec_query(char*query);
67
char*quote_file_name(char*text,intmatch_type,char*quote_pointer);
68
-//char * dequote_file_name(char *text, char quote_char);
+//staticchar * dequote_file_name(char *text, char quote_char);
69
staticchar*previous_word(intpoint,intskip);
70
71
/* These variables are used to pass information into the completion functions.
@@ -793,7 +793,8 @@ char * quote_file_name(char *text, int match_type, char * quote_pointer)
793
}
794
795
796
-char*dequote_file_name(char*text,charquote_char)
+#ifdefNOT_USED
797
+staticchar*dequote_file_name(char*text,charquote_char)
798
{
799
char*s;
800
size_tlength;
@@ -808,5 +809,6 @@ char * dequote_file_name(char *text, char quote_char)
808
809
810
returns;
811
812
+#endif
813
814
#endif/* USE_READLINE */