Home
last modified time | relevance | path

Searched refs:lexp (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/tcsh/
H A Dtc.func.c439 struct wordent lexp[3]; in cmd_expand() local
443 lexp[0].next = &lexp[1]; in cmd_expand()
444 lexp[1].next = &lexp[2]; in cmd_expand()
445 lexp[2].next = &lexp[0]; in cmd_expand()
447 lexp[0].prev = &lexp[2]; in cmd_expand()
448 lexp[1].prev = &lexp[0]; in cmd_expand()
449 lexp[2].prev = &lexp[1]; in cmd_expand()
451 lexp[0].word = STRNULL; in cmd_expand()
452 lexp[2].word = STRret; in cmd_expand()
464 lexp[1].word = cmd; in cmd_expand()
[all …]
H A Dsh.exec.c925 tellmewhat(struct wordent *lexp, Char **str) in tellmewhat() argument
930 struct wordent *sp = lexp->next; in tellmewhat()
936 alias(lexp); in tellmewhat()
937 sp = lexp->next; in tellmewhat()
974 prlex(lexp); in tellmewhat()
990 prlex(lexp); in tellmewhat()
1022 prlex(lexp); in tellmewhat()
1026 prlex(lexp); in tellmewhat()
1034 prlex(lexp); in tellmewhat()
1044 prlex(lexp); in tellmewhat()
H A Dsh.parse.c58 alias(struct wordent *lexp) in alias() argument
67 } while (asyntax(lexp->next, lexp) != 0); in alias()