From: Ian Jackson Date: Sun, 19 Aug 2018 16:40:32 +0000 (+0100) Subject: git-debrebase: Fix comment documenting D_DEB_* X-Git-Tag: archive/debian/6.7~50 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=86767e446f17de0fc5f79365e25332f05ab18a02 git-debrebase: Fix comment documenting D_DEB_* Signed-off-by: Ian Jackson --- diff --git a/git-debrebase b/git-debrebase index c240d88b..e5639a27 100755 --- a/git-debrebase +++ b/git-debrebase @@ -112,8 +112,8 @@ sub get_commit ($) { sub D_UPS () { 0x02; } # upstream files sub D_PAT_ADD () { 0x04; } # debian/patches/ extra patches at end sub D_PAT_OTH () { 0x08; } # debian/patches other changes -sub D_DEB_CLOG () { 0x10; } # debian/ (not patches/ or changelog) -sub D_DEB_OTH () { 0x20; } # debian/changelog +sub D_DEB_CLOG () { 0x10; } # debian/changelog +sub D_DEB_OTH () { 0x20; } # debian/ (not patches/ or changelog) sub DS_DEB () { D_DEB_CLOG | D_DEB_OTH; } # debian/ (not patches/) our $playprefix = 'debrebase';