about summary refs log tree commit diff stats
path: root/source_file.lua
diff options
context:
space:
mode:
Diffstat (limited to 'source_file.lua')
-rw-r--r--source_file.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/source_file.lua b/source_file.lua
index 54624b9..194ef9b 100644
--- a/source_file.lua
+++ b/source_file.lua
@@ -206,6 +206,7 @@ function is_absolute_path(path)
     -- POSIX systems permit backslashes in filenames
     return path:sub(1,1) == '/'
   elseif os_path_separator == '\\' then
+    if path:sub(2,2) == ':' then return true end  -- DOS drive letter followed by volume separator
     local f = path:sub(1,1)
     return f == '/' or f == '\\'
   else