From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C0CE658973 for ; Wed, 3 Feb 2016 18:52:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAEFE21C035; Wed, 3 Feb 2016 18:52:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2D18621C035 for ; Wed, 3 Feb 2016 18:52:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4969F340A5C for ; Wed, 3 Feb 2016 18:52:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ACA5EC6F for ; Wed, 3 Feb 2016 18:52:02 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1454525501.03ec1b8d7a9ab445352c05cbc5817b80cd3a1640.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bash/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/bash/files/bashrc X-VCS-Directories: app-shells/bash/files/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 03ec1b8d7a9ab445352c05cbc5817b80cd3a1640 X-VCS-Branch: master Date: Wed, 3 Feb 2016 18:52:02 +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-Archives-Salt: 8ff9fe42-1e58-4900-82c7-9ba4cd8119bb X-Archives-Hash: 3e7a5e365c6dd6d365f62f9344e5a6e7 commit: 03ec1b8d7a9ab445352c05cbc5817b80cd3a1640 Author: Mike Frysinger gentoo org> AuthorDate: Tue Feb 2 20:24:44 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Feb 3 18:51:41 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ec1b8d app-shells/bash: bashrc: enable colors for all TERMS that end in "color" A bunch of terms end in values like "-256color" and "-color" to indicate the variant that supports color. Match all of those in the fallback case. app-shells/bash/files/bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-shells/bash/files/bashrc b/app-shells/bash/files/bashrc index 87a5562..ed46b7d 100644 --- a/app-shells/bash/files/bashrc +++ b/app-shells/bash/files/bashrc @@ -77,7 +77,7 @@ else # Some systems (e.g. BSD & embedded) don't typically come with # dircolors so we need to hardcode some terminals in here. case ${TERM} in - [aEkx]term*|rxvt*|gnome*|konsole*|screen|cons25) use_color=true;; + [aEkx]term*|rxvt*|gnome*|konsole*|screen|cons25|*color) use_color=true;; esac fi