ec.c (ecptxl_1): Preparatory reformatting.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 24 Nov 2019 22:45:14 +0000 (22:45 +0000)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 11 Apr 2020 11:49:31 +0000 (12:49 +0100)
Gentle vertical compression.

ec.c

diff --git a/ec.c b/ec.c
index 1e3eb99..770e71d 100644 (file)
--- 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) {