Comment 3 for bug 191651

Revision history for this message
Vincent Ladeuil (vila) wrote : Re: [Bug 191651] Re: bazaar.conf::editor line quoting is not preserved correctly

>>>>> "Jari" == Jari Aalto <email address hidden> writes:

    >> editor = '''emacs --no-site-file -q -nw --eval "(setq backup-inhibited
    Jari> t)"'''

    Jari> Unfortunately no effect. Same result.

As a workaround, what about:

in .emacs
(defun my-inhibit-backup ()
    (setq backup-inhibited t))

and then :

editor = emacs --no-site-file -q -nw -f my-inhibit-backup