aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2014-02-05 19:33:43 +0200
committerEli Zaretskii2014-02-05 19:33:43 +0200
commita3c3a662eac241df992c68850c2031283b066053 (patch)
treebf23413c139cc23f81ce4fbcf46a820b0a93897b /src
parent6d48053b2121a1cb10d83aabf1ced59f03dda0e1 (diff)
downloademacs-a3c3a662eac241df992c68850c2031283b066053.tar.gz
emacs-a3c3a662eac241df992c68850c2031283b066053.zip
src/w32.c: Fix typos in commentary.
Diffstat (limited to 'src')
-rw-r--r--src/w32.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/w32.c b/src/w32.c
index 275b1e8d941..ebd1dff0b4d 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -1405,7 +1405,7 @@ w32_valid_pointer_p (void *p, int size)
1405 conversion back and forth from UTF-8 to UTF-16, then don't: first, 1405 conversion back and forth from UTF-8 to UTF-16, then don't: first,
1406 it was measured to take only a few microseconds on a not-so-fast 1406 it was measured to take only a few microseconds on a not-so-fast
1407 machine, and second, that's exactly what the ANSI APIs we used 1407 machine, and second, that's exactly what the ANSI APIs we used
1408 before do anyway, because they are just thin wrappers around the 1408 before did anyway, because they are just thin wrappers around the
1409 Unicode APIs.) 1409 Unicode APIs.)
1410 1410
1411 The variables file-name-coding-system and default-file-name-coding-system 1411 The variables file-name-coding-system and default-file-name-coding-system
@@ -1432,8 +1432,8 @@ w32_valid_pointer_p (void *p, int size)
1432 1432
1433 For the same reasons, no CRT function or Win32 API can be called 1433 For the same reasons, no CRT function or Win32 API can be called
1434 directly in Emacs sources, without either converting the file 1434 directly in Emacs sources, without either converting the file
1435 name sfrom UTF-8 to either UTF-16 or ANSI codepage, or going 1435 names from UTF-8 to UTF-16 or ANSI codepage, or going through
1436 through some shadowing function defined here. 1436 some shadowing function defined here.
1437 1437
1438 . Environment variables stored in Vprocess_environment are encoded 1438 . Environment variables stored in Vprocess_environment are encoded
1439 in the ANSI codepage, so if getenv/egetenv is used for a variable 1439 in the ANSI codepage, so if getenv/egetenv is used for a variable
@@ -1454,7 +1454,7 @@ w32_valid_pointer_p (void *p, int size)
1454 . Running subprocesses in non-ASCII directories and with non-ASCII 1454 . Running subprocesses in non-ASCII directories and with non-ASCII
1455 file arguments is limited to the current codepage (even though 1455 file arguments is limited to the current codepage (even though
1456 Emacs is perfectly capable of finding an executable program file 1456 Emacs is perfectly capable of finding an executable program file
1457 even in a directory whose name cannot be encoded in the current 1457 in a directory whose name cannot be encoded in the current
1458 codepage). This is because the command-line arguments are 1458 codepage). This is because the command-line arguments are
1459 encoded _before_ they get to the w32-specific level, and the 1459 encoded _before_ they get to the w32-specific level, and the
1460 encoding is not known in advance (it doesn't have to be the 1460 encoding is not known in advance (it doesn't have to be the
@@ -1472,8 +1472,8 @@ w32_valid_pointer_p (void *p, int size)
1472 the current codepage. 1472 the current codepage.
1473 1473
1474 . Turning on w32-unicode-filename on Windows 9X (if it at all 1474 . Turning on w32-unicode-filename on Windows 9X (if it at all
1475 works) requires UNICOWS.DLL, which is currently loaded only in a 1475 works) requires UNICOWS.DLL, which is thus a requirement even in
1476 GUI session. */ 1476 non-GUI sessions, something the we previously avoided. */
1477 1477
1478 1478
1479 1479