From mboxrd@z Thu Jan 1 00:00:00 1970 From: Felipe Contreras Subject: Re: [PATCH v3 1/5] pull: rename pull.rename to pull.mode Date: Sat, 12 Oct 2013 01:21:28 -0500 Message-ID: References: <1378689796-19305-1-git-send-email-felipe.contreras@gmail.com> <1378689796-19305-2-git-send-email-felipe.contreras@gmail.com> <522E3C6A.3070409@bbn.com> <20130910022152.GA17154@sigill.intra.peff.net> <52589027a4851_5dc4c2be742754f@nysa.mail> <20131012005035.GA27939@sigill.intra.peff.net> <20131012012515.GA1778@sigill.intra.peff.net> <5258D2D3.9030704@bbn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Cc: Jeff King , Matthieu Moy , git@vger.kernel.org, Andreas Krey , John Keeping , Philip Oakley , "brian m. carlson" To: Richard Hansen X-From: git-owner@vger.kernel.org Sat Oct 12 08:21:43 2013 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1VUsa3-0006b8-9W for gcvg-git-2@plane.gmane.org; Sat, 12 Oct 2013 08:21:39 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752350Ab3JLGVb (ORCPT ); Sat, 12 Oct 2013 02:21:31 -0400 Received: from mail-la0-f42.google.com ([209.85.215.42]:32863 "EHLO mail-la0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751393Ab3JLGV3 (ORCPT ); Sat, 12 Oct 2013 02:21:29 -0400 Received: by mail-la0-f42.google.com with SMTP id ep20so4238978lab.1 for ; Fri, 11 Oct 2013 23:21:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=PSMovsFmiNtpRH/BIGfOfg5T0eW43Yo0hD1uFDNyo+s=; b=O/F+ZewvuFOKCn6jobt5NnyIh78EkA8Zq2VL6EjRYcMpo2OG2pzDL5lkUO039fu3GA 5Kfu/ocuAtNOw3jH6+UiZ+RPZWzJ/Jxl8ehGSSW8kFY/SjS4oW8JqJvFEUyD8xuDc8DK sFERG3/yw25gV8mLQKJRCgTUGV+/CwJEN1VQ6fMdMrEVW859iVDLsa063vEvM8bBPMMA JlxoHgJyBDDZaIJlF4DcecyVjVP7qLFPK/xjn+J1NE6RLxif1Lv31pvKXDLW2m3uV4B4 J296+4bIrvjryKT+R3vxeMnT4NVf4HnJnfh+OpO/EyVm7mZVTvSPVlypJ7mMjO6WGgB9 pbOg== X-Received: by 10.152.28.7 with SMTP id x7mr858893lag.26.1381558888117; Fri, 11 Oct 2013 23:21:28 -0700 (PDT) Received: by 10.114.91.230 with HTTP; Fri, 11 Oct 2013 23:21:28 -0700 (PDT) In-Reply-To: <5258D2D3.9030704@bbn.com> Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: On Fri, Oct 11, 2013 at 11:40 PM, Richard Hansen wrote: > On 2013-10-11 22:08, Felipe Contreras wrote: >> I'm fine with 'echo "warning: foo" >&2', but still, if you really >> cared about consistency, there would be a warn() function > > So add one! It's only one simple line: > > warning() { printf %s\\n "warning: $*" >&2; } It probably should be warning () { printf 'warning: %s\n' "$*" >&2 } But why don't _you_ do it? I have enough patches being ignored to add more to the list, specially for something I care nothing about. > So much discussion for something so trivial... Trivial things are what cause more discussion. -- Felipe Contreras