Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id CE2AA431FAF for ; Sat, 5 Jan 2013 04:49:13 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ErCYCTG5OyMc for ; Sat, 5 Jan 2013 04:49:12 -0800 (PST) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id C5042431FAE for ; Sat, 5 Jan 2013 04:49:12 -0800 (PST) Received: by guru.guru-group.fi (Postfix, from userid 501) id 7A39C10014F; Sat, 5 Jan 2013 14:49:03 +0200 (EET) From: Tomi Ollila To: notmuch@notmuchmail.org Subject: [PATCH 1/1] fix line breaks in one comment paragraph in generated .notmuch-config file Date: Sat, 5 Jan 2013 14:49:01 +0200 Message-Id: <1357390141-22877-1-git-send-email-tomi.ollila@iki.fi> X-Mailer: git-send-email 1.8.0 Cc: tomi.ollila@iki.fi X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Jan 2013 12:49:13 -0000 While one comment in generated .notmuch-config file looked good in the source file notmuch-config.c, the generated output was inconsistently wide -- even breaking the 80-column boundary. --- notmuch-config.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/notmuch-config.c b/notmuch-config.c index 3e37a2d..9318a89 100644 --- a/notmuch-config.c +++ b/notmuch-config.c @@ -49,8 +49,9 @@ static const char new_config_comment[] = "\tignore A list (separated by ';') of file and directory names\n" "\t that will not be searched for messages by \"notmuch new\".\n" "\n" - "\t NOTE: *Every* file/directory that goes by one of those names will\n" - "\t be ignored, independent of its depth/location in the mail store.\n"; + "\t NOTE: *Every* file/directory that goes by one of those\n" + "\t names will be ignored, independent of its depth/location\n"; + "\t in the mail store.\n"; static const char user_config_comment[] = " User configuration\n" -- 1.8.0