From 09fdd0ee27af8dfedf4e6f1979b2acc87cc5475d Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Thu, 10 Nov 2011 19:48:51 +0100 Subject: [PATCH] Fix the default config When I cherry-picked commit 2785d695ce from master, I didn't notice that it uses connect_signal() which is add_signal() in 3.4-land. That was half a month ago. Since then, no one complaint about this, so no one hit the problem yet? Ok, it is in the default config which I guess isn't what the people who use git/3.4 run. Still, would have been nice to know that people actually test the mess which I produce. :-( Signed-off-by: Uli Schlachter --- awesomerc.lua.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesomerc.lua.in b/awesomerc.lua.in index b7536af0e..c48aa139a 100644 --- a/awesomerc.lua.in +++ b/awesomerc.lua.in @@ -19,7 +19,7 @@ end -- Handle runtime errors after startup do local in_error = false - awesome.connect_signal("debug::error", function (err) + awesome.add_signal("debug::error", function (err) -- Make sure we don't go into an endless error loop if in_error then return end in_error = true