Commit a9456cd3 by Richard Stallman

(asctoeg): Fix backward condition in last change.

From-SVN: r5719
parent e8cfae5c
......@@ -4647,8 +4647,8 @@ asctoeg (ss, y, oprec)
while (*s == ' ') /* skip leading spaces */
++s;
sp = lstr;
while ((*sp++ = *s++) == '\0')
;
while ((*sp++ = *s++) != '\0')
;
s = lstr;
rndsav = rndprc;
......
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