Searched refs:in_quote (Results 1 – 1 of 1) sorted by relevance
76 int in_quote = Q_NONE; in mp_repl_continue_with_input() local80 if ((in_quote == Q_NONE || in_quote == Q_3_SINGLE) && i[1] == '\'' && i[2] == '\'') { in mp_repl_continue_with_input()82 in_quote = Q_3_SINGLE - in_quote; in mp_repl_continue_with_input()83 } else if (in_quote == Q_NONE || in_quote == Q_1_SINGLE) { in mp_repl_continue_with_input()84 in_quote = Q_1_SINGLE - in_quote; in mp_repl_continue_with_input()87 if ((in_quote == Q_NONE || in_quote == Q_3_DOUBLE) && i[1] == '"' && i[2] == '"') { in mp_repl_continue_with_input()89 in_quote = Q_3_DOUBLE - in_quote; in mp_repl_continue_with_input()90 } else if (in_quote == Q_NONE || in_quote == Q_1_DOUBLE) { in mp_repl_continue_with_input()91 in_quote = Q_1_DOUBLE - in_quote; in mp_repl_continue_with_input()94 if (in_quote != Q_NONE) { in mp_repl_continue_with_input()[all …]
Completed in 3 milliseconds