aboutsummaryrefslogtreecommitdiff
path: root/src/render_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-12-06 09:10:56 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:42 +0100
commita9eaf918710f419990a3b4f1b627c47f94cac5b1 (patch)
tree750e3f05f5855070a3d3b25efd21024c53591d10 /src/render_hkl.c
parent8975a903a926d2f345f2f5f34d48987c9784504d (diff)
render_hkl: Remove -j option
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;