Re: international/swedish.el

2005-07-02 Thread jhd
Is that file still useful? Should we move it to obsolete? I think it is ok to move to obsolete. I haven't seen anyone using the swedish version of ISO-646 in many years. Jan D. ___ Emacs-devel mailing list Emacs-devel@gnu.org http://list

Re: New dumping problem...

2005-07-02 Thread jhd
FWIW, Fedora core 2 works OK with this change. Does that mean we can delete the other PROBLEMS item? (The one about exec_shield, that is.) The exec-shield workaround kicks in if the difference between the end of the data section and the start of the heap is greater than MAX_HEAP_BSS_D

Re: Bad Protocol request 77

2005-07-01 Thread jhd
As you had a recipe for reproducing this, it is probably the œ character that is either miscoded in the string argument (the penultimate argument, an XChar2b *) or it is missing in the font used for bold. If you can print the values in the XChar2b* (the last argument to XDrawImageString

Re: Bad Protocol request 77

2005-07-01 Thread jhd
Can you print out the error string (error parameter to x_error_handler)? 77 is just XDrawImageString16 which is in the second backtrace as expected. But it can generate different errors. I think it is a BadMatch, which usually indicates bad input to XDrawImageString16. You should be

Re: New dumping problem...

2005-07-01 Thread jhd
I find the way to fix the problem in C source code level. I have already installed the fix. Please, try to run make without setarch. Is there no #define in some header-file you can look for? A configure test would be preferrable to hardcoding OS specific constants into Emacs. /

Re: Bad Protocol request 77

2005-06-29 Thread jhd
My Emacs is crashing in Gnus when displaying some articles. I haven't been able to get a reliable recipe yet, but basically I get a backtrace as shown in the appended session. The first backtrace is with x-synchronize turned off, the second is with x-synchronize turned on. Could give me some

Re: Needed for the release

2005-06-16 Thread jhd
Masatake YAMATO <[EMAIL PROTECTED]> writes: Sorry to be late. exec_shield is one such feature, and newer kernels use something like, uh, /proc/sys/vm/randomize_... (I don't remember the particular name right now and don't have a Fedora active). The latter loaded executables' memory segments

Re: [EMAIL PROTECTED]: x-clipboard-yank doesn't decode utf-8 string]

2005-06-10 Thread jhd
2004-01-21 Jan Djärv <[EMAIL PROTECTED]> * term/x-win.el: Call menu-bar-enable-clipboard and make Paste use clipboard first. Would you please edit that to itemize the specific functions that were changed? Done. Jan D.

Re: Needed for the release

2005-06-10 Thread jhd
11 jun 2005 kl. 01.34 skrev David Kastrup: Richard Stallman <[EMAIL PROTECTED]> writes: What I remember is that Red Hat enables a feature in Linux that (I believe) uses the address space differently. unexelf.c doesn't handle it right. I don't remember the name of the feature, but I'm su

Re: [EMAIL PROTECTED]: x-clipboard-yank doesn't decode utf-8 string]

2005-06-09 Thread jhd
But, the above is a change to x-clipboard-yank and it seems that this function was introduced on 21 Jan 2004 (strangely that fact is not in ChangeLog). At that time x-selection-value was already there. That means there will be some reason for x-clipboard-yank not using x-selection-value. Does

Re: Threads in emacs implementation

2005-06-08 Thread jhd
The greatest obstacle to this seems to be shallow binding - you'd have to unwind one thread's stack and rewind another's when switching threads. Maybe there's an easier way that I don't see... I don't see why this subject keeps coming up. We don't need threads in elisp. Just more asynchrono