From 052f689daa275a7b8991950e7c07d9fb185db80f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Sat, 25 Sep 2010 14:25:19 +0000 Subject: [PATCH] filetools.cpp: fix #6916 - round parentheses are valid in filenames (they are even standard in paths in WinXP 64bit); they should also make no problems on UNIX systems git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35499 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/filetools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/filetools.cpp b/src/support/filetools.cpp index 4379624383..8f67b59df8 100644 --- a/src/support/filetools.cpp +++ b/src/support/filetools.cpp @@ -74,7 +74,7 @@ bool isSGMLFileName(string const & filename) bool isValidLaTeXFileName(string const & filename) { - string const invalid_chars("#$%{}()[]\"^"); + string const invalid_chars("#$%{}[]\"^"); return filename.find_first_of(invalid_chars) == string::npos; } -- 2.39.5