Lines Matching defs:quote_char

819   char quote_char, *brkchars;
823 quote_char = '\0';
848 of quote_char. */
849 if (quote_char != '\'' && rl_line_buffer[scan] == '\\')
856 if (quote_char != '\0')
859 if (rl_line_buffer[scan] == quote_char)
862 quote_char = '\0';
869 quote_char = rl_line_buffer[scan];
872 if (quote_char == '\'')
874 else if (quote_char == '"')
882 if (rl_point == end && quote_char == '\0')
944 return (quote_char);
948 gen_completion_matches (text, start, end, our_func, found_quote, quote_char)
952 int found_quote, quote_char;
957 rl_completion_quote_character = quote_char;
1514 append_to_match (text, delimiter, quote_char, nontrivial_match)
1516 int delimiter, quote_char, nontrivial_match;
1523 if (quote_char && rl_point && rl_completion_suppress_quote == 0 &&
1524 rl_line_buffer[rl_point - 1] != quote_char)
1525 temp_string[temp_string_index++] = quote_char;
1646 char quote_char;
1659 quote_char = '\0';
1664 quote_char = _rl_find_completion_word (&found_quote, &delimiter);
1670 matches = gen_completion_matches (text, start, end, our_func, found_quote, quote_char);
1706 insert_match (matches[0], start, matches[1] ? MULT_MATCH : SINGLE_MATCH, &quote_char);
1733 append_to_match (matches[0], delimiter, quote_char, nontrivial_lcd);
1738 insert_all_matches (matches, start, &quote_char);
2124 static char quote_char;
2149 quote_char = '\0';
2154 quote_char = _rl_find_completion_word (&found_quote, &delimiter);
2161 our_func, found_quote, quote_char);
2207 insert_match (orig_text, orig_start, MULT_MATCH, &quote_char);
2211 insert_match (matches[match_list_index], orig_start, SINGLE_MATCH, &quote_char);
2212 append_to_match (matches[match_list_index], delimiter, quote_char,