version 1.1.1.1, 2000/01/09 17:00:55 |
version 1.1.1.2, 2000/01/22 14:16:01 |
Line 141 do{if (datatype[axis]==TIME) { \ |
|
Line 141 do{if (datatype[axis]==TIME) { \ |
|
}\ |
}\ |
putc('"', stderr);\ |
putc('"', stderr);\ |
} else {\ |
} else {\ |
fprintf(stderr,"%g",x);\ |
fprintf(stderr,"%#g",x);\ |
}} while(0) |
}} while(0) |
|
|
|
|
Line 1337 static void show_autoscale() |
|
Line 1337 static void show_autoscale() |
|
fprintf(stderr, "y: %s%s%s, ", (autoscale_y) ? "ON" : "OFF", |
fprintf(stderr, "y: %s%s%s, ", (autoscale_y) ? "ON" : "OFF", |
(autoscale_y == 1) ? " (min)" : "", |
(autoscale_y == 1) ? " (min)" : "", |
(autoscale_y == 2) ? " (max)" : ""); |
(autoscale_y == 2) ? " (max)" : ""); |
|
fprintf(stderr, "x2: %s%s%s, ", (autoscale_x2) ? "ON" : "OFF", |
|
(autoscale_x2 == 1) ? " (min)" : "", |
|
(autoscale_x2 == 2) ? " (max)" : ""); |
|
fprintf(stderr, "y2: %s%s%s, ", (autoscale_y2) ? "ON" : "OFF", |
|
(autoscale_y2 == 1) ? " (min)" : "", |
|
(autoscale_y2 == 2) ? " (max)" : ""); |
fprintf(stderr, "z: %s%s%s\n", (autoscale_z) ? "ON" : "OFF", |
fprintf(stderr, "z: %s%s%s\n", (autoscale_z) ? "ON" : "OFF", |
(autoscale_z == 1) ? " (min)" : "", |
(autoscale_z == 1) ? " (min)" : "", |
(autoscale_z == 2) ? " (max)" : ""); |
(autoscale_z == 2) ? " (max)" : ""); |
Line 1430 static void show_contour() |
|
Line 1436 static void show_contour() |
|
|
|
static void show_format() |
static void show_format() |
{ |
{ |
char str[5][MAX_LINE_LEN + 1]; |
char str[MAX_LINE_LEN+1]; |
|
|
fprintf(stderr, "\ttic format is x-axis: \"%s\"\ |
fprintf(stderr, "\ttic format is x-axis: \"%s\"", conv_text(str, xformat)); |
, y-axis: \"%s\"\ |
fprintf(stderr, ", y-axis: \"%s\"", conv_text(str, yformat)); |
, z-axis: \"%s\"\ |
fprintf(stderr, ", z-axis: \"%s\"", conv_text(str, zformat)); |
, x2-axis: \"%s\"\ |
fprintf(stderr, ", x2-axis: \"%s\"", conv_text(str, x2format)); |
, y2-axis: \"%s\"\n", |
fprintf(stderr, ", y2-axis: \"%s\"\n", conv_text(str, y2format)); |
conv_text(str[0], xformat), |
|
conv_text(str[1], yformat), |
|
conv_text(str[2], zformat), |
|
conv_text(str[3], x2format), |
|
conv_text(str[4], y2format)); |
|
} |
} |
|
|
#define SHOW_LOG(FLAG, BASE, TEXT) \ |
#define SHOW_LOG(FLAG, BASE, TEXT) \ |
|
|
%s\n\ |
%s\n\ |
%s\tType `help` to access the on-line reference manual\n\ |
%s\tType `help` to access the on-line reference manual\n\ |
%s\tThe gnuplot FAQ is available from\n\ |
%s\tThe gnuplot FAQ is available from\n\ |
%s\t\t<%s>\n\ |
%s\t<%s>\n\ |
%s\n\ |
%s\n\ |
%s\tSend comments and requests for help to <%s>\n\ |
%s\tSend comments and requests for help to <%s>\n\ |
%s\tSend bugs, suggestions and mods to <%s>\n\ |
%s\tSend bugs, suggestions and mods to <%s>\n\ |
Line 1590 void show_version_long() |
|
Line 1591 void show_version_long() |
|
"-READLINE " |
"-READLINE " |
#endif |
#endif |
,gnu_rdline = |
,gnu_rdline = |
#ifdef GNU_READLINE |
#ifdef HAVE_LIBREADLINE |
"+GNU_READLINE " |
"+LIBREADLINE " |
#else |
#else |
"-GNU_READLINE " |
"-LIBREADLINE " |
#endif |
#endif |
,libgd = |
,libgd = |
#ifdef HAVE_LIBGD |
#ifdef HAVE_LIBGD |