aboutsummaryrefslogtreecommitdiff
path: root/src/render_hkl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/render_hkl.c')
-rw-r--r--src/render_hkl.c9
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;