From 2f23995be2e243c3ae2acd628e78a0f2a61f1c6d Mon Sep 17 00:00:00 2001
From: Martin Kuehl <martin.kuehl@gmail.com>
Date: Wed, 25 Mar 2009 18:46:41 +0100
Subject: [PATCH 1/7] =?utf-8?q?=E2=80=A2=20Fully=20qualify=20call=20to=20TextMate::Process.run?=
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit

---
 lib/tm/executor.rb |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/tm/executor.rb b/lib/tm/executor.rb
index 7d7cc2f..9f03424 100644
--- a/lib/tm/executor.rb
+++ b/lib/tm/executor.rb
@@ -84,7 +84,7 @@ module TextMate
         # should do in that case -- Alex Ross
         TextMate.require_cmd(args[0]) unless args[0].is_a?(Array)
         
-        out, err = Process.run(args[0], options[:version_args], :interactive_input => false)
+        out, err = TextMate::Process.run(args[0], options[:version_args], :interactive_input => false)
         version = $1 if options[:version_regex] =~ (out + err)
         
         tm_error_fd_read, tm_error_fd_write = ::IO.pipe
-- 
1.6.1.3

