comparison etc/PROBLEMS @ 76847:8317d35172e4

* PROBLEMS: Remove Tramp problem; it has been fixed.
author Michael Albinus <michael.albinus@gmx.de>
date Sat, 31 Mar 2007 18:39:26 +0000
parents 213bd9333baa
children 6586f81fbf80
comparison
equal deleted inserted replaced
76846:d55ab93ab5bf 76847:8317d35172e4
142 + } 142 + }
143 ret[end - begin + 1] = '\0'; 143 ret[end - begin + 1] = '\0';
144 } 144 }
145 return ret; 145 return ret;
146 146
147 ** Emacs cannot load remote files using Tramp during init.
148
149 Currently, Tramp-style names for remote files are not recognized if
150 they occur in site-start and init files, because Tramp filename
151 handlers are registered during after-init-hook.
152
153 If you want to access remote files inside an init file, first add the
154 following line:
155
156 (tramp-register-file-name-handlers)
157
158 * Crash bugs 147 * Crash bugs
159 148
160 ** Emacs crashes in x-popup-dialog. 149 ** Emacs crashes in x-popup-dialog.
161 150
162 This can happen if the dialog widget cannot find the font it wants to 151 This can happen if the dialog widget cannot find the font it wants to
225 http://bugzilla.gnome.org/show_bug.cgi?id=85715. 214 http://bugzilla.gnome.org/show_bug.cgi?id=85715.
226 215
227 ** Emacs compiled with Gtk+ crashes on startup on cygwin. 216 ** Emacs compiled with Gtk+ crashes on startup on cygwin.
228 217
229 A typical error message is 218 A typical error message is
230 ***MEMORY-ERROR***: emacs[5172]: GSlice: failed to allocate 504 bytes 219 ***MEMORY-ERROR***: emacs[5172]: GSlice: failed to allocate 504 bytes
231 (alignment: 512): Function not implemented 220 (alignment: 512): Function not implemented
232 221
233 Emacs supplies its own malloc, but glib (part of Gtk+) calls memalign and on 222 Emacs supplies its own malloc, but glib (part of Gtk+) calls memalign and on
234 cygwin that becomes the cygwin supplied memalign. As malloc is not the 223 cygwin that becomes the cygwin supplied memalign. As malloc is not the
235 cygwin malloc, the cygwin memalign always returns ENOSYS. A fix for this 224 cygwin malloc, the cygwin memalign always returns ENOSYS. A fix for this