summaryrefslogtreecommitdiff
path: root/Master/bin/win32/lua2dox_filter.bat
diff options
context:
space:
mode:
Diffstat (limited to 'Master/bin/win32/lua2dox_filter.bat')
-rwxr-xr-xMaster/bin/win32/lua2dox_filter.bat69
1 files changed, 0 insertions, 69 deletions
diff --git a/Master/bin/win32/lua2dox_filter.bat b/Master/bin/win32/lua2dox_filter.bat
deleted file mode 100755
index a75d2eb6746..00000000000
--- a/Master/bin/win32/lua2dox_filter.bat
+++ /dev/null
@@ -1,69 +0,0 @@
-@echo off
-
-:init
-
- rem Avoid clobbering anyone else's variables
-
- setlocal
-
- rem Safety precaution against awkward paths
-
- cd /d "%~dp0"
-
-:main
-
- call :set_lua
- if ERRORLEVEL 1 (
- goto :end
- )
-
- set BASENAME=%~n0
- set DIRNAME=%~dp0
-
- set LUASCRIPT=%DIRNAME%\lua2dox.lua %BASENAME%
-
- if not [%*] == [] (
- echo %*
- )
- %EXE% %LUASCRIPT% %*
-
- goto :end
-
-:set_lua
-
- call :exe-search texlua
-
- if not defined EXE (
- call :exe-search lua
- )
-
- if not defined EXE (
- echo No Lua interpreter available
- exit /b 1
- )
-
- goto :EOF
-
-:exe-search
-
- set PATHCOPY=%PATH%
-
-:exe-search-loop
-
- rem Search for a binary
-
- if defined EXE goto :EOF
-
- for /f "delims=; tokens=1,2*" %%I in ("%PATHCOPY%") do (
- if exist "%%I\%1.exe" (
- set EXE=%1
- )
- set PATHCOPY=%%J;%%K
- )
- if not "%PATHCOPY%" == ";" goto :exe-search-loop
-
- exit /b 1
-
- goto :EOF
-
-:end \ No newline at end of file