From 85ef7a8b30a54e9506df52ba706acc554f2785c6 Mon Sep 17 00:00:00 2001 From: James Whitehead II Date: Fri, 15 Oct 2010 21:27:14 +0100 Subject: [PATCH] Fix an issue where backslash could not be bound --- Clique.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Clique.lua b/Clique.lua index f50bfe1..cb2a9ba 100755 --- a/Clique.lua +++ b/Clique.lua @@ -315,8 +315,8 @@ function addon:GetClickAttributes(global) return table.concat(bits, "\n"), table.concat(rembits, "\n") end -local B_SET = [[self:SetBindingClick(true, "%s", self, "%s");]] -local B_CLR = [[self:ClearBinding("%s");]] +local B_SET = [[self:SetBindingClick(true, %q, self, %q);]] +local B_CLR = [[self:ClearBinding(%q);]] -- This function will create two attributes, the first being a "setup keybindings" -- script and the second being a "clear keybindings" script. -- 1.7.9.5