diff options
author | Vladimir Volovich <vvv@vsu.ru> | 2008-04-18 09:32:34 +0000 |
---|---|---|
committer | Vladimir Volovich <vvv@vsu.ru> | 2008-04-18 09:32:34 +0000 |
commit | 3abdf92b5996bf85ec6e8232421518e3b6a55c97 (patch) | |
tree | dab9305f813c9ab4ebf6777fc392081a71157583 /Build | |
parent | f5844c2d1f07f3130cf3759c2391d747173fb92e (diff) |
idxstyle.lsp: string-to-searchlist:
there was no support for WIN32 delimiters and (searchpath) function did not work on woe32:
[1]> (searchpath ".")
*** - APPLY: too few arguments given to POSITION
The following restarts are available:
ABORT :R1 Abort main loop
git-svn-id: svn://tug.org/texlive/trunk@7492 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/utils/xindy/src/idxstyle.lsp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Build/source/utils/xindy/src/idxstyle.lsp b/Build/source/utils/xindy/src/idxstyle.lsp index 299d513aad9..9e406d884d5 100644 --- a/Build/source/utils/xindy/src/idxstyle.lsp +++ b/Build/source/utils/xindy/src/idxstyle.lsp @@ -784,6 +784,7 @@ NIL in cases where no switch keyword was found in EXPR. (return (push :default paths))) (setq pos (position #+UNIX #\: #+OS/2 #\; + #+WIN32 #\; str)) (if pos (progn |