From: João Távora Date: Sun, 12 Nov 2017 12:32:25 +0000 (+0000) Subject: Unbreak interactive run of a flymake test (bug#29267) X-Git-Tag: emacs-26.0.91~322 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe85ce1e16fbdb67d9b241300a2b5baff1bf0164;p=emacs.git Unbreak interactive run of a flymake test (bug#29267) See https://debbugs.gnu.org/cgi/bugreport.cgi?bug=19657#20 for the technique used here. * test/lisp/progmodes/flymake-tests.el (ruby-backend): Let-bind abbreviated-home-dir. --- diff --git a/test/lisp/progmodes/flymake-tests.el b/test/lisp/progmodes/flymake-tests.el index bc194b69ccb..8eb180a5130 100644 --- a/test/lisp/progmodes/flymake-tests.el +++ b/test/lisp/progmodes/flymake-tests.el @@ -124,7 +124,10 @@ SEVERITY-PREDICATE is used to setup ;; Some versions of ruby fail if HOME doesn't exist (bug#29187). (let* ((tempdir (make-temp-file "flymake-tests-ruby" t)) (process-environment (cons (format "HOME=%s" tempdir) - process-environment))) + process-environment)) + ;; And see https://debbugs.gnu.org/cgi/bugreport.cgi?bug=19657#20 + ;; for this particular yuckiness + (abbreviated-home-dir nil)) (unwind-protect (flymake-tests--with-flymake ("test.rb") (flymake-goto-next-error)