diff src/floatfns.c @ 3591:507f64624555

Apply typo patches from Paul Eggert.
author Jim Blandy <jimb@redhat.com>
date Wed, 09 Jun 1993 11:59:12 +0000
parents 1950b2238ecc
children 8ab0a7453577
line wrap: on
line diff
--- a/src/floatfns.c	Wed Jun 09 11:33:38 1993 +0000
+++ b/src/floatfns.c	Wed Jun 09 11:59:12 1993 +0000
@@ -405,8 +405,8 @@
   if ((XTYPE (arg1) == Lisp_Int) && /* common lisp spec */
       (XTYPE (arg2) == Lisp_Int)) /* don't promote, if both are ints */
     {				/* this can be improved by pre-calculating */
-      int acc, x, y;		/* some binary powers of x then acumulating */
-      /* these, therby saving some time. -wsr */
+      int acc, x, y;		/* some binary powers of x then accumulating */
+      /* these, thereby saving some time. -wsr */
       x = XINT (arg1);
       y = XINT (arg2);
       acc = 1;