aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2010-07-20 20:32:42 +0200
committerJuanma Barranquero2010-07-20 20:32:42 +0200
commit0a46152e2e184a052bea14f0caabba3206bf9169 (patch)
treee0dfa583c1684e43f917c184d130a51168803168
parent9a6063e2d067352977171b9dd22bd99594d51007 (diff)
downloademacs-0a46152e2e184a052bea14f0caabba3206bf9169.tar.gz
emacs-0a46152e2e184a052bea14f0caabba3206bf9169.zip
* PROBLEMS: Add note about use of backslashes in Windows paths.
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/PROBLEMS18
2 files changed, 20 insertions, 2 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 923659fb478..ee1915245a0 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12010-07-20 Juanma Barranquero <lekktu@gmail.com>
2
3 * PROBLEMS: Add note about use of backslashes in Windows paths.
4
12010-07-19 Juanma Barranquero <lekktu@gmail.com> 52010-07-19 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * NEWS: Mention --enable-checking is now supported on Windows. 7 * NEWS: Mention --enable-checking is now supported on Windows.
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index e6174b5edc6..2fc0e29b30f 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -1037,7 +1037,7 @@ into Meta. This is because of the great importance of Meta in Emacs.
1037 1037
1038This happens sometimes when using Metacity. Resizing Emacs or ALT-Tab:bing 1038This happens sometimes when using Metacity. Resizing Emacs or ALT-Tab:bing
1039makes the system unresponsive to the mouse or the keyboard. Killing Emacs 1039makes the system unresponsive to the mouse or the keyboard. Killing Emacs
1040or shifting out from X11 and back again usually cures it (i.e. Ctrl-Alt-F1 1040or shifting out from X11 and back again usually cures it (i.e. Ctrl-Alt-F1
1041and then Alt-F7). A bug for it is here: 1041and then Alt-F7). A bug for it is here:
1042https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/231034. 1042https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/231034.
1043Note that a permanent fix seems to be to disable "assistive technologies". 1043Note that a permanent fix seems to be to disable "assistive technologies".
@@ -1514,7 +1514,7 @@ One way to cure this is to disable flow control on the local host
1514(the one running rlogin, not the one running rlogind) using the 1514(the one running rlogin, not the one running rlogind) using the
1515stty command, before starting the rlogin process. On many systems, 1515stty command, before starting the rlogin process. On many systems,
1516"stty start u stop u" will do this. On some systems, use 1516"stty start u stop u" will do this. On some systems, use
1517"stty -ixon" instead. 1517"stty -ixon" instead.
1518 1518
1519Some versions of tcsh will prevent even this from working. One way 1519Some versions of tcsh will prevent even this from working. One way
1520around this is to start another shell before starting rlogin, and 1520around this is to start another shell before starting rlogin, and
@@ -2433,6 +2433,20 @@ several workarounds for this problem:
2433 2. Install the latest Windows SDK. 2433 2. Install the latest Windows SDK.
2434 3. Replace emacs.ico with an older or edited icon. 2434 3. Replace emacs.ico with an older or edited icon.
2435 2435
2436*** Building the MS-Windows port complains about unknown escape sequences.
2437
2438Errors and warnings can look like this:
2439
2440 w32.c:1959:27: error: \x used with no following hex digits
2441 w32.c:1959:27: warning: unknown escape sequence '\i'
2442
2443This happens when paths using backslashes are passed to the compiler or
2444linker (via -I and possibly other compiler flags); when these paths are
2445included in source code, the backslashes are interpreted as escape sequences.
2446See http://lists.gnu.org/archive/html/emacs-devel/2010-07/msg00995.html
2447
2448The fix is to use forward slashes in all paths passed to the compiler.
2449
2436** Linking 2450** Linking
2437 2451
2438*** Building Emacs with a system compiler fails to link because of an 2452*** Building Emacs with a system compiler fails to link because of an