another stupid bug

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@281 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 1999-11-03 12:45:11 +00:00
parent 37e0eedd21
commit 73d5f55a00

View File

@ -83,7 +83,7 @@ string SpaceLess(string const & file)
string::size_type pos = 0;
while ((pos = name.find_first_not_of(keep, pos)) != string::npos) {
name[pos] = '_';
name[pos++] = '_';
}
return AddName(path, name);
}