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 59739431FBC for ; Sat, 21 Nov 2009 13:33:45 -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 ELXuuIOS-AO9 for ; Sat, 21 Nov 2009 13:33:44 -0800 (PST) Received: from mail-bw0-f224.google.com (mail-bw0-f224.google.com [209.85.218.224]) by olra.theworths.org (Postfix) with ESMTP id 999AC431FAE for ; Sat, 21 Nov 2009 13:33:44 -0800 (PST) Received: by bwz24 with SMTP id 24so3137936bwz.30 for ; Sat, 21 Nov 2009 13:33:43 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:to:cc:subject :date:message-id:x-mailer:in-reply-to:references:mime-version :content-type; bh=j2zfwyRiwCY4fbC8X1XfVFIK7V047vYBi4UjxhDtzfQ=; b=JEVQCaTWUJpsq+aPUxHWwDO3TYrRbEcvkMFFikiFXikUG4zMxycU7Ebq/no0lBKQN1 uV0YqFIs4DqY+FV0CGyoRQTutliTz9USnxE8InGnbchAvrDJieYJqmy0ICx4QeMmiR4H fdGLEhbW/apZOuQKOKT+L4kVTFF3yImT5phu8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:mime-version:content-type; b=qfhguoImpQ5J0NB2odrWkXPq9KoriommCaAtnC2zctdz+bHFH8RyxOxkt7fls1hmYe WUPUusyviekQBwRBynKQSQGQrVq8NxAo1LE9Z8A8XCIKpt2KeCyeo/cS8wflJv5o3Gol /7MaSi+0Cik8f6M+71q+j32hwXoK7j1mq9BRE= Received: by 10.204.24.69 with SMTP id u5mr2937331bkb.1.1258839223816; Sat, 21 Nov 2009 13:33:43 -0800 (PST) Received: from localhost.localdomain (vawpc43.ethz.ch [129.132.59.11]) by mx.google.com with ESMTPS id e17sm3400560fke.23.2009.11.21.13.33.42 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 21 Nov 2009 13:33:43 -0800 (PST) Sender: Jed Brown From: Jed Brown To: notmuch@notmuchmail.org Date: Sat, 21 Nov 2009 22:34:00 +0100 Message-Id: <1258839240-17032-1-git-send-email-jed@59A2.org> X-Mailer: git-send-email 1.6.5.3 In-Reply-To: <87skc736z4.fsf@yoom.home.cworth.org> References: <87skc736z4.fsf@yoom.home.cworth.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1.6.5.3" Subject: [notmuch] [PATCH] _READ_Write -> _READ_WRITE 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: Sat, 21 Nov 2009 21:33:45 -0000 This is a multi-part message in MIME format. --------------1.6.5.3 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit --- lib/notmuch.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --------------1.6.5.3 Content-Type: text/x-patch; name="0001-_READ_Write-_READ_WRITE.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-_READ_Write-_READ_WRITE.patch" diff --git a/lib/notmuch.h b/lib/notmuch.h index bbeec55..a61cd02 100644 --- a/lib/notmuch.h +++ b/lib/notmuch.h @@ -139,7 +139,7 @@ notmuch_database_create (const char *path); typedef enum { NOTMUCH_DATABASE_MODE_READ_ONLY = 0, - NOTMUCH_DATABASE_MODE_READ_Write + NOTMUCH_DATABASE_MODE_READ_WRITE } notmuch_database_mode_t; /* XXX: I think I'd like this to take an extra argument of --------------1.6.5.3--