From: Tomi Ollila Date: Sat, 28 May 2016 11:06:04 +0000 (+0300) Subject: notmuch-emacs-mua: escape $PWD (and cd always) X-Git-Tag: 0.23_rc0~85 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=65c219560f33d41f094a204c631fb5aa0ff3395e;hp=65c219560f33d41f094a204c631fb5aa0ff3395e;p=notmuch notmuch-emacs-mua: escape $PWD (and cd always) Escaping $PWD makes this work in directories like 'foo"bar'... Cd'ing always makes the working directory to be consistent whether --body option was used or not (when using emacsclient, but cd'ing when using emacs does not cause any harm). Note that documentation of `insert-file` expects programs to call `insert-file-contents` instead. In our simple case `insert-file` works better as it does some good checks that we'd have to implement ourselves. Look lisp/files.el in emacs sources for more information. ---