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 0F4F5431FCF for ; Sat, 24 Jan 2015 09:12:35 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.138 X-Spam-Level: X-Spam-Status: No, score=0.138 tagged_above=-999 required=5 tests=[DNS_FROM_AHBL_RHSBL=2.438, 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 WeDcUsypdplJ for ; Sat, 24 Jan 2015 09:12:33 -0800 (PST) Received: from outgoing.csail.mit.edu (outgoing.csail.mit.edu [128.30.2.149]) by olra.theworths.org (Postfix) with ESMTP id EC5C4431FAE for ; Sat, 24 Jan 2015 09:12:32 -0800 (PST) Received: from [104.131.20.129] (helo=awakeningjr) by outgoing.csail.mit.edu with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1YF4G8-00048f-DX; Sat, 24 Jan 2015 12:12:32 -0500 Received: from amthrax by awakeningjr with local (Exim 4.84) (envelope-from ) id 1YF4G8-0003VV-60; Sat, 24 Jan 2015 12:12:32 -0500 From: Austin Clements To: David Edmondson , notmuch@notmuchmail.org Subject: Re: [PATCH 11/11] emacs: Support cid: references with shr renderer In-Reply-To: References: <1398105468-14317-1-git-send-email-amdragon@mit.edu> <1398105468-14317-12-git-send-email-amdragon@mit.edu> User-Agent: Notmuch/0.18.1+86~gef5e66a (http://notmuchmail.org) Emacs/24.4.1 (x86_64-pc-linux-gnu) Date: Sat, 24 Jan 2015 12:12:32 -0500 Message-ID: <871tmkumpr.fsf@csail.mit.edu> MIME-Version: 1.0 Content-Type: text/plain 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, 24 Jan 2015 17:12:35 -0000 On Thu, 01 May 2014, David Edmondson wrote: > On Mon, Apr 21 2014, Austin Clements wrote: >> +(defun notmuch-show--insert-part-text/html-shr (msg part) >> + ;; Make sure shr is loaded before we start let-binding its globals >> + (require 'shr) >> + (let ((dom (let (process-crypto notmuch-show-process-crypto) > > Missing brackets? (You let-bind both `process-crypto' and > `notmuch-show-process-crypto' as nil.) 'Doh. Thanks.