plotting/plotit.c, rename local variable `j' --> `y_type'
This commit is contained in:
parent
f97e4a2a35
commit
a1439f5d4d
|
|
@ -232,7 +232,7 @@ plotit(wordlist *wl, char *hcopy, char *devname)
|
|||
struct pnode *pn, *names;
|
||||
struct dvec *d = NULL, *vecs = NULL, *lv, *lastvs = NULL;
|
||||
char *xn;
|
||||
int i, j, xt;
|
||||
int i, y_type, xt;
|
||||
double tt;
|
||||
wordlist *wwl, *tail;
|
||||
char *cline = NULL, buf[BSIZE_SP], *pname;
|
||||
|
|
@ -971,7 +971,7 @@ plotit(wordlist *wl, char *hcopy, char *devname)
|
|||
if (d->v_type != vecs->v_type)
|
||||
break;
|
||||
|
||||
j = d ? SV_NOTYPE : vecs->v_type;
|
||||
y_type = d ? SV_NOTYPE : vecs->v_type;
|
||||
|
||||
#ifndef X_DISPLAY_MISSING
|
||||
if (devname && eq(devname, "xgraph")) {
|
||||
|
|
@ -979,7 +979,7 @@ plotit(wordlist *wl, char *hcopy, char *devname)
|
|||
ft_xgraph(xlims, ylims, hcopy,
|
||||
title ? title : vecs->v_plot->pl_title,
|
||||
xlabel ? xlabel : ft_typabbrev(vecs->v_scale->v_type),
|
||||
ylabel ? ylabel : ft_typabbrev(j),
|
||||
ylabel ? ylabel : ft_typabbrev(y_type),
|
||||
gtype, ptype, vecs);
|
||||
rtn = TRUE;
|
||||
goto quit;
|
||||
|
|
@ -991,7 +991,7 @@ plotit(wordlist *wl, char *hcopy, char *devname)
|
|||
ft_gnuplot(xlims, ylims, hcopy,
|
||||
title ? title : vecs->v_plot->pl_title,
|
||||
xlabel ? xlabel : ft_typabbrev(vecs->v_scale->v_type),
|
||||
ylabel ? ylabel : ft_typabbrev(j),
|
||||
ylabel ? ylabel : ft_typabbrev(y_type),
|
||||
gtype, ptype, vecs);
|
||||
rtn = TRUE;
|
||||
goto quit;
|
||||
|
|
@ -1002,7 +1002,7 @@ plotit(wordlist *wl, char *hcopy, char *devname)
|
|||
ft_writesimple(xlims, ylims, hcopy,
|
||||
title ? title : vecs->v_plot->pl_title,
|
||||
xlabel ? xlabel : ft_typabbrev(vecs->v_scale->v_type),
|
||||
ylabel ? ylabel : ft_typabbrev(j),
|
||||
ylabel ? ylabel : ft_typabbrev(y_type),
|
||||
gtype, ptype, vecs);
|
||||
rtn = TRUE;
|
||||
goto quit;
|
||||
|
|
@ -1032,7 +1032,7 @@ plotit(wordlist *wl, char *hcopy, char *devname)
|
|||
hcopy, i,
|
||||
xdelta ? *xdelta : 0.0,
|
||||
ydelta ? *ydelta : 0.0,
|
||||
gtype, ptype, xlabel, ylabel, xt, j, pname, cline))
|
||||
gtype, ptype, xlabel, ylabel, xt, y_type, pname, cline))
|
||||
goto quit;
|
||||
|
||||
/* Now plot all the graphs. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue