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 DF1F7431FBD for ; Wed, 9 Dec 2009 11:09:06 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org 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 I6G5tez2wLao for ; Wed, 9 Dec 2009 11:09:06 -0800 (PST) Received: from n21.bullet.mail.mud.yahoo.com (n21.bullet.mail.mud.yahoo.com [68.142.206.160]) by olra.theworths.org (Postfix) with SMTP id 2A3EC431FAE for ; Wed, 9 Dec 2009 11:09:06 -0800 (PST) Received: from [68.142.200.226] by n21.bullet.mail.mud.yahoo.com with NNFMP; 09 Dec 2009 19:09:05 -0000 Received: from [68.142.201.245] by t7.bullet.mud.yahoo.com with NNFMP; 09 Dec 2009 19:09:05 -0000 Received: from [127.0.0.1] by omp406.mail.mud.yahoo.com with NNFMP; 09 Dec 2009 19:09:05 -0000 X-Yahoo-Newman-Id: 697716.31531.bm@omp406.mail.mud.yahoo.com Received: (qmail 37591 invoked from network); 9 Dec 2009 19:09:05 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com.br; h=Received:X-Yahoo-SMTP:X-YMail-OSG:X-Yahoo-Newman-Property:From:To:Subject:Date:Message-ID:MIME-Version:Content-Type; b=RxkbrVWN6JJuc9S+enZ+lC2qiai87cNDRp+fJEut4UYmdvZS9Yn0uU3hAJH8WhBr3ZO9euaNBOY9zvJBodKyL5Wuz37JHvkv+jJ6mItqF24uhtLstkPSUQIoxqyX13HUpBVAKvnPWb7xXNNcpuUUgjeQhIE+IRrzZZRUOAhsHYc= ; Received: from 189.27.100.158.dynamic.adsl.gvt.net.br (fcarrijo@189.27.100.158 with login) by smtp141.mail.mud.yahoo.com with SMTP; 09 Dec 2009 11:09:05 -0800 PST X-Yahoo-SMTP: NgkT36eswBAymTD26_IxCjMQ0A5a X-YMail-OSG: l_x0eLYVM1nlLhxSA3td7W3.eYzSPVkejuNGmeFvcAIdbs.uGAQkKhMQMb8agMdffopGvmLyIf..DxiJ_PsAQkOfA8l0NqlgpMF1GSyUvhRkLAOYLg5oDmqWPbLtmwo2l5SuOaJu0RE6J6wvmQM7YKXT_i_HhJcGnsciK2GxkqSkEyg4l07XlJYQCDNCizQWfz5KA77Yi31QmKNfZoKASZTDuwp.3.BO7qcUPn72GvOU6f0t9KempoCuB9lO63h5jnexxVgizkjBzzx1s.tDb0TIeN2.veCc.iqda7YGaJqyC.p2Uvbrg.6nDS7f5FGl4Q-- X-Yahoo-Newman-Property: ymail-3 From: Fernando Carrijo To: notmuch@notmuchmail.org Date: Wed, 09 Dec 2009 17:09:01 -0200 Message-ID: <877hswyng2.fsf@yahoo.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: [notmuch] [PATCH] Nuke the remainings of _notmuch_message_add_thread_id. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 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: Wed, 09 Dec 2009 19:09:07 -0000 The function _notmuch_message_add_thread_id has been removed from the private interface of notmuch. There's no reason for one to keep a declaration of its prototype in the code base. Also, lets update a commentary that referenced that function and escaped from previous scrutiny. Signed-off-by: Fernando Carrijo --- lib/database.cc | 9 ++++----- lib/notmuch-private.h | 4 ---- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/lib/database.cc b/lib/database.cc index 23ddd4a..b6c4d07 100644 --- a/lib/database.cc +++ b/lib/database.cc @@ -855,12 +855,11 @@ _notmuch_database_link_message_to_children (notmuch_database_t *notmuch, * * We first look at 'message_file' and its link-relevant headers * (References and In-Reply-To) for message IDs. We also look in the - * database for existing message that reference 'message'.p + * database for existing message that reference 'message'. * - * The end result is to call _notmuch_message_add_thread_id with one - * or more thread IDs to which this message belongs, (including - * generating a new thread ID if necessary if the message doesn't - * connect to any existing threads). + * The end result is to call _notmuch_message_ensure_thread_id which + * generates a new thread ID if the message doesn't connect to any + * existing threads. */ static notmuch_status_t _notmuch_database_link_message (notmuch_database_t *notmuch, diff --git a/lib/notmuch-private.h b/lib/notmuch-private.h index 0c340a7..116f63d 100644 --- a/lib/notmuch-private.h +++ b/lib/notmuch-private.h @@ -194,10 +194,6 @@ _notmuch_message_set_filename (notmuch_message_t *message, const char *filename); void -_notmuch_message_add_thread_id (notmuch_message_t *message, - const char *thread_id); - -void _notmuch_message_ensure_thread_id (notmuch_message_t *message); void -- 1.5.6.3