Home | History | Annotate | Download | only in scripts

Lines Matching defs:to

85 // Moves *help to new start of text (in case dash lines were at beginning).
86 // Sets *from to where dash lines removed from (in case they weren't).
116 // because zap_blank_lines skipped blank lines, and we had to have at least
117 // one non-blank line (a dash line) to get this far.
123 // Count number of dashlines, copy out to array, zap trailing whitespace
242 // Collate help according to usage, depends, and .config
261 // text out of throw into catch, copying from this to that
275 // Grab option description lines to collate from catch and throw
340 char *from = this+2, *to = that+2;
341 int ff = strcspn(from, " ]"), tt = strcspn(to, " ]");
343 if (from[ff] == ']' && to[tt] == ']') {
344 try = xmprintf("[-%.*s%.*s] ", ff, from, tt, to);