Home
last modified time | relevance | path

Searched refs:DOEXCL (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/cmd/csh/
H A Dsh.lex.c291 dolflg = c == '"' ? DOALL : DOEXCL; in word()
366 if (c == HIST && (flag & DOEXCL)) { in getC1()
386 c = sc = getC(DOEXCL); in getdol()
393 *np++ = c, c = getC(DOEXCL); in getdol()
395 special++, *np++ = c, c = getC(DOEXCL); in getdol()
415 while (digit(c = getC(DOEXCL)) && (np - p) < MAX_VAR_LEN) { in getdol()
419 while ((letter(c = getC(DOEXCL)) || digit(c)) && in getdol()
436 c = getC(DOEXCL); in getdol()
450 c = getC(DOEXCL); in getdol()
453 *np++ = c, c = getC(DOEXCL); in getdol()
[all …]
H A Dsh.h263 #define DOEXCL 2 macro
264 #define DOALL DODOL|DOEXCL