We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b43a665 commit 7ec1df9Copy full SHA for 7ec1df9
src/StringOps.cxx
@@ -146,13 +146,11 @@ namespace Timbl {
146
if ( pos == string::npos ){
147
result += filename;
148
}
149
+ else if ( keep_origpath ){
150
+ result += filename;
151
+ }
152
else {
- if ( keep_origpath ){
- result += filename;
- }
153
- else {
154
- result += filename.substr( pos+1 );
155
+ result += filename.substr( pos+1 );
156
157
return result;
158
0 commit comments