diff options
| author | Paul Eggert | 2016-12-07 12:40:43 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-12-07 12:40:43 -0800 |
| commit | c5532f5a5c304134ecb0367997402c2935d6030c (patch) | |
| tree | cff0c6b05099fcaa51dae8e1c042528cdb318925 /src/w32term.c | |
| parent | 32b46fc82f1275d8e0c86340546db366dea48c8c (diff) | |
| parent | 39809036d39711fb5d01105739dd301ac046b151 (diff) | |
| download | emacs-c5532f5a5c304134ecb0367997402c2935d6030c.tar.gz emacs-c5532f5a5c304134ecb0367997402c2935d6030c.zip | |
Merge from origin/emacs-25
3980903 ; Update ChangeLog.2, etc/AUTHORS and ldef-boot.el for Emacs ...
5878abf Fix 'expand-file-name' during startup on MS-Windows
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/w32term.c b/src/w32term.c index ae0f741f24c..23475445e07 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -7188,7 +7188,10 @@ specified by `file-name-coding-system'. | |||
| 7188 | This variable is set to non-nil by default when Emacs runs on Windows | 7188 | This variable is set to non-nil by default when Emacs runs on Windows |
| 7189 | systems of the NT family, including W2K, XP, Vista, Windows 7 and | 7189 | systems of the NT family, including W2K, XP, Vista, Windows 7 and |
| 7190 | Windows 8. It is set to nil on Windows 9X. */); | 7190 | Windows 8. It is set to nil on Windows 9X. */); |
| 7191 | w32_unicode_filenames = 0; | 7191 | if (os_subtype == OS_9X) |
| 7192 | w32_unicode_filenames = 0; | ||
| 7193 | else | ||
| 7194 | w32_unicode_filenames = 1; | ||
| 7192 | 7195 | ||
| 7193 | 7196 | ||
| 7194 | /* FIXME: The following variable will be (hopefully) removed | 7197 | /* FIXME: The following variable will be (hopefully) removed |