Lines Matching defs:escaped
5687 * tabs and backslashes escaped with backslashes.
6377 int escaped = 0; /* True if the next character is escaped */
6409 if(c==EOF || (!escaped && (c==' ' || c=='\n' || c=='\t' || c=='#'))) {
6435 * The next character was preceded by spaces, so it isn't escaped.
6437 escaped = 0;
6443 if(c=='\\' && !escaped) {
6444 escaped = 1;
6446 * Splice lines where the newline is escaped.
6448 } else if(c=='\n' && escaped) {
6454 if(escaped)
6458 escaped = 0;