From: Jameson Rollins Date: Wed, 26 Jan 2011 20:57:50 +0000 (-0800) Subject: emacs: send notmuch-query stderr to /dev/null X-Git-Tag: debian/0.6_254~192 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=15d8928f4133eb28f7823b0f4d4c5edc6471131c;hp=15d8928f4133eb28f7823b0f4d4c5edc6471131c emacs: send notmuch-query stderr to /dev/null The call-process to notmuch in notmuch-query.el was previously sending stderr into the output buffer. This means that if there is any stderr the JSON parsing breaks. Unfortunately call-process does not support sending stderr to a separate buffer or to the minibuffer [0], but it does support sending it to /dev/null. So we do that here instead. [0] a bug was filed against emacs (#7842) ---