Searched refs:textp (Results 1 – 3 of 3) sorted by relevance
395 char *textp; in move_previous_word() local409 textp = cur_text; in move_previous_word()412 if (!alpha(*textp) || !alpha(start_char)) { in move_previous_word()413 while (textp != begin_line && (white_space(*textp) || *textp == '\n')) in move_previous_word()414 textp--; in move_previous_word()418 while (textp != begin_line && alpha(*textp)) in move_previous_word()419 textp--; in move_previous_word()422 if (textp != begin_line && *textp != '\n') in move_previous_word()423 textp++; in move_previous_word()426 move_address(textp); in move_previous_word()[all …]
698 char *textp = line->text; in count_chars() local702 if (is_tab(*textp++)) in count_chars()710 while (*textp != '\n') { in count_chars()711 if (is_tab(*textp++)) in count_chars()809 char *textp = line->text; in find_x() local812 while (textp != address && *textp != '\0') { in find_x()813 if (is_tab(*textp++)) /* Expand tabs */ in find_x()828 char *textp = line->text; in find_address() local831 while (tx < x_coord && *textp != '\n') { in find_address()832 if (is_tab(*textp)) { in find_address()[all …]
41 extern long ntext, textp;