View | Details | Raw Unified | Return to bug 245690 | Differences between
and this patch

Collapse All | Expand All

(-)files/patch-src_client.cpp (+13 lines)
Line 0 Link Here
1
--- src/client.cpp.orig	2020-04-20 09:11:15 UTC
2
+++ src/client.cpp
3
@@ -40,8 +40,8 @@ Client::Client(Window window, bool visib
4
     , title_(this,  "title", "")
5
     , tag_str_(this,  "tag", &Client::tagName)
6
     , window_id_str(this,  "winid", "")
7
-    , keyMask_(this,  "keymask", RegexStr::fromStr(""))
8
-    , keysInactive_(this,  "keys_inactive", RegexStr::fromStr(""))
9
+    , keyMask_(this,  "keymask", RegexStr::fromStr("^$"))
10
+    , keysInactive_(this,  "keys_inactive", RegexStr::fromStr("^$"))
11
     , pid_(this,  "pid", -1)
12
     , pseudotile_(this,  "pseudotile", false)
13
     , ewmhrequests_(this, "ewmhrequests", true)
(-)files/patch-src_keymanager.cpp (+11 lines)
Line 0 Link Here
1
--- src/keymanager.cpp.orig	2020-04-20 09:11:48 UTC
2
+++ src/keymanager.cpp
3
@@ -241,7 +241,7 @@ KeyManager::KeyMask::KeyMask(const Regex
4
 }
5
 
6
 KeyManager::KeyMask::KeyMask()
7
-    : regex_(RegexStr::fromStr(""))
8
+    : regex_(RegexStr::fromStr("^$"))
9
     , negated_(false)
10
 {
11
 }

Return to bug 245690