diff options
author | Glenn Morris <rgm@gnu.org> | 2017-06-11 16:20:40 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-06-11 16:20:40 -0700 |
commit | f5ea4efbe7fd90d0d244375ffe7cc3250d322dbf (patch) | |
tree | b186339f598134f5983e41b920ae5b4dffe7c2dd /etc/PROBLEMS | |
parent | 87958db425812ec7cacf9ad3f8db22a91e3db4e4 (diff) | |
parent | eaa00584ceb30fd1170bf06f2514f3b6e4192329 (diff) | |
download | emacs-f5ea4efbe7fd90d0d244375ffe7cc3250d322dbf.tar.gz |
Merge from origin/emacs-25
eaa00584ceb Improve documentation of 'gnutls-verify-error'
908498cc01b ; etc/PROBLEMS: Describe GTK-related crashes on elementar...
741daec617e ; Describe the problem with ksh when resizing shell window
Diffstat (limited to 'etc/PROBLEMS')
-rw-r--r-- | etc/PROBLEMS | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 593eb6b745d..c650f1a7f9c 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -217,6 +217,28 @@ result in an endless loop. If you need Emacs to be able to recover from closing displays, compile it with the Lucid toolkit instead of GTK. +** Emacs compiled with GTK crashes at startup due to X protocol error. + +This is known to happen on elementary OS GNU/Linux systems. + +The error message is: + + X protocol error: BadMatch (invalid parameter attributes) on protocol request 140 + When compiled with GTK, Emacs cannot recover from X disconnects. + This is a GTK bug: https://bugzilla.gnome.org/show_bug.cgi?id=85715 + For details, see etc/PROBLEMS. + Fatal error 6: Aborted + +followed by a C backtrace. (Sometimes the offending protocol request +number is 139.) + +The relevant bug report is here: + + https://bugs.launchpad.net/elementaryos/+bug/1355274 + +A workaround is to set XLIB_SKIP_ARGB_VISUALS=1 in the environment +before starting Emacs, or run Emacs as root. + ** Emacs crashes when you try to view a file with complex characters. For example, the etc/HELLO file (as shown by C-h h). @@ -469,6 +491,17 @@ problem by adding this to your .cshrc file: stty -icrnl -onlcr -echo susp ^Z endif +*** In Shell buffers using ksh, resizing a window inserts random characters. + +The characters come from the PS2 prompt, but they are not followed by +a newline, which messes up the next command you type. This strange +effect is caused by Emacs 25 and later telling the shell that its +screen size changed. + +To work around the problem, customize the option +'window-adjust-process-window-size-function' to "Do not adjust process +window sizes" (Lisp value 'ignore'). + *** In Inferior Python mode, input is echoed and native completion doesn't work. <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=25753> |