~ubuntu-branches/ubuntu/trusty/terminator/trusty

« back to all changes in this revision

Viewing changes to debian/patches/01-fix-regexp-compilation.patch

  • Committer: Bazaar Package Importer
  • Author(s): Nicolas Valcárcel
  • Date: 2008-08-26 18:37:09 UTC
  • Revision ID: james.westby@ubuntu.com-20080826183709-6rircqwmbktuj4e7
Tags: 0.9-2ubuntu1
* Depend on libgtk2.0-bin (LP: #247430) 
* Modify Maintainer value to match the DebianMaintainerField
  specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
diff -Nur -x '*.orig' -x '*~' terminator-0.9/terminatorlib/terminatorterm.py terminator-0.9.new/terminatorlib/terminatorterm.py
2
 
--- terminator-0.9/terminatorlib/terminatorterm.py      2008-07-07 17:03:45.000000000 -0500
3
 
+++ terminator-0.9.new/terminatorlib/terminatorterm.py  2008-08-12 23:20:34.000000000 -0500
4
 
@@ -318,7 +318,7 @@
5
 
       pos = "bottom"
6
 
     return pos
7
 
 
8
 
-  def add_matches (self, lboundry="[[:<:]]", rboundry="[[:>:]]"):
9
 
+  def add_matches (self, lboundry="\\<", rboundry="\\>"):
10
 
     userchars = "-A-Za-z0-9"
11
 
     passchars = "-A-Za-z0-9,?;.:/!%$^*&~\"#'"
12
 
     hostchars = "-A-Za-z0-9"