Merge lp:~timo-jyrinki/compiz-core/blacklist_remove_double_escape_from_xml2-0.9.7 into lp:compiz-core

Proposed by Timo Jyrinki
Status: Merged
Approved by: Łukasz Zemczak
Approved revision: 3133
Merged at revision: 3133
Proposed branch: lp:~timo-jyrinki/compiz-core/blacklist_remove_double_escape_from_xml2-0.9.7
Merge into: lp:compiz-core
Diff against target: 25 lines (+2/-2)
2 files modified
plugins/opengl/opengl.xml.in (+1/-1)
plugins/opengl/src/blacklist/tests/test-blacklist.cpp (+1/-1)
To merge this branch: bzr merge lp:~timo-jyrinki/compiz-core/blacklist_remove_double_escape_from_xml2-0.9.7
Reviewer Review Type Date Requested Status
Łukasz Zemczak Approve
Review via email: mp+140601@code.launchpad.net

Commit message

Remove problematic double escaping ('\\.') from the unredirect_driver_blacklist default. (LP: #1091103)

Description of the change

Remove problematic double escaping ('\\.') from the unredirect_driver_blacklist default. (LP: #1091103)

Same as https://code.launchpad.net/~timo-jyrinki/compiz/blacklist_remove_double_escape_from_xml2/+merge/140194 for lp:compiz

To post a comment you must log in.
Revision history for this message
Łukasz Zemczak (sil2100) wrote :

The same as for lp:compiz. +1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/opengl/opengl.xml.in'
2--- plugins/opengl/opengl.xml.in 2012-12-13 07:42:28 +0000
3+++ plugins/opengl/opengl.xml.in 2012-12-19 08:23:21 +0000
4@@ -46,7 +46,7 @@
5 <option name="unredirect_driver_blacklist" type="string">
6 <_short>Unredirect Driver Blacklist</_short>
7 <_long>If non-empty, specifies a POSIX (extended) regular expression to match against the OpenGL driver strings (newline separated): "GL_VENDOR\nGL_RENDERER\nGL_VERSION". If the regular expression matches a substring of that concatenation then no windows will ever be unredirected while using that particular graphics driver.</_long>
8- <default>(nouveau|Intel).*Mesa 8\\.0</default>
9+ <default>(nouveau|Intel).*Mesa 8.0</default>
10 </option>
11 </options>
12 </plugin>
13
14=== modified file 'plugins/opengl/src/blacklist/tests/test-blacklist.cpp'
15--- plugins/opengl/src/blacklist/tests/test-blacklist.cpp 2012-12-13 07:42:28 +0000
16+++ plugins/opengl/src/blacklist/tests/test-blacklist.cpp 2012-12-19 08:23:21 +0000
17@@ -28,7 +28,7 @@
18
19 using namespace compiz::opengl;
20
21-static const char *recommendedRegex = "(nouveau|Intel).*Mesa 8\\.0";
22+static const char *recommendedRegex = "(nouveau|Intel).*Mesa 8.0";
23
24 TEST(DriverBlacklist, QuantalIntelIsGood)
25 {

Subscribers

People subscribed via source and target branches