From: Michal Sojka Date: Thu, 31 Jul 2014 07:04:28 +0000 (+0200) Subject: Re: [PATCH RFC] Emacs: Add address completion mechanism implemented in elisp X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=41935e8d149dc313cbe3ff52631ee2f240c05890;p=notmuch-archives.git Re: [PATCH RFC] Emacs: Add address completion mechanism implemented in elisp --- diff --git a/4b/3fe3a08fb7d5ffc40dc57dbf08236911e886d4 b/4b/3fe3a08fb7d5ffc40dc57dbf08236911e886d4 new file mode 100644 index 000000000..46094c677 --- /dev/null +++ b/4b/3fe3a08fb7d5ffc40dc57dbf08236911e886d4 @@ -0,0 +1,68 @@ +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 1A889431FB6 + for ; Thu, 31 Jul 2014 00:05:00 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -2.3 +X-Spam-Level: +X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5 + tests=[RCVD_IN_DNSWL_MED=-2.3] 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 pV2JHw8ncU86 for ; + Thu, 31 Jul 2014 00:04:54 -0700 (PDT) +Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36]) + by olra.theworths.org (Postfix) with ESMTP id 7C2DE431FAE + for ; Thu, 31 Jul 2014 00:04:54 -0700 (PDT) +Received: from localhost (unknown [192.168.200.7]) + by max.feld.cvut.cz (Postfix) with ESMTP id 580C23CFED6; + Thu, 31 Jul 2014 09:04:42 +0200 (CEST) +X-Virus-Scanned: IMAP STYX AMAVIS +Received: from max.feld.cvut.cz ([192.168.200.1]) + by localhost (styx.feld.cvut.cz [192.168.200.7]) (amavisd-new, + port 10044) + with ESMTP id 300GzUXQqKMx; Thu, 31 Jul 2014 09:04:37 +0200 (CEST) +Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34]) + by max.feld.cvut.cz (Postfix) with ESMTP id 5F1F53CFEC0; + Thu, 31 Jul 2014 09:04:36 +0200 (CEST) +Received: from wsh by steelpick.2x.cz with local (Exim 4.82_1-5b7a7c0-XX) + (envelope-from ) + id 1XCkPd-0001uT-0c; Thu, 31 Jul 2014 09:04:29 +0200 +From: Michal Sojka +To: Trevor Jim +Subject: Re: [PATCH RFC] Emacs: Add address completion mechanism implemented + in elisp +In-Reply-To: <472ef380-a3ff-4c3b-b731-c8bb4a32723a@me.com> +References: <472ef380-a3ff-4c3b-b731-c8bb4a32723a@me.com> +User-Agent: Notmuch/0.18.1+51~gbbbdf04 (http://notmuchmail.org) Emacs/24.3.1 + (x86_64-pc-linux-gnu) +Date: Thu, 31 Jul 2014 09:04:28 +0200 +Message-ID: <87zjfq3t6r.fsf@steelpick.2x.cz> +MIME-Version: 1.0 +Content-Type: text/plain +Cc: notmuch@notmuchmail.org +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: Thu, 31 Jul 2014 07:05:00 -0000 + +On Thu, Jul 31 2014, Trevor Jim wrote: +> BTW I have been refactoring my async process code. You might consider +> it for your patch. + +I'll look at that. I figured out that I might also reuse +notmuch-parser.el. I'll post here my findings later. + +-Michal