diff options
| author | Miles Bader | 2005-06-30 00:31:46 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-06-30 00:31:46 +0000 |
| commit | eeb88b27e1dbd3f412aa684d44e4a784f6e536a2 (patch) | |
| tree | 23ea1eda87f588e060b6c00e9c7ffac6a89a7e42 /etc/PROBLEMS | |
| parent | 16e1457021e3f6e3b83fc9b5262fde38b7140c96 (diff) | |
| parent | 84861437f914ac45c1eea7b6477ffc4783bb3bdd (diff) | |
| download | emacs-eeb88b27e1dbd3f412aa684d44e4a784f6e536a2.tar.gz emacs-eeb88b27e1dbd3f412aa684d44e4a784f6e536a2.zip | |
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-67
Merge from emacs--cvs-trunk--0
Patches applied:
* emacs--cvs-trunk--0 (patch 447-458)
- Update from CVS
- Update from CVS: lisp/subr.el (add-to-ordered-list): Doc fix.
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 83-85)
- Merge from emacs--cvs-trunk--0
- Update from CVS
Diffstat (limited to 'etc/PROBLEMS')
| -rw-r--r-- | etc/PROBLEMS | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index f2c0cfaec50..0fc5bb299b6 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -965,6 +965,20 @@ xmodmap command to the xdm setup script for that display. | |||
| 965 | 965 | ||
| 966 | Use the shell command `xset bc' to make the old X Menu package work. | 966 | Use the shell command `xset bc' to make the old X Menu package work. |
| 967 | 967 | ||
| 968 | *** C-SPC fails to work on Fedora GNU/Linux. | ||
| 969 | |||
| 970 | Fedora Core 4 steals the C-SPC key by default for the `iiimx' program | ||
| 971 | which is the input method for some languages. It blocks Emacs users | ||
| 972 | from using the C-SPC key for `set-mark-command'. | ||
| 973 | |||
| 974 | One solutions is to remove the `<Ctrl>space' from the `Iiimx' file | ||
| 975 | which can be found in the `/usr/lib/X11/app-defaults' directory. | ||
| 976 | However, that requires root access. | ||
| 977 | |||
| 978 | Another is to specify `Emacs*useXIM: false' in your X resources. | ||
| 979 | |||
| 980 | Another is to build Emacs with the `--without-xim' configure option. | ||
| 981 | |||
| 968 | *** M-SPC seems to be ignored as input. | 982 | *** M-SPC seems to be ignored as input. |
| 969 | 983 | ||
| 970 | See if your X server is set up to use this as a command | 984 | See if your X server is set up to use this as a command |
| @@ -2367,7 +2381,9 @@ The fix is to install a newer version of ncurses, such as version 4.2. | |||
| 2367 | 2381 | ||
| 2368 | With certain recent Linux kernels (like the one of Redhat Fedora Core | 2382 | With certain recent Linux kernels (like the one of Redhat Fedora Core |
| 2369 | 1 and 2), the new "Exec-shield" functionality is enabled by default, which | 2383 | 1 and 2), the new "Exec-shield" functionality is enabled by default, which |
| 2370 | creates a different memory layout that breaks the emacs dumper. | 2384 | creates a different memory layout that breaks the emacs dumper. |
| 2385 | The work-around explained here is not enough on Fedora Core 4. Read the | ||
| 2386 | next item. | ||
| 2371 | 2387 | ||
| 2372 | Configure can overcome the problem of exec-shield if the architecture is | 2388 | Configure can overcome the problem of exec-shield if the architecture is |
| 2373 | x86 and the program setarch is present. On other architectures no | 2389 | x86 and the program setarch is present. On other architectures no |
| @@ -2394,6 +2410,20 @@ command when running temacs like this: | |||
| 2394 | 2410 | ||
| 2395 | setarch i386 ./temacs --batch --load loadup [dump|bootstrap] | 2411 | setarch i386 ./temacs --batch --load loadup [dump|bootstrap] |
| 2396 | 2412 | ||
| 2413 | *** Fedora Core 4 GNU/Linux: Segfault during dumping. | ||
| 2414 | |||
| 2415 | In addition to exec-shield explained above "Linux: Segfault during | ||
| 2416 | `make bootstrap' under certain recent versions of the Linux kernel" | ||
| 2417 | item, Linux kernel shipped with Fedora Core 4 randomizes the virtual | ||
| 2418 | address space of a process. As the result dumping is failed even if | ||
| 2419 | you turn off the exec-shield. In such case use -R option of setarch | ||
| 2420 | command: | ||
| 2421 | |||
| 2422 | setarch -R i386 ./temacs --batch --load loadup [dump|bootstrap] | ||
| 2423 | |||
| 2424 | or | ||
| 2425 | |||
| 2426 | setarch -R i386 make bootstrap | ||
| 2397 | 2427 | ||
| 2398 | *** Fatal signal in the command temacs -l loadup inc dump. | 2428 | *** Fatal signal in the command temacs -l loadup inc dump. |
| 2399 | 2429 | ||