Commit fe932535 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* where.c (ffewhere_track): Remove impossible if-then clause.

From-SVN: r56469
parent 48209ce5
Tue Aug 20 16:49:40 2002 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* where.c (ffewhere_track): Remove impossible if-then clause.
Thu Aug 8 10:06:14 2002 Nathan Sidwell <nathan@codesourcery.com>
* f/Make-lang.in (f.mostlyclean): Remove coverage files.
......
......@@ -436,22 +436,11 @@ ffewhere_track (ffewhereLine *wl, ffewhereColumn *wc, ffewhereTrack wt,
else
{
wt[i * 2 - 2] = lo;
if (cn > FFEWHERE_indexUNKNOWN)
{
wt[i * 2 - 1] = FFEWHERE_indexUNKNOWN;
ffewhere_line_kill (*wl);
ffewhere_column_kill (*wc);
*wl = ffewhere_line_unknown ();
*wc = ffewhere_column_unknown ();
}
else
{
wt[i * 2 - 1] = cn - 1;
ffewhere_line_kill (*wl);
ffewhere_column_kill (*wc);
*wl = ffewhere_line_use (ffewhere_line_new (ln));
*wc = ffewhere_column_use (ffewhere_column_new (cn));
}
wt[i * 2 - 1] = cn - 1;
ffewhere_line_kill (*wl);
ffewhere_column_kill (*wc);
*wl = ffewhere_line_use (ffewhere_line_new (ln));
*wc = ffewhere_column_use (ffewhere_column_new (cn));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment