Differences From Artifact [8aa322120a]:
- File unix/pterm.c — part of check-in [c544ce865f] at 2002-10-16 11:00:38 on branch trunk — A few more command-line options. (user: simon size: 51998)
To Artifact [5fde656eb9]:
- File unix/pterm.c — part of check-in [a258b8a88b] at 2002-10-16 17:54:58 on branch trunk — Add the -xrm command-line option, to allow specification of an arbitrary X resource which doesn't have a dedicated command-line option. (user: simon size: 52082)
| ︙ | |||
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 | 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 | + + + + + |
} else if (!strcmp(p, "-sb")) {
SECOND_PASS_ONLY;
cfg.scrollbar = 0;
} else if (!strcmp(p, "-name")) {
EXPECTS_ARG;
app_name = val;
} else if (!strcmp(p, "-xrm")) {
EXPECTS_ARG;
provide_xrm_string(val);
}
}
return err;
}
int main(int argc, char **argv)
|
| ︙ |