=================================================================== RCS file: /home/cvs/OpenXM_contrib/gnuplot/Attic/set.c,v retrieving revision 1.1.1.1 retrieving revision 1.1.1.2 diff -u -p -r1.1.1.1 -r1.1.1.2 --- OpenXM_contrib/gnuplot/Attic/set.c 2000/01/09 17:00:55 1.1.1.1 +++ OpenXM_contrib/gnuplot/Attic/set.c 2000/01/22 14:16:00 1.1.1.2 @@ -1,5 +1,5 @@ #ifndef lint -static char *RCSid = "$Id: set.c,v 1.1.1.1 2000/01/09 17:00:55 maekawa Exp $"; +static char *RCSid = "$Id: set.c,v 1.1.1.2 2000/01/22 14:16:00 maekawa Exp $"; #endif /* GNUPLOT - set.c */ @@ -661,6 +661,12 @@ else if (almost_equals(c_token, MAX)) { AUTO |= 2; } else if (equals(c_token, "y")) { autoscale_y = FALSE; c_token++; + } else if (equals(c_token, "x2")) { + autoscale_x2 = FALSE; + c_token++; + } else if (equals(c_token, "y2")) { + autoscale_y2 = FALSE; + c_token++; } else if (equals(c_token, "z")) { autoscale_z = FALSE; c_token++;