Home
last modified time | relevance | path

Searched refs:IS_WORDC (Results 1 – 6 of 6) sorted by relevance

/dports/shells/pdksh/pdksh-5.2.14/
H A Dedit.c726 #define IS_WORDC(c) !(ctype(c, C_LEX1) || (c) == '\'' || (c) == '"') macro
751 for (; start > 0 && IS_WORDC(buf[start - 1]); start--)
754 for (end = start; end < buflen && IS_WORDC(buf[end]); end++)
H A DChangeLog234 * edit.c(x_locate_word): changed IS_WORDC macro from !isspace
H A DBUG-REPORTS1335 [fixed in 5.2.14: edit.c(IS_WORDC): changed macro to be LEX1 + quotes]
/dports/shells/oksh/oksh-7.0/
H A Dedit.c529 #define IS_WORDC(c) !( ctype(c, C_LEX1) || (c) == '\'' || (c) == '"' || \ macro
551 for (; (start > 0 && IS_WORDC(buf[start - 1])) || in x_locate_word()
555 for (end = start; end < buflen && IS_WORDC(buf[end]); end++) { in x_locate_word()
/dports/devel/fossology-nomos-standalone/fossology-3.11.0/src/nomos/agent_tests/testdata/NomosTestfiles/MIT/
H A Dedit.c466 #define IS_WORDC(c) (!ctype(c, C_LEX1) && (c) != '\'' && (c) != '"' && \ macro
487 for (; (start > 0 && IS_WORDC(buf[start - 1])) || in x_locate_word()
491 for (end = start; end < buflen && IS_WORDC(buf[end]); end++) { in x_locate_word()
/dports/shells/mksh/mksh/
H A Dedit.c561 #define IS_WORDC(c) (!ctype(c, C_EDNWC)) macro
582 for (; (start > 0 && IS_WORDC(buf[start - 1])) || in x_locate_word()
586 for (end = start; end < buflen && IS_WORDC(buf[end]); end++) { in x_locate_word()