From e4329f3ae748c37208178a43508a7a1d4314f861 Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Fri, 29 Mar 2013 18:05:01 -0700 Subject: [PATCH] Fix the build (oops) --- kill.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kill.cpp b/kill.cpp index 9816e4591..6ae27c519 100644 --- a/kill.cpp +++ b/kill.cpp @@ -103,7 +103,7 @@ void kill_add(const wcstring &str) const env_var_t disp_wstr = env_get_string(L"DISPLAY"); if (!disp_wstr.missing()) { - escaped_str = escape_string(str, ESCAPE_ALL); + escaped_str = escape(str.c_str(), ESCAPE_ALL); cmd.assign(L"echo -n "); cmd.append(escaped_str); cmd.append(L" | xsel -i -b");