Re: some issues with emacs 25

2016-10-27 Thread Matt Armstrong
Matthew Lear writes: > Hi, > I switched to trying emacs 25 (25.1) with notmuch the other day. I'm on 25.1 as well, but haven't experienced the symptoms you describe. >> !!! Bodypart handler `notmuch-show-insert-part-text/html' threw an error: >> !!! Window is dedicated to

Re: rfc for notmuch remote access script

2016-10-27 Thread Matt Armstrong
Neat. Basics of it look correct to me. Personally, I'd abandon most of these environment variables and edit the script directly, but that goes against your stated goal. Other comments below. Tomi Ollila writes: > Hi > > j4ni on irc expressed interest of having an

some issues with emacs 25

2016-10-27 Thread Matthew Lear
Hi, I switched to trying emacs 25 (25.1) with notmuch the other day. I really like some of the improvements that have been made (in particular, SHR seems to do a much nicer and quicker job of rendering html emails). However, things came a little unstuck when I tried to reply to an email with

Re: [PATCH] emacs: add compatability functions for emacs 23

2016-10-27 Thread Matt Armstrong
David Bremner writes: > Mark Walters writes: > >> This is a good point. I think I don't mind too much if they do -- they >> should see it is provided by notmuch-lib if they do describe-function >> etc. But maybe bremner would like to comment? >> >>

PGP tag inserted below quoted message when replying

2016-10-27 Thread Dave Barker
Hi there, As discussed in IRC I'm having the problem that sometimes when I reply to messages the #secure method=pgpmime mode=sign tag is inserted below the quoted message. If I then invoke mml-secure-message-sign-pgpmime manually the tag jumps to the correct place (the very start of my message).

Re: [PATCH] emacs: add compatability functions for emacs 23

2016-10-27 Thread David Bremner
Mark Walters writes: > This is a good point. I think I don't mind too much if they do -- they > should see it is provided by notmuch-lib if they do describe-function > etc. But maybe bremner would like to comment? > > However, maybe other packages are doing the same.

Re: [PATCH] emacs: add compatability functions for emacs 23

2016-10-27 Thread Mark Walters
On Thu, 27 Oct 2016, Matt Armstrong wrote: > Mark Walters writes: > >> +;; Compatability functions for emacs 23. >> + >> +(unless (fboundp 'setq-local) >> + (defmacro setq-local (var val) >> +`(set (make-local-variable ',var) ,val))) > > A