dtas-all
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] dtas-tl: reto: force ASCII-8BIT regexp match


From: Eric Wong
Subject: [PATCH] dtas-tl: reto: force ASCII-8BIT regexp match
Date: Mon, 3 Jul 2023 01:11:26 +0000

POSIX path names aren't guaranteed to be UTF-8, and dtas should
be capable of playing non-UTF-8 path names from read-only legacy
FSes.
---
 bin/dtas-tl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/dtas-tl b/bin/dtas-tl
index 66e0612..c7f4c83 100755
--- a/bin/dtas-tl
+++ b/bin/dtas-tl
@@ -188,9 +188,9 @@ def add_after(c, argv, last_id)
   re = ARGV[1]
   time = ARGV[2]
   re = Regexp.quote(re) if fixed
-  re = ignorecase ? %r{#{re}}i : %r{#{re}}
+  re = ignorecase ? %r{#{re}}in : %r{#{re}}n
   each_track(c) do |line|
-    line.sub!(/\A(\d+)=/, '')
+    line.sub!(/\A(\d+)=/n, '') or abort "unexpected line=#{line.inspect}\n"
     track_id = $1
     if re =~ line
       req = %W(tl goto #{track_id})



reply via email to

[Prev in Thread] Current Thread [Next in Thread]