From: Mark Wooding Date: Sun, 24 Nov 2019 22:45:14 +0000 (+0000) Subject: ec.c (ecptxl_1): Preparatory reformatting. X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb-python/commitdiff_plain/27dc0847b3fcbbd13ced4ace2d31a0ed080d3ef1 ec.c (ecptxl_1): Preparatory reformatting. Gentle vertical compression. --- diff --git a/ec.c b/ec.c index 1e3eb99..770e71d 100644 --- a/ec.c +++ b/ec.c @@ -521,10 +521,8 @@ static int ecptxl_1(ec_curve *c, ec *p, PyObject *x) getecptout(p, x); goto fix; } else if (TEXT_CHECK(x)) { - qd.p = TEXT_PTR(x); - qd.e = 0; - if (!ec_ptparse(&qd, p)) - VALERR(qd.e); + qd.p = TEXT_PTR(x); qd.e = 0; + if (!ec_ptparse(&qd, p)) VALERR(qd.e); qd_skipspc(&qd); if (!qd_eofp(&qd)) VALERR("junk at eof"); goto fix; } else if (c && (xx = tomp(x)) != 0) {