aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.c
diff options
context:
space:
mode:
authorPaul Eggert2016-12-07 12:40:43 -0800
committerPaul Eggert2016-12-07 12:40:43 -0800
commitc5532f5a5c304134ecb0367997402c2935d6030c (patch)
treecff0c6b05099fcaa51dae8e1c042528cdb318925 /src/w32term.c
parent32b46fc82f1275d8e0c86340546db366dea48c8c (diff)
parent39809036d39711fb5d01105739dd301ac046b151 (diff)
downloademacs-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.c5
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'.
7188This variable is set to non-nil by default when Emacs runs on Windows 7188This variable is set to non-nil by default when Emacs runs on Windows
7189systems of the NT family, including W2K, XP, Vista, Windows 7 and 7189systems of the NT family, including W2K, XP, Vista, Windows 7 and
7190Windows 8. It is set to nil on Windows 9X. */); 7190Windows 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