Searched refs:optno (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/zsh-61/zsh/Src/
H A Doptions.c441 int optno = on->optno; local
443 if (optno < 0)
444 optno = -optno;
447 printf("no%-19s %s\n", on->node.nam, isset(optno) ? "off" : "on");
449 printf("%-21s %s\n", on->node.nam, isset(optno) ? "on" : "off");
450 } else if (set == (isset(optno) ^ defset(on, emulation))) {
451 if (set ^ isset(optno))
506 setemulate_opts[on->optno]
570 int action, optno, match = 0; local
731 dosetopt(int optno, int value, int force, char *new_opts) argument
810 int optno = optletters[i]; local
832 int optno = on->optno; local
883 printoptionlist_printequiv(int optno) argument
[all...]
H A Dinit.c284 parseopts_insert(LinkList optlist, char *base, int optno) argument
287 void *ptr = base + (optno < 0 ? -optno : optno);
314 int action, optno; local
383 if (!(optno = optlookup(*argv))) {
386 } else if (optno == RESTRICTED && !nam) {
388 } else if ((optno == EMACSMODE || optno == VIMODE) && nam) {
391 if (dosetopt(optno, actio
[all...]
H A Dbuiltin.c546 int action, optno, array = 0, hadopt = 0, local
583 if(!(optno = optlookup(*args)))
585 else if(dosetopt(optno, action, 0, opts))
604 if (!(optno = optlookupc(**args)))
606 else if(dosetopt(optno, action, 0, opts))
5141 int optno = optptr - new_opts; local
5143 *on_ptr++ = optno;
5145 *off_ptr++ = optno;
H A Dzsh.h1073 int optno; /* option number */ member in struct:optname
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dparameter.c898 int optno = ((Optname) hn)->optno, ison; variable
900 ison = optno < 0 ? !opts[-optno] : opts[optno];

Completed in 172 milliseconds