diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/hldiff.py | 2 | ||||
-rwxr-xr-x | contrib/plaintext.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/contrib/hldiff.py b/contrib/hldiff.py index 5f660fd7..f3cfd202 100755 --- a/contrib/hldiff.py +++ b/contrib/hldiff.py @@ -3,13 +3,11 @@ from colorama import Fore, Style import sys import re -ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]') stat_re = re.compile(r'(| \d+ )(\+*)(\-*)') lines_re = re.compile(r'@@ (-\d+,\d+ \+\d+,\d+) @@') sys.stdin.reconfigure(encoding='utf-8', errors='ignore') patch = sys.stdin.read().replace("\r\n", "\n") -patch = ansi_escape.sub('', patch) hit_diff = False for line in patch.split("\n"): diff --git a/contrib/plaintext.py b/contrib/plaintext.py index 522055bf..d46991a7 100755 --- a/contrib/plaintext.py +++ b/contrib/plaintext.py @@ -5,7 +5,6 @@ import re # TODO: Wrap text to terminal width? -ansi_escape = re.compile(r'\x1B\[[0-?]*[ -/]*[@-~]') # TODO: I guess this might vary from MUA to MUA. I've definitely seen localized # versions in the wild quote_prefix_re = re.compile(r"On .*, .* wrote:") @@ -13,7 +12,6 @@ quote_re = re.compile(r">+") sys.stdin.reconfigure(encoding='utf-8', errors='ignore') mail = sys.stdin.read().replace("\r\n", "\n") -mail = ansi_escape.sub('', mail) for line in mail.split("\n"): if quote_re.match(line) or quote_prefix_re.match(line): |