Mercurial > emacs
comparison src/floatfns.c @ 6314:9fd25ec7204b
(Fexpt): Delete extraneous `for' statement.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 12 Mar 1994 04:16:49 +0000 |
parents | 63bc8a14a073 |
children | 800c035273e9 |
comparison
equal
deleted
inserted
replaced
6313:9a6531e6de5d | 6314:9fd25ec7204b |
---|---|
443 else | 443 else |
444 acc = 0; | 444 acc = 0; |
445 } | 445 } |
446 else | 446 else |
447 { | 447 { |
448 for (; y > 0; y--) | |
449 while (y > 0) | 448 while (y > 0) |
450 { | 449 { |
451 if (y & 1) | 450 if (y & 1) |
452 acc *= x; | 451 acc *= x; |
453 x *= x; | 452 x *= x; |