diff --git a/src/support/ChangeLog b/src/support/ChangeLog index 640e9b1150..360d90e932 100644 --- a/src/support/ChangeLog +++ b/src/support/ChangeLog @@ -1,3 +1,8 @@ + +2002-07-18 André Pönitz + + * filetools.C (LibScriptSearch): bug fix + 2002-07-17 Jean-Marc Lasgouttes * filetools.C (LyXReadLink): add bool 'resolve' to return link @@ -16,7 +21,7 @@ 2002-06-20 Herbert Voss - * filetools.[C]: (readExtFromContents) add support for + * filetools.[C] (readExtFromContents): add support for (x)fig format images 2002-06-26 André Pönitz diff --git a/src/support/filetools.C b/src/support/filetools.C index d45d317612..11057b8ddd 100644 --- a/src/support/filetools.C +++ b/src/support/filetools.C @@ -337,7 +337,7 @@ string const LibScriptSearch(string const & command) { string script; string args = command; - split(args, script, ' '); + args = split(args, script, ' '); script = LibFileSearch("scripts", script); if (script.empty()) return command;