diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-09 11:59:12 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-09 11:59:12 +0000 |
commit | 51e0793e64ad3bd5dc846baec79a4b7bd4b6bbd1 (patch) | |
tree | 063390d9d89804416186b2e30f271758dc0a0542 /src/floatfns.c | |
parent | 991171cf5b04b6949734b55ab6d6f5657ee19428 (diff) | |
download | emacs-51e0793e64ad3bd5dc846baec79a4b7bd4b6bbd1.tar.gz |
Apply typo patches from Paul Eggert.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r-- | src/floatfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index abc873688e4..ca50a920f3c 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -405,8 +405,8 @@ DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0, 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; |