From: Paul Khuong Date: Sat, 6 Aug 2011 21:34:27 +0000 (-0400) Subject: Remove non-ASCII characters in comments X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=6d67d71e21d95c26119b8c7cea1bc64811892767;p=sbcl.git Remove non-ASCII characters in comments It breaks some people's builds (especially on !SBCL). --- diff --git a/src/compiler/srctran.lisp b/src/compiler/srctran.lisp index 3244cc9..0426eef 100644 --- a/src/compiler/srctran.lisp +++ b/src/compiler/srctran.lisp @@ -3280,9 +3280,9 @@ ;;; Y must neither be zero nor a power of two. The quotient is rounded ;;; towards zero. ;;; The algorithm is taken from the paper "Division by Invariant -;;; Integers using Multiplication", 1994 by Torbjörn Granlund and Peter -;;; L. Montgomery, Figures 4.2 and 6.2, modified to exclude the case of -;;; division by powers of two. +;;; Integers using Multiplication", 1994 by Torbj\"{o}rn Granlund and +;;; Peter L. Montgomery, Figures 4.2 and 6.2, modified to exclude the +;;; case of division by powers of two. ;;; The following two examples show an average case and the worst case ;;; with respect to the complexity of the generated expression, under ;;; a word size of 64 bits: