From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DF4C51581D3 for ; Fri, 24 May 2024 01:18:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0AECE2A37; Fri, 24 May 2024 01:18:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A00EEE2A37 for ; Fri, 24 May 2024 01:18:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D112B342FFC for ; Fri, 24 May 2024 01:18:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34B3B1AD9 for ; Fri, 24 May 2024 01:18:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1716395903.2143fdb2adf0131e9baa4f308b8125cfe5e92a47.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: functions.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2143fdb2adf0131e9baa4f308b8125cfe5e92a47 X-VCS-Branch: master Date: Fri, 24 May 2024 01:18:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7b9abb4f-84fa-4752-a5f1-1a016cdecbe0 X-Archives-Hash: 2f17b3be9b683d7e8b2dcd8a350322b5 commit: 2143fdb2adf0131e9baa4f308b8125cfe5e92a47 Author: Kerin Millar plushkava net> AuthorDate: Wed May 22 16:38:23 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 22 16:38:23 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=2143fdb2 Correct the wrapping of a comment In accordance with the presumption of a tab being as wide as 8 spaces. Signed-off-by: Kerin Millar plushkava.net> functions.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions.sh b/functions.sh index f965534..48b4c5a 100644 --- a/functions.sh +++ b/functions.sh @@ -389,9 +389,9 @@ is_older_than() fi shift - # Check whether GNU find is installed by the name of "gfind". So as to avoid - # repeated PATH lookups, run the hash builtin in the present shell, prior to - # forking. + # Check whether GNU find is installed by the name of "gfind". So as to + # avoid repeated PATH lookups, run the hash builtin in the present + # shell, prior to forking. hash gfind 2>/dev/null; has_gfind=$(( $? == 0 )) for path; do