From patchwork Tue Dec 12 17:40:30 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 847568 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-88078-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="n5oqIAvw"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yx6Yf33cyz9s7B for ; Wed, 13 Dec 2017 04:40:53 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; q=dns; s= default; b=cRc+xbknCTA3oV5JqLKZpSla7pSGeFhZlyvZG1emIUiRvmS0aG+up KIeMjPauTNOFasgjqGLa1kWEqjrW0jq2+X9ycVVBS+Q+w+qsGH+pEjjFdDzAeBI6 RAVTClrEhnFlV3D0oZ6oR8hsh+vCjlQX4Qp4uGrdxl9zsgfamcJS+Y= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id; s=default; bh=zm/wyQA3ATb9MBFSt+L61SWV2Jg=; b=n5oqIAvw2nT5zye62pkxfaqg48xN JGsDyiMM+fX+8Gcr23EzUpiN+JqCg/mzK1L+MVFuVal909kYxVRIYX5lZXSpCLi9 t2mabHPHCaAi0hzdoEIdibE7GEyv3YZiCfXxoAXMuAzoVXQ5Bi85fcA/dQzmbQIn tB15w5ua9X4FjYA= Received: (qmail 114831 invoked by alias); 12 Dec 2017 17:40:48 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 114819 invoked by uid 89); 12 Dec 2017 17:40:47 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: hall.aurel32.net From: Aurelien Jarno To: libc-alpha@sourceware.org Cc: Aurelien Jarno Subject: [PATCH] manual: fix finite description [BZ #22596] Date: Tue, 12 Dec 2017 18:40:30 +0100 Message-Id: <20171212174030.7909-1-aurelien@aurel32.net> That way it matches the standard and the behaviour of the finite function. Changelog: [BZ #22596] * manual/arith.texi (finite): Fix the description of the return value. --- ChangeLog | 6 ++++++ manual/arith.texi | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b25c57d5b5..f258606e03 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-12-12 Aurelien Jarno + + [BZ #22596] + * manual/arith.texi (finite): Fix the description of the return + value. + 2017-12-12 James Clarke * sysdeps/unix/sysv/linux/ia64/ipc_priv.h: New file defining diff --git a/manual/arith.texi b/manual/arith.texi index d12a6c9d26..4649bdf956 100644 --- a/manual/arith.texi +++ b/manual/arith.texi @@ -467,8 +467,8 @@ function for some reason, you can write @deftypefunx int finitel (long double @var{x}) @standards{BSD, math.h} @safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} -This function returns a nonzero value if @var{x} is finite or a ``not a -number'' value, and zero otherwise. +This function returns a nonzero value if @var{x} is neither infinite nor +a ``not a number'' value, and zero otherwise. @end deftypefun @strong{Portability Note:} The functions listed in this section are BSD