Re: [PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-09-30 Thread Tomi Ollila
On Tue, Sep 29 2015, Tomi Ollila wrote: > On Mon, Sep 28 2015, David Bremner wrote: > >> Tomi Ollila writes: >> >> >>> if [ -n "$AUTO_DAEMON" -a -z "$CREATE_FRAME" ]; then >>> echo "$0: --auto-daemon is only applicable with

Re: [PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-09-29 Thread Tomi Ollila
On Mon, Sep 28 2015, David Bremner wrote: > Tomi Ollila writes: > > >> if [ -n "$AUTO_DAEMON" -a -z "$CREATE_FRAME" ]; then >> echo "$0: --auto-daemon is only applicable with --create-frame." >&2 >> exit 1 >> fi >> >> without this one may

Re: [PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-09-28 Thread David Bremner
Tomi Ollila writes: > if [ -n "$AUTO_DAEMON" -a -z "$CREATE_FRAME" ]; then > echo "$0: --auto-daemon is only applicable with --create-frame." >&2 > exit 1 > fi > > without this one may execute ./notmuch-emacs-mua --client --auto-daemon > which yields starting

Re: [PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-08-28 Thread Jani Nikula
On Wed, 26 Aug 2015, Tomi Ollila tomi.oll...@iki.fi wrote: On Sat, Aug 15 2015, Jani Nikula j...@nikula.org wrote: Make the default behaviour for --client the same as emacsclient default: do not create a new frame. Add a new option --create-frame, passing the same option to emacsclient to

Re: [PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-08-28 Thread Tomi Ollila
On Fri, Aug 28 2015, Jani Nikula j...@nikula.org wrote: On Wed, 26 Aug 2015, Tomi Ollila tomi.oll...@iki.fi wrote: On Sat, Aug 15 2015, Jani Nikula j...@nikula.org wrote: Make the default behaviour for --client the same as emacsclient default: do not create a new frame. Add a new option

Re: [PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-08-26 Thread Tomi Ollila
On Sat, Aug 15 2015, Jani Nikula j...@nikula.org wrote: Make the default behaviour for --client the same as emacsclient default: do not create a new frame. Add a new option --create-frame, passing the same option to emacsclient to create a frame. --- v2: fix killing frame with

[PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-08-15 Thread Jani Nikula
Make the default behaviour for --client the same as emacsclient default: do not create a new frame. Add a new option --create-frame, passing the same option to emacsclient to create a frame. --- v2: fix killing frame with --create-frame v3: fix --create-frame w/o --client parameter check v4:

[PATCH v4 5/5] notmuch-emacs-mua: do not create a frame by default with --client

2015-08-15 Thread Jani Nikula
Make the default behaviour for --client the same as emacsclient default: do not create a new frame. Add a new option --create-frame, passing the same option to emacsclient to create a frame. --- v2: fix killing frame with --create-frame v3: fix --create-frame w/o --client parameter check v4: