aboutsummaryrefslogtreecommitdiffstats
path: root/etc/PROBLEMS
diff options
context:
space:
mode:
authorGlenn Morris2014-07-12 10:53:29 -0700
committerGlenn Morris2014-07-12 10:53:29 -0700
commitb39c4d7b33952e0125fbefbcb3d9f528b6570f40 (patch)
tree17fd0630dacfe29b0c2486b9f5c923293e872a70 /etc/PROBLEMS
parent2a0bae50e3611a6bd2d584f7a85677b74f1aa71b (diff)
parentfb02552638b0c653bfc3d269d879fdffba37bd31 (diff)
downloademacs-b39c4d7b33952e0125fbefbcb3d9f528b6570f40.tar.gz
emacs-b39c4d7b33952e0125fbefbcb3d9f528b6570f40.zip
Merge from emacs-24; up to 2014-06-22T05:00:14Z!dmantipov@yandex.ru
Diffstat (limited to 'etc/PROBLEMS')
-rw-r--r--etc/PROBLEMS32
1 files changed, 31 insertions, 1 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index 98e19d3e760..ed41ddf65a3 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -1931,6 +1931,16 @@ MSDN:
1931includes a short description of MSLU and a link where it can be 1931includes a short description of MSLU and a link where it can be
1932downloaded. 1932downloaded.
1933 1933
1934** Emacs refuses to start on Windows 9X because ctime64 function is missing
1935
1936This is a sign that Emacs was compiled with MinGW runtime version
19374.0.x or later. These versions of runtime call in their startup code
1938the ctime64 function, which does not exist in MSVCRT.DLL, the C
1939runtime shared library, distributed with Windows 9X.
1940
1941A workaround is to build Emacs with MinGW runtime 3.x (the latest
1942version is 3.20).
1943
1934** A few seconds delay is seen at startup and for many file operations 1944** A few seconds delay is seen at startup and for many file operations
1935 1945
1936This happens when the Net Logon service is enabled. During Emacs 1946This happens when the Net Logon service is enabled. During Emacs
@@ -1965,6 +1975,26 @@ Another possibility is to rebuild Emacs with the -shared-libgcc
1965switch, which will force Emacs to load libgcc_s_dw2-1.dll on startup, 1975switch, which will force Emacs to load libgcc_s_dw2-1.dll on startup,
1966ahead of any optional DLLs loaded on-demand later in the session. 1976ahead of any optional DLLs loaded on-demand later in the session.
1967 1977
1978** File selection dialog opens in incorrect directories
1979
1980Invoking the file selection dialog on Windows 7 or later shows a
1981directory that is different from what was passed to `read-file-name'
1982or `x-file-dialog' via their arguments.
1983
1984This is due to a deliberate change in behavior of the file selection
1985dialogs introduced in Windows 7. It is explicitly described in the
1986MSDN documentation of the GetOpenFileName API used by Emacs to pop up
1987the file selection dialog. For the details, see
1988
1989 http://msdn.microsoft.com/en-us/library/windows/desktop/ms646839%28v=vs.85%29.aspx
1990
1991The dialog shows the last directory in which the user selected a file
1992in a previous invocation of the dialog with the same initial
1993directory.
1994
1995You can reset this "memory" of that directory by invoking the file
1996selection dialog with a different initial directory.
1997
1968** PATH can contain unexpanded environment variables 1998** PATH can contain unexpanded environment variables
1969 1999
1970Old releases of TCC (version 9) and 4NT (up to version 8) do not correctly 2000Old releases of TCC (version 9) and 4NT (up to version 8) do not correctly
@@ -2098,7 +2128,7 @@ The function set-time-zone-rule gives incorrect results for many
2098non-US timezones. This is due to over-simplistic handling of 2128non-US timezones. This is due to over-simplistic handling of
2099daylight savings switchovers by the Windows libraries. 2129daylight savings switchovers by the Windows libraries.
2100 2130
2101** Files larger than 4GB report wrong size 2131** Files larger than 4GB report wrong size in a 32-bit Windows build
2102 2132
2103Files larger than 4GB cause overflow in the size (represented as a 2133Files larger than 4GB cause overflow in the size (represented as a
210432-bit integer) reported by `file-attributes'. This affects Dired as 213432-bit integer) reported by `file-attributes'. This affects Dired as