diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-12-06 09:10:56 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:42 +0100 |
commit | a9eaf918710f419990a3b4f1b627c47f94cac5b1 (patch) | |
tree | 750e3f05f5855070a3d3b25efd21024c53591d10 /src | |
parent | 8975a903a926d2f345f2f5f34d48987c9784504d (diff) |
render_hkl: Remove -j option
Diffstat (limited to 'src')
-rw-r--r-- | src/render_hkl.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/render_hkl.c b/src/render_hkl.c index 4c37c005..f2f60024 100644 --- a/src/render_hkl.c +++ b/src/render_hkl.c @@ -67,7 +67,7 @@ static void show_help(const char *s) " reflection (no 'epsilon' correction).\n" "\n" " --colour-key Draw (only) the key for the current colour scale.\n" -" -j <n> Run <n> instances of POV-ray in parallel.\n" +"\n" " -h, --help Display this help message.\n" ); } @@ -562,7 +562,6 @@ int main(int argc, char *argv[]) int config_sqrt = 0; int config_colkey = 0; int config_zawhinge = 0; - unsigned int nproc = 1; char *pdb = NULL; int r = 0; double boost = 1.0; @@ -599,7 +598,7 @@ int main(int argc, char *argv[]) }; /* Short options */ - while ((c = getopt_long(argc, argv, "hj:p:w:c:y:d:r:o:", + while ((c = getopt_long(argc, argv, "hp:w:c:y:d:r:o:", longopts, NULL)) != -1) { switch (c) { @@ -607,10 +606,6 @@ int main(int argc, char *argv[]) show_help(argv[0]); return 0; - case 'j' : - nproc = atoi(optarg); - break; - case 'p' : pdb = strdup(optarg); break; |