Changeset 3560 in kBuild
- Timestamp:
- Mar 8, 2022 9:38:30 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sed/sed/sed.c
r3554 r3560 138 138 fprintf(out, _(" -r, --regexp-extended\n\ 139 139 use extended regular expressions in the script.\n")); 140 fprintf(out, PERL_HELP);140 fprintf(out, "%s", PERL_HELP); 141 141 fprintf(out, _(" -s, --separate\n\ 142 142 consider files as separate rather than as a single continuous\n\ … … 297 297 #ifndef CONFIG_WITHOUT_O_LANG_C 298 298 case 'L': 299 # ifdef KBUILD_OS_WINDOWS 299 300 locale = setlocale (LC_ALL, "C"); 300 301 if (getenv("KMK_SED_CODEPAGE_DEBUG")) 301 302 fprintf (stderr, "kmk_sed: codepage=%u locale=%s ACP=%u\n", 302 303 get_crt_codepage(), locale, get_ansi_codepage()); 304 # else 305 setlocale (LC_ALL, "C"); 306 # endif 303 307 initialize_mbcs (); 304 308 # if ENABLE_NLS … … 414 418 case 'h': 415 419 usage(0); 420 break; 416 421 default: 417 422 usage(4);
Note:
See TracChangeset
for help on using the changeset viewer.