From: Georg Baum Date: Sun, 25 Feb 2007 09:00:28 +0000 (+0000) Subject: * src/support/filetools.C X-Git-Tag: 1.6.10~10686 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=914e698b8d78075ed472b59027b965205162b80b;p=features.git * src/support/filetools.C (makeLatexName): Exclude ", otherwise we would trigger the same problem of unbalanced quotes as in bug 3266 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17336 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/support/filetools.C b/src/support/filetools.C index 2a9caa6867..a563df8805 100644 --- a/src/support/filetools.C +++ b/src/support/filetools.C @@ -120,7 +120,7 @@ string const makeLatexName(string const & file) // ok so we scan through the string twice, but who cares. string const keep = "abcdefghijklmnopqrstuvwxyz" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - "@!\"'()*+,-./0123456789:;<=>?[]`|"; + "@!'()*+,-./0123456789:;<=>?[]`|"; string::size_type pos = 0; while ((pos = name.find_first_not_of(keep, pos)) != string::npos)