From owner-svn-src-svnadmin@freebsd.org Sun Aug 14 05:48:39 2016 Return-Path: Delivered-To: svn-src-svnadmin@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A253CBB9453 for ; Sun, 14 Aug 2016 05:48:39 +0000 (UTC) (envelope-from juli@clockworksquid.com) Received: from mail-qk0-x235.google.com (mail-qk0-x235.google.com [IPv6:2607:f8b0:400d:c09::235]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 756DE15DB for ; Sun, 14 Aug 2016 05:48:39 +0000 (UTC) (envelope-from juli@clockworksquid.com) Received: by mail-qk0-x235.google.com with SMTP id l2so20528806qkf.3 for ; Sat, 13 Aug 2016 22:48:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=clockworksquid.com; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=Moy1h3uh+zEiyxmzGsPaFIHn0ohNu09AMyAIUGBwj88=; b=d1TH0OICkq/bCc/4IIBXgQHWRgBhsaraY/taxfhduJDRdSGNupZ6iBlGzP1Mvgi8uf WjFQ0PF6dL9fE1GL8ruILmNLjTzJ0b9sKZNz8wsDxYUBf6OddSuegbfkKZjYj6b4jmyF 2eDQAXvjZ8SNPz59sEg5i0MGqZWp/IwnSjLSA= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=Moy1h3uh+zEiyxmzGsPaFIHn0ohNu09AMyAIUGBwj88=; b=Mmk/LF3InzslsFGNFLXurn58QjeoNx/Ed+bCzVrKKdpTEwjAJTXMpQhM3ODHhqQ4eb hn3WQ5AgO44Era1HkcjRrTHsVltE43AhkZyuUNtwnS+FGx69SjfSbmW6Ym3ltwdduVqT /VXheXg1HVyNWM4AKz74CdWRqgSx0SrR7GSFG6sVONS5+tcRvpINsJX4/NiZ32cXODjb 4Dlcr1LjwN8BshqqH4qN9DggFATVusfkniLYy9AZhiAx8yFnBfikptExsvtUVBpnkW++ gbyPyCLKd16X7tgRG2G8AmYkf/4hmAthLuPGf1O+5bgNzT+1HbOv8snOw/HHfp77Ejno dWJg== X-Gm-Message-State: AEkoouvMssq30h9vbXl+cK1eVFp1yLMEHgvLGceIkjr9UFSw9V941Fe8BVdYoA96dD+PWRho2kAC6IUcB1a5+Q== X-Received: by 10.55.5.17 with SMTP id 17mr25420905qkf.280.1471153718522; Sat, 13 Aug 2016 22:48:38 -0700 (PDT) MIME-Version: 1.0 Received: by 10.237.56.105 with HTTP; Sat, 13 Aug 2016 22:48:18 -0700 (PDT) In-Reply-To: <20160814044723.GF11079@FreeBSD.org> References: <201608140435.u7E4Z4Fm022554@repo.freebsd.org> <20160814044723.GF11079@FreeBSD.org> From: Juli Mallett Date: Sat, 13 Aug 2016 22:48:18 -0700 Message-ID: Subject: Re: svn commit: r304070 - svnadmin/conf To: Glen Barber Cc: Conrad Meyer , src-committers , svn-src-all@freebsd.org, svn-src-svnadmin@freebsd.org, svnadm@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-svnadmin@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the admin / configuration tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Aug 2016 05:48:39 -0000 On Sat, Aug 13, 2016 at 9:47 PM, Glen Barber wrote: > Quoting the original request to remove this, which I tend to agree: > > -------------------------- begin quoted text --------------------------- > The svn commit mail script uses some form of 'diff -p' (or 'svn diff > -x-p') to include function names at the top of each hunk. The problem > is that diff gets it wrong more often than not, especially (but not > only) when functions are added or renamed, or outside a funciton, or in > headers, or in code that makes heavy use of macros, or in files that > aren't C-like source code: shell scripts, man pages, Makefiles... All > it really does is clutter up the patch and mislead the reader. > --------------------------- end quoted text ---------------------------- :( I'm deeply skeptical that the described conditions add up to "more often than not," and that tangible harm is done in those cases, outweighing benefit added in the other, ostensibly rarer, case (changes in ordinary C source files, which are actually fairly abundant in FreeBSD.) Juli.