From owner-svn-src-all@FreeBSD.ORG Fri Aug 31 12:08:31 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 90503106566B; Fri, 31 Aug 2012 12:08:31 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7A4058FC0A; Fri, 31 Aug 2012 12:08:31 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7VC8VON027761; Fri, 31 Aug 2012 12:08:31 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7VC8VPe027759; Fri, 31 Aug 2012 12:08:31 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201208311208.q7VC8VPe027759@svn.freebsd.org> From: Konstantin Belousov Date: Fri, 31 Aug 2012 12:08:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r239949 - stable/9/sys/amd64/amd64 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Aug 2012 12:08:31 -0000 Author: kib Date: Fri Aug 31 12:08:31 2012 New Revision: 239949 URL: http://svn.freebsd.org/changeset/base/239949 Log: MFC r238671: Constently use 2-space sentence breaks. Modified: stable/9/sys/amd64/amd64/fpu.c Directory Properties: stable/9/sys/ (props changed) Modified: stable/9/sys/amd64/amd64/fpu.c ============================================================================== --- stable/9/sys/amd64/amd64/fpu.c Fri Aug 31 12:06:32 2012 (r239948) +++ stable/9/sys/amd64/amd64/fpu.c Fri Aug 31 12:08:31 2012 (r239949) @@ -515,7 +515,7 @@ static char fpetable[128] = { /* * Read the FP status and control words, then generate si_code value * for SIGFPE. The error code chosen will be one of the - * FPE_... macros. It will be sent as the second argument to old + * FPE_... macros. It will be sent as the second argument to old * BSD-style signal handlers and as "siginfo_t->si_code" (second * argument) to SA_SIGINFO signal handlers. * @@ -523,7 +523,7 @@ static char fpetable[128] = { * Clearing exceptions was necessary mainly to avoid IRQ13 bugs. The * usermode code which understands the FPU hardware enough to enable * the exceptions, can also handle clearing the exception state in the - * handler. The only consequence of not clearing the exception is the + * handler. The only consequence of not clearing the exception is the * rethrow of the SIGFPE on return from the signal handler and * reexecution of the corresponding instruction. *