Commit d07e901c authored by Dimitrie O. Paun's avatar Dimitrie O. Paun Committed by Alexandre Julliard

Remove the -L wrc option, as no automatic fudging of filenames can

ever be correct.
parent 221ffc5e
...@@ -2694,11 +2694,6 @@ static string_t *make_filename(string_t *str) ...@@ -2694,11 +2694,6 @@ static string_t *make_filename(string_t *str)
*cptr = '/'; *cptr = '/';
} }
/* Convert to lower case. Seems to be reasonable to do */
for(cptr = str->str.cstr; !leave_case && *cptr; cptr++)
{
*cptr = tolower(*cptr);
}
return str; return str;
} }
......
...@@ -104,7 +104,6 @@ static char usage[] = ...@@ -104,7 +104,6 @@ static char usage[] =
" -I path Set include search dir to path (multiple -I allowed)\n" " -I path Set include search dir to path (multiple -I allowed)\n"
" -J Do not search the standard include path\n" " -J Do not search the standard include path\n"
" -l lan Set default language to lan (default is neutral {0, 0})\n" " -l lan Set default language to lan (default is neutral {0, 0})\n"
" -L Leave case of embedded filenames as is\n"
" -m Do not remap numerical resource IDs\n" " -m Do not remap numerical resource IDs\n"
" -n Do not generate .s file\n" " -n Do not generate .s file\n"
" -N Do not preprocess input\n" " -N Do not preprocess input\n"
...@@ -252,12 +251,6 @@ int pedantic = 0; ...@@ -252,12 +251,6 @@ int pedantic = 0;
int auto_register = 0; int auto_register = 0;
/* /*
* Set when the case of embedded filenames should not be converted
* to lower case (-L option)
*/
int leave_case = 0;
/*
* The output byte-order of resources (set with -B) * The output byte-order of resources (set with -B)
*/ */
int byteorder = WRC_BO_NATIVE; int byteorder = WRC_BO_NATIVE;
...@@ -434,9 +427,6 @@ int main(int argc,char *argv[]) ...@@ -434,9 +427,6 @@ int main(int argc,char *argv[])
currentlanguage = new_language(PRIMARYLANGID(lan), SUBLANGID(lan)); currentlanguage = new_language(PRIMARYLANGID(lan), SUBLANGID(lan));
} }
break; break;
case 'L':
leave_case = 1;
break;
case 'm': case 'm':
remap = 0; remap = 0;
break; break;
......
...@@ -64,7 +64,6 @@ extern int create_s; ...@@ -64,7 +64,6 @@ extern int create_s;
extern DWORD codepage; extern DWORD codepage;
extern int pedantic; extern int pedantic;
extern int auto_register; extern int auto_register;
extern int leave_case;
extern int byteorder; extern int byteorder;
extern int preprocess_only; extern int preprocess_only;
extern int no_preprocess; extern int no_preprocess;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment