about summary refs log tree commit diff stats
path: root/log_browser.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-09-15 23:56:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-09-15 23:56:49 -0700
commit09c76c82c2a415839ad0d50d9fc14e883caeae6e (patch)
tree104401a62623498d9cf9eabe50159e6eec1668f3 /log_browser.lua
parent1a88b4a2907a78fd4a1febf32c74d0305aff6ba0 (diff)
parent715c6fd32fadf8b14f4755cc31bacfb21c7f7dac (diff)
downloadtext.love-09c76c82c2a415839ad0d50d9fc14e883caeae6e.tar.gz
Merge lines.love
Diffstat (limited to 'log_browser.lua')
-rw-r--r--log_browser.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/log_browser.lua b/log_browser.lua
index 078db06..6432d85 100644
--- a/log_browser.lua
+++ b/log_browser.lua
@@ -35,7 +35,6 @@ function log_browser.parse(State)
       if rest then
         line.data = rest
       end
-      line.filename = guess_source(line.filename)
       line.line_number = tonumber(line.line_number)
       if line.data:sub(1,1) == '{' then
         local data = json.decode(line.data)
@@ -75,15 +74,6 @@ function table.shallowcopy(x)
   return {unpack(x)}
 end
 
-function guess_source(filename)
-  local possible_source = filename:gsub('%.lua$', '%.splua')
-  if file_exists(possible_source) then
-    return possible_source
-  else
-    return filename
-  end
-end
-
 function log_browser.draw(State, hide_cursor)
   assert(#State.lines == #State.line_cache)
   local mouse_line_index = log_browser.line_index(State, App.mouse_x(), App.mouse_y())